Show / Hide Table of Contents

Class OkeDeployStageSummary

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

Inheritance
object
DeployStageSummary
OkeDeployStageSummary
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 OkeDeployStageSummary : DeployStageSummary

Properties

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

Namespace

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

Default namespace to be used for Kubernetes deployment when not specified in the manifest.

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

RollbackPolicy

Declaration
[JsonProperty(PropertyName = "rollbackPolicy")]
public DeployStageRollbackPolicy RollbackPolicy { get; set; }
Property Value
Type Description
DeployStageRollbackPolicy
In this article
Back to top