deployments
Creates, updates, deletes, gets or lists a deployments
resource.
Overview
Name | deployments |
Type | Resource |
Id | google.dialogflow.deployments |
Fields
Name | Datatype | Description |
---|---|---|
name | string | The name of the deployment. Format: projects//locations//agents//environments//deployments/. |
endTime | string | End time of this deployment. |
flowVersion | string | The name of the flow version for this deployment. Format: projects//locations//agents//flows//versions/. |
result | object | Result of the deployment. |
startTime | string | Start time of this deployment. |
state | string | The current state of the deployment. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
projects_locations_agents_environments_deployments_get | SELECT | agentsId, deploymentsId, environmentsId, locationsId, projectsId | Retrieves the specified Deployment. |
projects_locations_agents_environments_deployments_list | SELECT | agentsId, environmentsId, locationsId, projectsId | Returns the list of all deployments in the specified Environment. |
SELECT
examples
Returns the list of all deployments in the specified Environment.
SELECT
name,
endTime,
flowVersion,
result,
startTime,
state
FROM google.dialogflow.deployments
WHERE agentsId = '{{ agentsId }}'
AND environmentsId = '{{ environmentsId }}'
AND locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';