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;
}