Show / Hide Table of Contents

Class DeployPipelineEnvironment

Environment used in the pipeline.

Inheritance
object
DeployPipelineEnvironment
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 DeployPipelineEnvironment

Properties

DeployEnvironmentId

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

The OCID of an Environment

Remarks

Required

DeployPipelineStages

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

Required

DisplayName

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

Display name of the environment. Avoid entering confidential information.

In this article
Back to top