Show / Hide Table of Contents

Class ComponentValueOverride

Component overrides for stack\u2011specific parameters applied during artifact template rendering.

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

Properties

ComponentName

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

Logical name of the grouping independently deployable kubernetes resource artifacts for the current deployment.

Remarks

Required

ValueOverrides

Declaration
[Required(ErrorMessage = "ValueOverrides is required.")]
[JsonProperty(PropertyName = "valueOverrides")]
public Dictionary<string, string> ValueOverrides { get; set; }
Property Value
Type Description
Dictionary<string, string>

Free-form value overrides for the component. Each tag is a simple key-value pair with no predefined name, type, or namespace. Used for overriding the values in value.yaml artifact of the component. Example: {"WORKER_THREADS": "8"}

Remarks

Required

In this article
Back to top