Show / Hide Table of Contents

Class CreateApplyJobOperationDetails

Job details that are specific to apply operations.

Inheritance
object
CreateJobOperationDetails
CreateApplyJobOperationDetails
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 CreateApplyJobOperationDetails : CreateJobOperationDetails

Properties

ExecutionPlanJobId

Declaration
[JsonProperty(PropertyName = "executionPlanJobId")]
public string ExecutionPlanJobId { get; set; }
Property Value
Type Description
string

The OCID of a plan job, for use when specifying FROM_PLAN_JOB_ID as the executionPlanStrategy.

ExecutionPlanStrategy

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

Specifies the source of the execution plan to apply. Use AUTO_APPROVED to run the job without an execution plan.

TerraformAdvancedOptions

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