次の方法で共有


ApplicationInsightsComponentResource.GetAnnotationsAsync メソッド

定義

オーバーロード

GetAnnotationsAsync(String, String, CancellationToken)

特定の時間範囲のコンポーネントの注釈の一覧を取得します

  • 要求パス/サブスクリプション/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Insights/components/{resourceName}/Annotations
  • 操作IdAnnotations_List
GetAnnotationsAsync(String, CancellationToken)

指定された ID の注釈を取得します。

  • 要求パス/サブスクリプション/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Insights/components/{resourceName}/Annotations/{annotationId}
  • 操作IdAnnotations_Get

GetAnnotationsAsync(String, String, CancellationToken)

特定の時間範囲のコンポーネントの注釈の一覧を取得します

  • 要求パス/サブスクリプション/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Insights/components/{resourceName}/Annotations
  • 操作IdAnnotations_List
public virtual Azure.AsyncPageable<Azure.ResourceManager.ApplicationInsights.Models.Annotation> GetAnnotationsAsync (string start, string end, System.Threading.CancellationToken cancellationToken = default);
abstract member GetAnnotationsAsync : string * string * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.ApplicationInsights.Models.Annotation>
override this.GetAnnotationsAsync : string * string * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.ApplicationInsights.Models.Annotation>
Public Overridable Function GetAnnotationsAsync (start As String, end As String, Optional cancellationToken As CancellationToken = Nothing) As AsyncPageable(Of Annotation)

パラメーター

start
String

注釈のクエリの開始時刻は、現在の日付から 90 日を超えることはできません。

end
String

注釈のクエリを実行する終了時刻。

cancellationToken
CancellationToken

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

戻り値

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

例外

start または end が null です。

適用対象

GetAnnotationsAsync(String, CancellationToken)

指定された ID の注釈を取得します。

  • 要求パス/サブスクリプション/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Insights/components/{resourceName}/Annotations/{annotationId}
  • 操作IdAnnotations_Get
public virtual Azure.AsyncPageable<Azure.ResourceManager.ApplicationInsights.Models.Annotation> GetAnnotationsAsync (string annotationId, System.Threading.CancellationToken cancellationToken = default);
abstract member GetAnnotationsAsync : string * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.ApplicationInsights.Models.Annotation>
override this.GetAnnotationsAsync : string * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.ApplicationInsights.Models.Annotation>
Public Overridable Function GetAnnotationsAsync (annotationId As String, Optional cancellationToken As CancellationToken = Nothing) As AsyncPageable(Of Annotation)

パラメーター

annotationId
String

一意の注釈 ID。 これは Application Insights コンポーネント内で一意です。

cancellationToken
CancellationToken

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

戻り値

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

例外

annotationId は空の文字列であり、空でないと予想されていました。

annotationId が null です。

適用対象