Show / Hide Table of Contents

Class CreateSingleDeployStageDeploymentDetails

Details of a new deployment to be created that will run a single stage of the pipeline.

Inheritance
object
CreateDeploymentDetails
CreateSingleDeployStageDeploymentDetails
Inherited Members
CreateDeploymentDetails.DeployPipelineId
CreateDeploymentDetails.DisplayName
CreateDeploymentDetails.FreeformTags
CreateDeploymentDetails.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 CreateSingleDeployStageDeploymentDetails : CreateDeploymentDetails

Properties

DeployArtifactOverrideArguments

Declaration
[JsonProperty(PropertyName = "deployArtifactOverrideArguments")]
public DeployArtifactOverrideArgumentCollection DeployArtifactOverrideArguments { get; set; }
Property Value
Type Description
DeployArtifactOverrideArgumentCollection

DeployStageId

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

Specifies the OCID of the stage to be redeployed.

Remarks

Required

DeployStageOverrideArguments

Declaration
[JsonProperty(PropertyName = "deployStageOverrideArguments")]
public DeployStageOverrideArgumentCollection DeployStageOverrideArguments { get; set; }
Property Value
Type Description
DeployStageOverrideArgumentCollection

DeploymentArguments

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