Show / Hide Table of Contents

Class HelmRepositoryDeployArtifactSource

Specifies Helm chart source details.

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

Properties

ChartUrl

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

The URL of an OCIR 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

HelmVerificationKeySource

Declaration
[JsonProperty(PropertyName = "helmVerificationKeySource")]
public VerificationKeySource HelmVerificationKeySource { get; set; }
Property Value
Type Description
VerificationKeySource
In this article
Back to top