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

GoogleCloudApihubV1ConfigVariable

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

ConfigVariable represents a additional configuration variable present in a PluginInstance Config or AuthConfig, based on a ConfigVariableTemplate.

interface GoogleCloudApihubV1ConfigVariable {
boolValue?: boolean;
intValue?: bigint;
readonly key?: string;
stringValue?: string;
}

§Properties

§
boolValue?: boolean
[src]

Optional. The config variable value in case of config variable of type boolean.

§

Optional. The config variable value in case of config variable of type enum.

§
intValue?: bigint
[src]

Optional. The config variable value in case of config variable of type integer.

§
readonly key?: string
[src]

Output only. Key will be the id to uniquely identify the config variable.

§

Optional. The config variable value in case of config variable of type multi integer.

§

Optional. The config variable value in case of config variable of type multi select.

§

Optional. The config variable value in case of config variable of type multi string.

§

Optional. The config variable value in case of config variable of type secret.

§
stringValue?: string
[src]

Optional. The config variable value in case of config variable of type string.