Share via


CommunicationsOperationsExtensions.List Method

Definition

Lists all communications (attachments not included) for a support ticket. <br/></br> 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. <br/><br/>Support ticket data is available for 12 months after ticket creation. If a ticket was created more than 12 months ago, a request for data might cause an error.

public static Microsoft.Rest.Azure.IPage<Microsoft.Azure.Management.Support.Models.CommunicationDetails> List (this Microsoft.Azure.Management.Support.ICommunicationsOperations operations, string supportTicketName, int? top = default, string filter = default);
static member List : Microsoft.Azure.Management.Support.ICommunicationsOperations * string * Nullable<int> * string -> Microsoft.Rest.Azure.IPage<Microsoft.Azure.Management.Support.Models.CommunicationDetails>
<Extension()>
Public Function List (operations As ICommunicationsOperations, supportTicketName As String, Optional top As Nullable(Of Integer) = Nothing, Optional filter As String = Nothing) As IPage(Of CommunicationDetails)

Parameters

operations
ICommunicationsOperations

The operations group for this extension method.

supportTicketName
String

Support ticket name.

top
Nullable<Int32>

The number of values to return in the collection. Default is 10 and max is 10.

filter
String

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.

Returns

Applies to