Show / Hide Table of Contents

Class TerraformVersionSummary

A Terraform version supported for use with stacks.

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

Properties

IsDefault

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

Indicates whether this Terraform version is used by default in {@link #createStack(CreateStackRequest) createStack}.

Name

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

A supported Terraform version. Example: 0.12.x

In this article
Back to top