Show / Hide Table of Contents

Class CreateJobDetails

Creation details for a job for running inside the specified stack.

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

Properties

ApplyJobPlanResolution

Declaration
[JsonProperty(PropertyName = "applyJobPlanResolution")]
public ApplyJobPlanResolution ApplyJobPlanResolution { get; set; }
Property Value
Type Description
ApplyJobPlanResolution

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations": {"CostCenter": "42"}}

DisplayName

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

Description of the job.

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

Free-form tags associated with this resource. Each tag is a key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

JobOperationDetails

Declaration
[JsonProperty(PropertyName = "jobOperationDetails")]
public CreateJobOperationDetails JobOperationDetails { get; set; }
Property Value
Type Description
CreateJobOperationDetails

Operation

Declaration
[JsonProperty(PropertyName = "operation")]
[JsonConverter(typeof(StringEnumConverter))]
public Job.OperationEnum? Operation { get; set; }
Property Value
Type Description
Job.OperationEnum?

Terraform-specific operation to execute.

StackId

Declaration
[Required(ErrorMessage = "StackId is required.")]
[JsonProperty(PropertyName = "stackId")]
public string StackId { get; set; }
Property Value
Type Description
string

The OCID of the stack that is associated with the current job.

Remarks

Required

In this article
Back to top