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

GoogleCloudDialogflowCxV3Deployment

import type { GoogleCloudDialogflowCxV3Deployment } from "https://googleapis.deno.dev/v1/dialogflow:v3.ts";

Represents a deployment in an environment. A deployment happens when a flow version configured to be active in the environment. You can configure running pre-deployment steps, e.g. running validation test cases, experiment auto-rollout, etc.

interface GoogleCloudDialogflowCxV3Deployment {
endTime?: Date;
flowVersion?: string;
name?: string;
startTime?: Date;
state?:
| "STATE_UNSPECIFIED"
| "RUNNING"
| "SUCCEEDED"
| "FAILED";
}

§Properties

§
endTime?: Date
[src]

End time of this deployment.

§
flowVersion?: string
[src]

The name of the flow version for this deployment. Format: projects//locations//agents//flows//versions/.

§
name?: string
[src]

The name of the deployment. Format: projects//locations//agents//environments//deployments/.

§

Result of the deployment.

§
startTime?: Date
[src]

Start time of this deployment.

§
state?: "STATE_UNSPECIFIED" | "RUNNING" | "SUCCEEDED" | "FAILED"
[src]

The current state of the deployment.