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

ExecutionConfig

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

Configuration of the environment to use when calling Skaffold.

interface ExecutionConfig {
artifactStorage?: string;
defaultPool?: DefaultPool;
executionTimeout?: number;
privatePool?: PrivatePool;
serviceAccount?: string;
usages?:
| "EXECUTION_ENVIRONMENT_USAGE_UNSPECIFIED"
| "RENDER"
| "DEPLOY"
| "VERIFY"
| "PREDEPLOY"
| "POSTDEPLOY"[];
workerPool?: string;
}

§Properties

§
artifactStorage?: string
[src]

Optional. Cloud Storage location in which to store execution outputs. This can either be a bucket ("gs://my-bucket") or a path within a bucket ("gs://my-bucket/my-dir"). If unspecified, a default bucket located in the same region will be used.

§
defaultPool?: DefaultPool
[src]

Optional. Use default Cloud Build pool.

§
executionTimeout?: number
[src]

Optional. Execution timeout for a Cloud Build Execution. This must be between 10m and 24h in seconds format. If unspecified, a default timeout of 1h is used.

§
privatePool?: PrivatePool
[src]

Optional. Use private Cloud Build pool.

§
serviceAccount?: string
[src]

Optional. Google service account to use for execution. If unspecified, the project execution service account (-compute@developer.gserviceaccount.com) is used.

§
usages?: "EXECUTION_ENVIRONMENT_USAGE_UNSPECIFIED" | "RENDER" | "DEPLOY" | "VERIFY" | "PREDEPLOY" | "POSTDEPLOY"[]
[src]

Required. Usages when this configuration should be applied.

§
workerPool?: string
[src]

Optional. The resource name of the WorkerPool, with the format projects/{project}/locations/{location}/workerPools/{worker_pool}. If this optional field is unspecified, the default Cloud Build pool will be used.