chat_transcripts_no_subscription
Creates, updates, deletes, gets or lists a chat_transcripts_no_subscription resource.
Overview
| Name | chat_transcripts_no_subscription |
| Type | Resource |
| Id | azure.support.chat_transcripts_no_subscription |
Fields
The following fields are returned by SELECT queries:
- get
- list
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}". # pylint: disable=line-too-long |
name | string | The name of the resource. |
messages | array | List of chat transcript communication resources. |
startTime | string (date-time) | Time in UTC (ISO 8601 format) when the chat began. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}". # pylint: disable=line-too-long |
name | string | The name of the resource. |
messages | array | List of chat transcript communication resources. |
startTime | string (date-time) | Time in UTC (ISO 8601 format) when the chat began. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | support_ticket_name, chat_transcript_name | Returns chatTranscript details for a no subscription support ticket. | |
list | select | support_ticket_name | Lists all chat transcripts for a support ticket. |
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 |
|---|---|---|
chat_transcript_name | string | ChatTranscript name. Required. |
support_ticket_name | string | Support ticket name. Required. |
SELECT examples
- get
- list
Returns chatTranscript details for a no subscription support ticket.
SELECT
id,
name,
messages,
startTime,
systemData,
type
FROM azure.support.chat_transcripts_no_subscription
WHERE support_ticket_name = '{{ support_ticket_name }}' -- required
AND chat_transcript_name = '{{ chat_transcript_name }}' -- required
;
Lists all chat transcripts for a support ticket.
SELECT
id,
name,
messages,
startTime,
systemData,
type
FROM azure.support.chat_transcripts_no_subscription
WHERE support_ticket_name = '{{ support_ticket_name }}' -- required
;