Class UpdateStackDetails
Update details for a stack.
Inheritance
UpdateStackDetails
Assembly: OCI.DotNetSDK.Resourcemanager.dll
Syntax
public class UpdateStackDetails
Properties
ConfigSource
Declaration
[JsonProperty(PropertyName = "configSource")]
public UpdateConfigSourceDetails ConfigSource { get; set; }
Property Value
Declaration
[JsonProperty(PropertyName = "customTerraformProvider")]
public CustomTerraformProvider CustomTerraformProvider { get; set; }
Property Value
Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Description
Declaration
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
Property Value
Type |
Description |
string |
Description of the stack.
|
DisplayName
Declaration
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
Type |
Description |
string |
The name of the stack.
|
Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type |
Description |
Dictionary<string, string> |
Free-form tags associated with this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace.
For more information, see Resource Tags.
Example: {"Department": "Finance"}
|
IsThirdPartyProviderExperienceEnabled
Declaration
[JsonProperty(PropertyName = "isThirdPartyProviderExperienceEnabled")]
public bool? IsThirdPartyProviderExperienceEnabled { get; set; }
Property Value
Type |
Description |
bool? |
When true , changes the stack's sourcing of third-party Terraform providers to
Terraform Registry and allows
{@link #customTerraformProvider(CustomTerraformProviderRequest) customTerraformProvider}.
Applies to older stacks.
Once set to true , cannot be reverted.
For more information about stack sourcing of third-party Terraform providers, see
Third-party Provider Configuration.
|
Declaration
[JsonProperty(PropertyName = "terraformVersion")]
public string TerraformVersion { get; set; }
Property Value
Type |
Description |
string |
The version of Terraform to use with the stack. Example: 0.12.x
|
Variables
Declaration
[JsonProperty(PropertyName = "variables")]
public Dictionary<string, string> Variables { get; set; }
Property Value
Type |
Description |
Dictionary<string, string> |
Terraform variables associated with this resource.
The maximum number of variables supported is 250.
The maximum size of each variable, including both name and value, is 8192 bytes.
Example: {"CompartmentId": "compartment-id-value"}
|