Class ComponentValueOverride
Component overrides for stack\u2011specific parameters applied during artifact template rendering.
Inherited Members
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