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

GoogleCloudDialogflowCxV3RestoreAgentRequest

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

The request message for Agents.RestoreAgent.

interface GoogleCloudDialogflowCxV3RestoreAgentRequest {
agentContent?: Uint8Array;
agentUri?: string;
restoreOption?: "RESTORE_OPTION_UNSPECIFIED" | "KEEP" | "FALLBACK";
}

§Properties

§
agentContent?: Uint8Array
[src]

Uncompressed raw byte content for agent.

§
agentUri?: string
[src]

The Google Cloud Storage URI to restore agent from. The format of this URI must be gs:///. Dialogflow performs a read operation for the Cloud Storage object on the caller's behalf, so your request authentication must have read permissions for the object. For more information, see Dialogflow access control.

§

Setting for restoring from a git branch

§
restoreOption?: "RESTORE_OPTION_UNSPECIFIED" | "KEEP" | "FALLBACK"
[src]

Agent restore mode. If not specified, KEEP is assumed.