Show / Hide Table of Contents

Class ApplyJobPlanResolution

Deprecated. Use the property executionPlanStrategy in jobOperationDetails instead.

Inheritance
object
ApplyJobPlanResolution
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 ApplyJobPlanResolution

Properties

IsAutoApproved

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

Specifies whether to use the configuration directly, without reference to a Plan job. True if using the configuration directly. Note that it is not necessary for a Plan job to have run successfully.

IsUseLatestJobId

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

Specifies whether to use the OCID of the most recently run plan job. True if using the latest job OCID. Must be a plan job that completed successfully.

PlanJobId

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

The OCID that specifies the most recently executed plan job.

In this article
Back to top