Show / Hide Table of Contents

Class DeliverArtifact

Artifact information that need to be pushed to the artifactory stores.

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

Properties

ArtifactId

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

Artifact identifier that contains the artifact definition.

Remarks

Required

ArtifactName

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

Name of the artifact specified in the build_spec.yaml file.

Remarks

Required

In this article
Back to top