Show / Hide Table of Contents

Class CreateDestroyJobOperationDetails

Job details that are specific to destroy operations.

Inheritance
object
CreateJobOperationDetails
CreateDestroyJobOperationDetails
Inherited Members
CreateJobOperationDetails.IsProviderUpgradeRequired
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 CreateDestroyJobOperationDetails : CreateJobOperationDetails

Properties

ExecutionPlanStrategy

Declaration
[Required(ErrorMessage = "ExecutionPlanStrategy is required.")]
[JsonProperty(PropertyName = "executionPlanStrategy")]
[JsonConverter(typeof(StringEnumConverter))]
public DestroyJobOperationDetails.ExecutionPlanStrategyEnum? ExecutionPlanStrategy { get; set; }
Property Value
Type Description
DestroyJobOperationDetails.ExecutionPlanStrategyEnum?

Specifies the source of the execution plan to apply. Currently, only AUTO_APPROVED is allowed, which indicates that the job will be run without an execution plan.

Remarks

Required

TerraformAdvancedOptions

Declaration
[JsonProperty(PropertyName = "terraformAdvancedOptions")]
public TerraformAdvancedOptions TerraformAdvancedOptions { get; set; }
Property Value
Type Description
TerraformAdvancedOptions
In this article
Back to top