operations
Creates, updates, deletes, gets or lists an operations resource.
Overview
| Name | operations |
| Type | Resource |
| Id | google.dialogflow.operations |
Fields
The following fields are returned by SELECT queries:
- projects_locations_operations_get
- projects_operations_get
- projects_locations_operations_list
- projects_operations_list
| Name | Datatype | Description |
|---|---|---|
name | string | |
done | boolean | |
error | object | (id: GoogleRpcStatus) |
metadata | object | |
response | object |
| Name | Datatype | Description |
|---|---|---|
name | string | |
done | boolean | |
error | object | (id: GoogleRpcStatus) |
metadata | object | |
response | object |
| Name | Datatype | Description |
|---|---|---|
name | string | |
done | boolean | |
error | object | (id: GoogleRpcStatus) |
metadata | object | |
response | object |
| Name | Datatype | Description |
|---|---|---|
name | string | |
done | boolean | |
error | object | (id: GoogleRpcStatus) |
metadata | object | |
response | object |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
projects_locations_operations_get | select | projectsId, locationsId, operationsId | ||
projects_operations_get | select | projectsId, operationsId | ||
projects_locations_operations_list | select | projectsId, locationsId | pageSize, returnPartialSuccess, filter, pageToken | |
projects_operations_list | select | projectsId | pageSize, pageToken, returnPartialSuccess, filter | |
projects_operations_cancel | exec | projectsId, operationsId | ||
projects_locations_operations_cancel | exec | projectsId, locationsId, operationsId |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
locationsId | string | |
operationsId | string | |
projectsId | string | |
filter | string | |
pageSize | integer (int32) | |
pageToken | string | |
returnPartialSuccess | boolean |
SELECT examples
- projects_locations_operations_get
- projects_operations_get
- projects_locations_operations_list
- projects_operations_list
Successful response
SELECT
name,
done,
error,
metadata,
response
FROM google.dialogflow.operations
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND operationsId = '{{ operationsId }}' -- required
;
Successful response
SELECT
name,
done,
error,
metadata,
response
FROM google.dialogflow.operations
WHERE projectsId = '{{ projectsId }}' -- required
AND operationsId = '{{ operationsId }}' -- required
;
Successful response
SELECT
name,
done,
error,
metadata,
response
FROM google.dialogflow.operations
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND pageSize = '{{ pageSize }}'
AND returnPartialSuccess = '{{ returnPartialSuccess }}'
AND filter = '{{ filter }}'
AND pageToken = '{{ pageToken }}'
;
Successful response
SELECT
name,
done,
error,
metadata,
response
FROM google.dialogflow.operations
WHERE projectsId = '{{ projectsId }}' -- required
AND pageSize = '{{ pageSize }}'
AND pageToken = '{{ pageToken }}'
AND returnPartialSuccess = '{{ returnPartialSuccess }}'
AND filter = '{{ filter }}'
;
Lifecycle Methods
- projects_operations_cancel
- projects_locations_operations_cancel
Successful response
EXEC google.dialogflow.operations.projects_operations_cancel
@projectsId='{{ projectsId }}' --required,
@operationsId='{{ operationsId }}' --required
;
Successful response
EXEC google.dialogflow.operations.projects_locations_operations_cancel
@projectsId='{{ projectsId }}' --required,
@locationsId='{{ locationsId }}' --required,
@operationsId='{{ operationsId }}' --required
;