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

CloudRunConfig

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

CloudRunConfig contains the Cloud Run runtime configuration.

interface CloudRunConfig {
automaticTrafficControl?: boolean;
canaryRevisionTags?: string[];
priorRevisionTags?: string[];
stableRevisionTags?: string[];
}

§Properties

§
automaticTrafficControl?: boolean
[src]

Whether Cloud Deploy should update the traffic stanza in a Cloud Run Service on the user's behalf to facilitate traffic splitting. This is required to be true for CanaryDeployments, but optional for CustomCanaryDeployments.

§
canaryRevisionTags?: string[]
[src]

Optional. A list of tags that are added to the canary revision while the canary phase is in progress.

§
priorRevisionTags?: string[]
[src]

Optional. A list of tags that are added to the prior revision while the canary phase is in progress.

§
stableRevisionTags?: string[]
[src]

Optional. A list of tags that are added to the final stable revision when the stable phase is applied.