Show / Hide Table of Contents

Class KubernetesImageArtifact

Kubernetes HelmChart Image artifact details.

Inheritance
object
Artifact
KubernetesImageArtifact
Inherited Members
Artifact.Id
Artifact.DisplayName
Artifact.Status
Artifact.StatusNotes
Artifact.LifecycleState
Artifact.TimeCreated
Artifact.CompartmentId
Artifact.PublisherId
Artifact.TimeUpdated
Artifact.FreeformTags
Artifact.DefinedTags
Artifact.SystemTags
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 KubernetesImageArtifact : Artifact

Properties

ContainerImageArtifactIds

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

List of container image artifact unique identifiers included in the helm chart.

HelmChart

Declaration
[Required(ErrorMessage = "HelmChart is required.")]
[JsonProperty(PropertyName = "helmChart")]
public HelmChartImageDetails HelmChart { get; set; }
Property Value
Type Description
HelmChartImageDetails
Remarks

Required

In this article
Back to top