Show / Hide Table of Contents

Class HelmCommandSpecArtifactSource

Specifies Helm command spec details

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

Properties

Base64EncodedContent

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

The Helm commands to be executed, base 64 encoded

Remarks

Required

HelmArtifactSourceType

Declaration
[Required(ErrorMessage = "HelmArtifactSourceType is required.")]
[JsonProperty(PropertyName = "helmArtifactSourceType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public HelmCommandSpecArtifactSource.HelmArtifactSourceTypeEnum? HelmArtifactSourceType { get; set; }
Property Value
Type Description
HelmCommandSpecArtifactSource.HelmArtifactSourceTypeEnum?

Specifies types of artifact sources.

Remarks

Required

In this article
Back to top