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 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.