Show / Hide Table of Contents

Class DetectStackDriftDetails

Details for detecting drift in a stack.

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

Properties

IsProviderUpgradeRequired

Declaration
[JsonProperty(PropertyName = "isProviderUpgradeRequired")]
public bool? IsProviderUpgradeRequired { get; set; }
Property Value
Type Description
bool?

Specifies whether or not to upgrade provider versions. Within the version constraints of your Terraform configuration, use the latest versions available from the source of Terraform providers. For more information about this option, see Dependency Lock File (terraform.io).

ResourceAddresses

Declaration
[JsonProperty(PropertyName = "resourceAddresses")]
public List<string> ResourceAddresses { get; set; }
Property Value
Type Description
List<string>

The list of resources in the specified stack to detect drift for. Each resource is identified by a resource address, which is a string derived from the resource type and name specified in the stack's Terraform configuration plus an optional index. For example, the resource address for the fourth Compute instance with the name "test_instance" is oci_core_instance.test_instance[3]. For more details and examples of resource addresses, see the Terraform documentation at Resource spec.

In this article
Back to top