Show / Hide Table of Contents

Class GenericDeployArtifactSource

Specifies the Artifact Registry source details.

Inheritance
object
DeployArtifactSource
GenericDeployArtifactSource
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 GenericDeployArtifactSource : DeployArtifactSource

Properties

DeployArtifactPath

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

Specifies the artifact path in the repository.

Remarks

Required

DeployArtifactVersion

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

Users can set this as a placeholder value that refers to a pipeline parameter, for example, ${appVersion}.

Remarks

Required

RepositoryId

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

The OCID of a repository.

Remarks

Required

In this article
Back to top