Show / Hide Table of Contents

Class CreateOkeCanaryDeployStageDetails

Specifies the Container Engine for Kubernetes (OKE) cluster Canary deployment stage.

Inheritance
object
CreateDeployStageDetails
CreateOkeCanaryDeployStageDetails
Inherited Members
CreateDeployStageDetails.Description
CreateDeployStageDetails.DisplayName
CreateDeployStageDetails.DeployPipelineId
CreateDeployStageDetails.DeployStagePredecessorCollection
CreateDeployStageDetails.FreeformTags
CreateDeployStageDetails.DefinedTags
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DevopsService.Models
Assembly: OCI.DotNetSDK.Devops.dll
Syntax
public class CreateOkeCanaryDeployStageDetails : CreateDeployStageDetails

Properties

CanaryStrategy

Declaration
[Required(ErrorMessage = "CanaryStrategy is required.")]
[JsonProperty(PropertyName = "canaryStrategy")]
public OkeCanaryStrategy CanaryStrategy { get; set; }
Property Value
Type Description
OkeCanaryStrategy
Remarks

Required

KubernetesManifestDeployArtifactIds

Declaration
[Required(ErrorMessage = "KubernetesManifestDeployArtifactIds is required.")]
[JsonProperty(PropertyName = "kubernetesManifestDeployArtifactIds")]
public List<string> KubernetesManifestDeployArtifactIds { get; set; }
Property Value
Type Description
List<string>

List of Kubernetes manifest artifact OCIDs.

Remarks

Required

OkeClusterDeployEnvironmentId

Declaration
[Required(ErrorMessage = "OkeClusterDeployEnvironmentId is required.")]
[JsonProperty(PropertyName = "okeClusterDeployEnvironmentId")]
public string OkeClusterDeployEnvironmentId { get; set; }
Property Value
Type Description
string

Kubernetes cluster environment OCID for deployment.

Remarks

Required

In this article
Back to top