az support no-subscription communication
Note
This reference is part of the support extension for the Azure CLI (version 2.57.0 or higher). The extension will automatically install the first time you run an az support no-subscription communication command. Learn more about extensions.
Manage support ticket communications.
Commands
Name | Description | Type | Status |
---|---|---|---|
az support no-subscription communication create |
Adds a new customer communication to an Azure support ticket. |
Extension | GA |
az support no-subscription communication list |
List all communications (attachments not included) for a support ticket. |
Extension | GA |
az support no-subscription communication show |
Get communication details for a support ticket. |
Extension | GA |
az support no-subscription communication create
Adds a new customer communication to an Azure support ticket.
az support no-subscription communication create --communication-body
--communication-name
--communication-subject
--ticket-name
[--communication-sender]
[--no-wait {0, 1, f, false, n, no, t, true, y, yes}]
Examples
Adds a new customer communication to an Azure support ticket.
az support no-subscription communication create --ticket-name "TestTicketName "--communication-name "TestTicketCommunicationName" --communication-body "TicketCommunicationBody" --communication-subject "TicketCommunicationSubject"
Required Parameters
Body of the communication.
Communication name.
Subject of the communication.
Support ticket name.
Optional Parameters
Email address of the sender. This property is required if called by a service principal.
Do not wait for the long-running operation to finish.
Global Parameters
Increase logging verbosity to show all debug logs.
Show this help message and exit.
Only show errors, suppressing warnings.
Output format.
JMESPath query string. See http://jmespath.org/ for more information and examples.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Increase logging verbosity. Use --debug for full debug logs.
az support no-subscription communication list
List all communications (attachments not included) for a support ticket.
You can also filter support ticket communications by CreatedDate or CommunicationType using the $filter parameter. The only type of communication supported today is Web. Output will be a paged result with nextLink, using which you can retrieve the next set of Communication results.
Support ticket data is available for 18 months after ticket creation. If a ticket was created more than 18 months ago, a request for data might cause an error.
az support no-subscription communication list --ticket-name
[--filter]
[--max-items]
[--next-token]
Examples
List web communication created on or after a specific date for a no subscription support ticket.
az support no-subscription communication list --ticket-name "TestTicketName" --filter "CreatedDate ge 2024-01-01"
Required Parameters
Support ticket name.
Optional Parameters
The filter to apply on the operation. You can filter by communicationType and createdDate properties. CommunicationType supports Equals ('eq') operator and createdDate supports Greater Than ('gt') and Greater Than or Equals ('ge') operators. You may combine the CommunicationType and CreatedDate filters by Logical And ('and') operator.
Total number of items to return in the command's output. If the total number of items available is more than the value specified, a token is provided in the command's output. To resume pagination, provide the token value in --next-token
argument of a subsequent command.
Token to specify where to start paginating. This is the token value from a previously truncated response.
Global Parameters
Increase logging verbosity to show all debug logs.
Show this help message and exit.
Only show errors, suppressing warnings.
Output format.
JMESPath query string. See http://jmespath.org/ for more information and examples.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Increase logging verbosity. Use --debug for full debug logs.
az support no-subscription communication show
Get communication details for a support ticket.
az support no-subscription communication show --communication-name
--ticket-name
Examples
Get communication details for a no subscription support ticket.
az support no-subscription communication show --ticket-name "TestTicketName" --communication-name "TestTicketCommunicationName"
Required Parameters
Communication name.
Support ticket name.
Global Parameters
Increase logging verbosity to show all debug logs.
Show this help message and exit.
Only show errors, suppressing warnings.
Output format.
JMESPath query string. See http://jmespath.org/ for more information and examples.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Increase logging verbosity. Use --debug for full debug logs.