Show / Hide Table of Contents

Class ApplyJobOperationDetailsSummary

Job details that are specific to apply operations.

Inheritance
object
JobOperationDetailsSummary
ApplyJobOperationDetailsSummary
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 ApplyJobOperationDetailsSummary : JobOperationDetailsSummary

Properties

ExecutionPlanJobId

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

The OCID of the plan job that contains the execution plan used for this job, or null if no execution plan was used.

ExecutionPlanStrategy

Declaration
[Required(ErrorMessage = "ExecutionPlanStrategy is required.")]
[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.

Remarks

Required

In this article
Back to top