Show / Hide Table of Contents

Class OmkArtifactsDetail

Detail to deploy artifacts for OMK service.

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

Properties

ComponentValueOverrides

Declaration
[JsonProperty(PropertyName = "componentValueOverrides")]
public List<ComponentValueOverride> ComponentValueOverrides { get; set; }
Property Value
Type Description
List<ComponentValueOverride>

Component overrides for stack specific parameters applied during artifact template rendering.

InstanceId

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

Instance id of the existing OMK instance for artifact deployment.

Remarks

Required

ManifestObjectStoragePath

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

Object storage path for the deployment manifest.

Secrets

Declaration
[JsonProperty(PropertyName = "secrets")]
public List<SecretDetail> Secrets { get; set; }
Property Value
Type Description
List<SecretDetail>

List of kubernetes secrets to create or update in the namespace-name of target cluster-namespace. Each entry source secret values from OCI vault.

In this article
Back to top