UpdateStackDetails

class oci.resource_manager.models.UpdateStackDetails(**kwargs)

Bases: object

Update details for a stack.

Methods

__init__(**kwargs) Initializes a new UpdateStackDetails object with values from keyword arguments.

Attributes

config_source Gets the config_source of this UpdateStackDetails.
custom_terraform_provider Gets the custom_terraform_provider of this UpdateStackDetails.
defined_tags Gets the defined_tags of this UpdateStackDetails.
description Gets the description of this UpdateStackDetails.
display_name Gets the display_name of this UpdateStackDetails.
freeform_tags Gets the freeform_tags of this UpdateStackDetails.
is_third_party_provider_experience_enabled Gets the is_third_party_provider_experience_enabled of this UpdateStackDetails.
terraform_version Gets the terraform_version of this UpdateStackDetails.
variables Gets the variables of this UpdateStackDetails.
__init__(**kwargs)

Initializes a new UpdateStackDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • display_name (str) – The value to assign to the display_name property of this UpdateStackDetails.
  • description (str) – The value to assign to the description property of this UpdateStackDetails.
  • config_source (oci.resource_manager.models.UpdateConfigSourceDetails) – The value to assign to the config_source property of this UpdateStackDetails.
  • custom_terraform_provider (oci.resource_manager.models.CustomTerraformProvider) – The value to assign to the custom_terraform_provider property of this UpdateStackDetails.
  • is_third_party_provider_experience_enabled (bool) – The value to assign to the is_third_party_provider_experience_enabled property of this UpdateStackDetails.
  • variables (dict(str, str)) – The value to assign to the variables property of this UpdateStackDetails.
  • terraform_version (str) – The value to assign to the terraform_version property of this UpdateStackDetails.
  • freeform_tags (dict(str, str)) – The value to assign to the freeform_tags property of this UpdateStackDetails.
  • defined_tags (dict(str, dict(str, object))) – The value to assign to the defined_tags property of this UpdateStackDetails.
config_source

Gets the config_source of this UpdateStackDetails.

Returns:The config_source of this UpdateStackDetails.
Return type:oci.resource_manager.models.UpdateConfigSourceDetails
custom_terraform_provider

Gets the custom_terraform_provider of this UpdateStackDetails.

Returns:The custom_terraform_provider of this UpdateStackDetails.
Return type:oci.resource_manager.models.CustomTerraformProvider
defined_tags

Gets the defined_tags of this UpdateStackDetails. Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {“Operations”: {“CostCenter”: “42”}}

Returns:The defined_tags of this UpdateStackDetails.
Return type:dict(str, dict(str, object))
description

Gets the description of this UpdateStackDetails. Description of the stack.

Returns:The description of this UpdateStackDetails.
Return type:str
display_name

Gets the display_name of this UpdateStackDetails. The name of the stack.

Returns:The display_name of this UpdateStackDetails.
Return type:str
freeform_tags

Gets the freeform_tags of this UpdateStackDetails. 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”}

Returns:The freeform_tags of this UpdateStackDetails.
Return type:dict(str, str)
is_third_party_provider_experience_enabled

Gets the is_third_party_provider_experience_enabled of this UpdateStackDetails. When true, changes the stack’s sourcing of third-party Terraform providers to Terraform Registry and allows custom_terraform_provider(). 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.

Returns:The is_third_party_provider_experience_enabled of this UpdateStackDetails.
Return type:bool
terraform_version

Gets the terraform_version of this UpdateStackDetails. The version of Terraform to use with the stack. Example: 0.12.x

Returns:The terraform_version of this UpdateStackDetails.
Return type:str
variables

Gets the variables of this UpdateStackDetails. 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”}

Returns:The variables of this UpdateStackDetails.
Return type:dict(str, str)