Show / Hide Table of Contents

Class TerraformBasedExecutionDetails

Details for Terraform execution.

Inheritance
object
ExecutionDetails
TerraformBasedExecutionDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.FleetappsmanagementService.Models
Assembly: OCI.DotNetSDK.Fleetappsmanagement.dll
Syntax
public class TerraformBasedExecutionDetails : ExecutionDetails

Properties

CatalogId

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

Catalog Id having terraform package.

Remarks

Required

ConfigFile

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

Catalog Id having config file.

IsReadOutputVariableEnabled

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

Is read output variable enabled

TargetCompartmentId

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

OCID of the compartment to which the resource belongs to.

Remarks

Required

In this article
Back to top