SupportTicketCommunicationCollection.GetAllAsync メソッド

定義

サポート チケットのすべての通信 (添付ファイルは含まれていません) を一覧表示します。 <br/></br> $filter パラメーターを使用して 、CreatedDate または CommunicationType によるサポート チケット通信をフィルター処理することもできます。 現在サポートされている通信の種類は Web のみです。 出力は nextLink を使用してページングされた結果になり、これを使用して次の通信結果セットを取得できます。 <br/br/><>Support チケット データは、チケット作成後 18 か月間利用できます。 18 か月以上前にチケットが作成された場合、データの要求によってエラーが発生する可能性があります。

  • 要求パス/サブスクリプション/{subscriptionId}/providers/Microsoft.Support/supportTickets/{supportTicketName}/communications
  • 操作IdCommunications_List
public virtual Azure.AsyncPageable<Azure.ResourceManager.Support.SupportTicketCommunicationResource> GetAllAsync (int? top = default, string filter = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetAllAsync : Nullable<int> * string * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.Support.SupportTicketCommunicationResource>
override this.GetAllAsync : Nullable<int> * string * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.Support.SupportTicketCommunicationResource>
Public Overridable Function GetAllAsync (Optional top As Nullable(Of Integer) = Nothing, Optional filter As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As AsyncPageable(Of SupportTicketCommunicationResource)

パラメーター

top
Nullable<Int32>

コレクションで返される値の数。 既定値は 10、最大は 10 です。

filter
String

操作に適用するフィルター。 communicationType プロパティと createdDate プロパティでフィルター処理できます。 CommunicationType は Equals ('eq') 演算子をサポートし、createdDate は Greater Than ('gt') 演算子と Greater Than or Equals ('ge') 演算子をサポートします。 CommunicationType フィルターと CreatedDate フィルターを論理 And ('and') 演算子で組み合わせることができます。

cancellationToken
CancellationToken

使用する取り消しトークン。

戻り値

反復処理するために複数の SupportTicketCommunicationResource サービス要求を受け取る可能性がある の非同期コレクション。

適用対象