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

GoogleCloudDialogflowCxV3ImportEntityTypesRequest

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

The request message for EntityTypes.ImportEntityTypes.

interface GoogleCloudDialogflowCxV3ImportEntityTypesRequest {
entityTypesUri?: string;
mergeOption?:
| "MERGE_OPTION_UNSPECIFIED"
| "REPLACE"
| "MERGE"
| "RENAME"
| "REPORT_CONFLICT"
| "KEEP";
targetEntityType?: string;
}

§Properties

§

Uncompressed byte content of entity types.

§
entityTypesUri?: string
[src]

The Google Cloud Storage URI to import entity types 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.

§
mergeOption?: "MERGE_OPTION_UNSPECIFIED" | "REPLACE" | "MERGE" | "RENAME" | "REPORT_CONFLICT" | "KEEP"
[src]

Required. Merge option for importing entity types.

§
targetEntityType?: string
[src]

Optional. The target entity type to import into. Format: projects//locations//agents//entity_types/. If set, there should be only one entity type included in entity_types, of which the type should match the type of the target entity type. All entities in the imported entity type will be added to the target entity type.