Show / Hide Table of Contents

Class DeployStageOverrideArgument

Values for stage override of the pipeline parameters to be supplied at the time of deployment.

Inheritance
object
DeployStageOverrideArgument
Inherited Members
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 DeployStageOverrideArgument

Properties

DeployStageId

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

The OCID of the stage.

Remarks

Required

Name

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

Name of the parameter (case-sensitive).

Remarks

Required

Value

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

Value of the parameter.

Remarks

Required

In this article
Back to top