Show / Hide Table of Contents

Class OkeCanaryDeployStageSummary

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

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

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