Show / Hide Table of Contents

Class CreateSingleDeployStageRedeploymentDetails

Details of a new deployment to be created that will rerun a single stage from a previously executed deployment.

Inheritance
object
CreateDeploymentDetails
CreateSingleDeployStageRedeploymentDetails
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 CreateSingleDeployStageRedeploymentDetails : CreateDeploymentDetails

Properties

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

PreviousDeploymentId

Declaration
[JsonProperty(PropertyName = "previousDeploymentId")]
public string PreviousDeploymentId { get; set; }
Property Value
Type Description
string

Specifies the OCID of the previous deployment to be redeployed.

In this article
Back to top