Skip to main content

operations

Creates, updates, deletes, gets or lists an operations resource.

Overview

Nameoperations
TypeResource
Idgoogle.dialogflow.operations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestring
doneboolean
errorobject (id: GoogleRpcStatus)
metadataobject
responseobject

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
projects_locations_operations_getselectprojectsId, locationsId, operationsId
projects_operations_getselectprojectsId, operationsId
projects_locations_operations_listselectprojectsId, locationsIdpageSize, returnPartialSuccess, filter, pageToken
projects_operations_listselectprojectsIdpageSize, pageToken, returnPartialSuccess, filter
projects_operations_cancelexecprojectsId, operationsId
projects_locations_operations_cancelexecprojectsId, 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.

NameDatatypeDescription
locationsIdstring
operationsIdstring
projectsIdstring
filterstring
pageSizeinteger (int32)
pageTokenstring
returnPartialSuccessboolean

SELECT examples

Successful response

SELECT
name,
done,
error,
metadata,
response
FROM google.dialogflow.operations
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND operationsId = '{{ operationsId }}' -- required
;

Lifecycle Methods

Successful response

EXEC google.dialogflow.operations.projects_operations_cancel
@projectsId='{{ projectsId }}' --required,
@operationsId='{{ operationsId }}' --required
;