Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

TerraformVersion

import type { TerraformVersion } from "https://googleapis.deno.dev/v1/config:v1.ts";

A TerraformVersion represents the support state the corresponding Terraform version.

interface TerraformVersion {
readonly deprecateTime?: Date;
name?: string;
readonly obsoleteTime?: Date;
readonly state?:
| "STATE_UNSPECIFIED"
| "ACTIVE"
| "DEPRECATED"
| "OBSOLETE";
readonly supportTime?: Date;
}

§Properties

§
readonly deprecateTime?: Date
[src]

Output only. When the version is deprecated.

§
name?: string
[src]

Identifier. The version name is in the format: 'projects/{project_id}/locations/{location}/terraformVersions/{terraform_version}'.

§
readonly obsoleteTime?: Date
[src]

Output only. When the version is obsolete.

§
readonly state?: "STATE_UNSPECIFIED" | "ACTIVE" | "DEPRECATED" | "OBSOLETE"
[src]

Output only. The state of the version, ACTIVE, DEPRECATED or OBSOLETE.

§
readonly supportTime?: Date
[src]

Output only. When the version is supported.