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

UnitVariable

import type { UnitVariable } from "https://googleapis.deno.dev/v1/saasservicemgmt:v1beta1.ts";

UnitVariable describes a parameter for a Unit.

interface UnitVariable {
type?:
| "TYPE_UNSPECIFIED"
| "STRING"
| "INT"
| "BOOL";
value?: string;
variable?: string;
}

§Properties

§
type?: "TYPE_UNSPECIFIED" | "STRING" | "INT" | "BOOL"
[src]

Optional. Immutable. Name of a supported variable type. Supported types are string, int, bool.

§
value?: string
[src]

Optional. String encoded value for the variable.

§
variable?: string
[src]

Required. Immutable. Name of the variable from actuation configs.