issues
Creates, updates, deletes, gets or lists a issues
resource.
Overview
Name | issues |
Type | Resource |
Id | google.contactcenterinsights.issues |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Immutable. The resource name of the issue. Format: projects/{project}/locations/{location}/issueModels/{issue_model}/issues/{issue} |
createTime | string | Output only. The time at which this issue was created. |
displayDescription | string | Representative description of the issue. |
displayName | string | The representative name for the issue. |
sampleUtterances | array | Output only. Resource names of the sample representative utterances that match to this issue. |
updateTime | string | Output only. The most recent time that this issue was updated. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | issueModelsId, issuesId, locationsId, projectsId | Gets an issue. |
list | SELECT | issueModelsId, locationsId, projectsId | Lists issues. |
delete | DELETE | issueModelsId, issuesId, locationsId, projectsId | Deletes an issue. |
patch | UPDATE | issueModelsId, issuesId, locationsId, projectsId | Updates an issue. |
SELECT
examples
Lists issues.
SELECT
name,
createTime,
displayDescription,
displayName,
sampleUtterances,
updateTime
FROM google.contactcenterinsights.issues
WHERE issueModelsId = '{{ issueModelsId }}'
AND locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';
UPDATE
example
Updates a issues
resource.
/*+ update */
UPDATE google.contactcenterinsights.issues
SET
name = '{{ name }}',
displayDescription = '{{ displayDescription }}',
displayName = '{{ displayName }}'
WHERE
issueModelsId = '{{ issueModelsId }}'
AND issuesId = '{{ issuesId }}'
AND locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';
DELETE
example
Deletes the specified issues
resource.
/*+ delete */
DELETE FROM google.contactcenterinsights.issues
WHERE issueModelsId = '{{ issueModelsId }}'
AND issuesId = '{{ issuesId }}'
AND locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';