Imports the specified flow to the specified agent from a binary file.
This method is a long-running operation. The returned Operation
type has the following method-specific fields:
metadata
: An empty Struct messageresponse
:ImportFlowResponse
Note: You should always train a flow prior to sending it queries. See the training documentation.
HTTP request
POST https://{endpoint}/v3beta1/{parent=projects/*/locations/*/agents/*}/flows:import
Where {endpoint}
is one of the supported service endpoints.
The URLs use gRPC Transcoding syntax.
Path parameters
Parameters | |
---|---|
parent |
Required. The agent to import the flow into. Format: Authorization requires the following IAM permission on the specified resource
|
Request body
The request body contains data with the following structure:
JSON representation |
---|
{ "importOption": enum ( |
Fields | |
---|---|
importOption |
Flow import mode. If not specified, |
Union field flow . Required. The flow to import. flow can be only one of the following: |
|
flowUri |
The Google Cloud Storage URI to import flow from. The format of this URI must be 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. |
flowContent |
Uncompressed raw byte content for flow. A base64-encoded string. |
Response body
If successful, the response body contains an instance of Operation
.
Authorization scopes
Requires one of the following OAuth scopes:
https://www.googleapis.com/auth/cloud-platform
https://www.googleapis.com/auth/dialogflow
For more information, see the Authentication Overview.
ImportOption
Import option.
Enums | |
---|---|
IMPORT_OPTION_UNSPECIFIED |
Unspecified. Treated as KEEP . |
KEEP |
Always respect settings in exported flow content. It may cause a import failure if some settings (e.g. custom NLU) are not supported in the agent to import into. |
FALLBACK |
Fallback to default settings if some settings are not supported in the agent to import into. E.g. Standard NLU will be used if custom NLU is not available. |