Show / Hide Table of Contents

Class OkeCanaryDeployStage

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

Inheritance
object
DeployStage
OkeCanaryDeployStage
Inherited Members
DeployStage.Id
DeployStage.Description
DeployStage.DisplayName
DeployStage.ProjectId
DeployStage.DeployPipelineId
DeployStage.CompartmentId
DeployStage.TimeCreated
DeployStage.TimeUpdated
DeployStage.LifecycleState
DeployStage.LifecycleDetails
DeployStage.DeployStagePredecessorCollection
DeployStage.FreeformTags
DeployStage.DefinedTags
DeployStage.SystemTags
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 OkeCanaryDeployStage : DeployStage

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