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

DeployParameters

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

DeployParameters contains deploy parameters information.

interface DeployParameters {
matchTargetLabels?: {
[key: string]: string;
}
;
values?: {
[key: string]: string;
}
;
}

§Properties

§
matchTargetLabels?: {
[key: string]: string;
}
[src]

Optional. Deploy parameters are applied to targets with match labels. If unspecified, deploy parameters are applied to all targets (including child targets of a multi-target).

§
values?: {
[key: string]: string;
}
[src]

Required. Values are deploy parameters in key-value pairs.