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

GoogleCloudRunV2TaskTemplate

import type { GoogleCloudRunV2TaskTemplate } from "https://googleapis.deno.dev/v1/run:v2.ts";

TaskTemplate describes the data a task should have when created from a template.

interface GoogleCloudRunV2TaskTemplate {
encryptionKey?: string;
executionEnvironment?: "EXECUTION_ENVIRONMENT_UNSPECIFIED" | "EXECUTION_ENVIRONMENT_GEN1" | "EXECUTION_ENVIRONMENT_GEN2";
maxRetries?: number;
serviceAccount?: string;
timeout?: number;
}

§Properties

§

Holds the single container that defines the unit of execution for this task.

§
encryptionKey?: string
[src]

A reference to a customer managed encryption key (CMEK) to use to encrypt this container image. For more information, go to https://cloud.google.com/run/docs/securing/using-cmek

§
executionEnvironment?: "EXECUTION_ENVIRONMENT_UNSPECIFIED" | "EXECUTION_ENVIRONMENT_GEN1" | "EXECUTION_ENVIRONMENT_GEN2"
[src]

Optional. The execution environment being used to host this Task.

§
maxRetries?: number
[src]

Number of retries allowed per Task, before marking this Task failed. Defaults to 3.

§
serviceAccount?: string
[src]

Optional. Email address of the IAM service account associated with the Task of a Job. The service account represents the identity of the running task, and determines what permissions the task has. If not provided, the task will use the project's default service account.

§
timeout?: number
[src]

Optional. Max allowed time duration the Task may be active before the system will actively try to mark it failed and kill associated containers. This applies per attempt of a task, meaning each retry can run for the full timeout. Defaults to 600 seconds.

§

Optional. A list of Volumes to make available to containers.

§

Optional. VPC Access configuration to use for this Task. For more information, visit https://cloud.google.com/run/docs/configuring/connecting-vpc.