Show / Hide Table of Contents

Class DeployPipelineArtifact

Artifact used in the pipeline.

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

Properties

DeployArtifactId

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

The OCID of an artifact

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 artifact. Avoid entering confidential information.

In this article
Back to top