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

GoogleCloudIntegrationsV1alphaParameterMap

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

A generic multi-map that holds key value pairs. They keys and values can be of any type, unless specified.

interface GoogleCloudIntegrationsV1alphaParameterMap {
keyType?:
| "INTEGRATION_PARAMETER_DATA_TYPE_UNSPECIFIED"
| "STRING_VALUE"
| "INT_VALUE"
| "DOUBLE_VALUE"
| "BOOLEAN_VALUE"
| "STRING_ARRAY"
| "INT_ARRAY"
| "DOUBLE_ARRAY"
| "BOOLEAN_ARRAY"
| "JSON_VALUE"
| "PROTO_VALUE"
| "PROTO_ARRAY";
valueType?:
| "INTEGRATION_PARAMETER_DATA_TYPE_UNSPECIFIED"
| "STRING_VALUE"
| "INT_VALUE"
| "DOUBLE_VALUE"
| "BOOLEAN_VALUE"
| "STRING_ARRAY"
| "INT_ARRAY"
| "DOUBLE_ARRAY"
| "BOOLEAN_ARRAY"
| "JSON_VALUE"
| "PROTO_VALUE"
| "PROTO_ARRAY";
}

§Properties

§

A list of parameter map entries.

§
keyType?: "INTEGRATION_PARAMETER_DATA_TYPE_UNSPECIFIED" | "STRING_VALUE" | "INT_VALUE" | "DOUBLE_VALUE" | "BOOLEAN_VALUE" | "STRING_ARRAY" | "INT_ARRAY" | "DOUBLE_ARRAY" | "BOOLEAN_ARRAY" | "JSON_VALUE" | "PROTO_VALUE" | "PROTO_ARRAY"
[src]

Option to specify key type for all entries of the map. If provided then field types for all entries must conform to this.

§
valueType?: "INTEGRATION_PARAMETER_DATA_TYPE_UNSPECIFIED" | "STRING_VALUE" | "INT_VALUE" | "DOUBLE_VALUE" | "BOOLEAN_VALUE" | "STRING_ARRAY" | "INT_ARRAY" | "DOUBLE_ARRAY" | "BOOLEAN_ARRAY" | "JSON_VALUE" | "PROTO_VALUE" | "PROTO_ARRAY"
[src]

Option to specify value type for all entries of the map. If provided then field types for all entries must conform to this.