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

Deployment

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

A deployment represents an immutable, queryable version of the app. It is used to deploy an app version with a specific channel profile.

interface Deployment {
appVersion?: string;
channelProfile?: ChannelProfile;
readonly createTime?: Date;
displayName?: string;
readonly etag?: string;
name?: string;
readonly updateTime?: Date;
}

§Properties

§
appVersion?: string
[src]

Required. The resource name of the app version to deploy. Format: projects/{project}/locations/{location}/apps/{app}/versions/{version}

§
channelProfile?: ChannelProfile
[src]

Required. The channel profile used in the deployment.

§
readonly createTime?: Date
[src]

Output only. Timestamp when this deployment was created.

§
displayName?: string
[src]

Required. Display name of the deployment.

§
readonly etag?: string
[src]

Output only. Etag used to ensure the object hasn't changed during a read-modify-write operation. If the etag is empty, the update will overwrite any concurrent changes.

§
name?: string
[src]

Identifier. The resource name of the deployment. Format: projects/{project}/locations/{location}/apps/{app}/deployments/{deployment}

§
readonly updateTime?: Date
[src]

Output only. Timestamp when this deployment was last updated.