Show / Hide Table of Contents

Class CreateHelmChartImageDetails

Helmchart image details required to create an helmchart artifact.

Inheritance
object
CreateHelmChartImageDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.MarketplacepublisherService.Models
Assembly: OCI.DotNetSDK.Marketplacepublisher.dll
Syntax
public class CreateHelmChartImageDetails

Properties

SourceRegistryId

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

The source registry OCID of the container image.

Remarks

Required

SourceRegistryUrl

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

The source registry url of the helmchart image.

Remarks

Required

SupportedKubernetesVersions

Declaration
[JsonProperty(PropertyName = "supportedKubernetesVersions")]
public List<string> SupportedKubernetesVersions { get; set; }
Property Value
Type Description
List<string>

The Supported Versions of Kubernetes

In this article
Back to top