- HTTP request
- Path parameters
- Request body
- Response body
- Authorization scopes
- GitSource
- RestoreOption
- Try it!
Restores the specified agent from a binary file.
Replaces the current agent with a new one. Note that all existing resources in agent (e.g. intents, entity types, flows) will be removed.
This method is a long-running operation. The returned Operation type has the following method-specific fields:
- metadata: An empty Struct message
- response: An Empty message
Note: You should always train a flow prior to sending it queries. See the training documentation.
HTTP request
POST https://{endpoint}/v3beta1/{name=projects/*/locations/*/agents/*}:restore
Where {endpoint} is one of the supported service endpoints.
The URLs use gRPC Transcoding syntax.
Path parameters
| Parameters | |
|---|---|
| name | 
 Required. The name of the agent to restore 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 | 
|---|
| { "restoreOption": enum ( | 
| Fields | |
|---|---|
| restoreOption | 
 Agent restore mode. If not specified,  | 
| Union field agent. Required. The agent to restore.agentcan be only one of the following: | |
| agentUri | 
 The Google Cloud Storage URI to restore agent 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. | 
| agentContent | 
 Uncompressed raw byte content for agent. A base64-encoded string. | 
| gitSource | 
 Setting for restoring from a git branch | 
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.
GitSource
Settings for restoring from a git branch
| JSON representation | 
|---|
| { "trackingBranch": string } | 
| Fields | |
|---|---|
| trackingBranch | 
 tracking branch for the git pull | 
RestoreOption
Restore option.
| Enums | |
|---|---|
| RESTORE_OPTION_UNSPECIFIED | Unspecified. Treated as KEEP. | 
| KEEP | Always respect the settings from the exported agent file. It may cause a restoration failure if some settings (e.g. model type) are not supported in the target agent. | 
| FALLBACK | Fallback to default settings if some settings are not supported in the target agent. |