Show / Hide Table of Contents

Class GenericDeliveredArtifact

Details of the generic artifacts delivered through the Deliver Artifacts stage.

Inheritance
object
DeliveredArtifact
GenericDeliveredArtifact
Inherited Members
DeliveredArtifact.DeployArtifactId
DeliveredArtifact.OutputArtifactName
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 GenericDeliveredArtifact : DeliveredArtifact

Properties

ArtifactRepositoryId

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

The OCID of the artifact registry repository used by the DeliverArtifactStage

DeliveredArtifactId

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

The OCID of the artifact pushed by the Deliver Artifacts stage.

Remarks

Required

Path

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

Path of the repository where artifact was pushed

Version

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

Version of the artifact pushed

In this article
Back to top