Show / Hide Table of Contents

Class HelmChartImageDetails

Helmchart image details.

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

Properties

PublicationError

Declaration
[JsonProperty(PropertyName = "publicationError")]
public string PublicationError { get; set; }
Property Value
Type Description
string

image validation failure errors

PublicationStatus

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

image publication status

Remarks

Required

SourceRegistryId

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

The source registry OCID of the helmchart image.

SourceRegistryUrl

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

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

ValidationError

Declaration
[JsonProperty(PropertyName = "validationError")]
public string ValidationError { get; set; }
Property Value
Type Description
string

image validation failure errors

ValidationStatus

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

image validation status.

Remarks

Required

In this article
Back to top