你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

ApplicationInsightsComponentResource.GetAnnotations 方法

定义

重载

GetAnnotations(String, CancellationToken)

获取给定 ID 的批注。

  • 请求路径/订阅/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Insights/components/{resourceName}/Annotations/{annotationId}
  • 操作IdAnnotations_Get
GetAnnotations(String, String, CancellationToken)

获取给定时间范围内的组件的批注列表

  • 请求路径/订阅/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Insights/components/{resourceName}/Annotations
  • 操作IdAnnotations_List

GetAnnotations(String, CancellationToken)

获取给定 ID 的批注。

  • 请求路径/订阅/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Insights/components/{resourceName}/Annotations/{annotationId}
  • 操作IdAnnotations_Get
public virtual Azure.Pageable<Azure.ResourceManager.ApplicationInsights.Models.Annotation> GetAnnotations (string annotationId, System.Threading.CancellationToken cancellationToken = default);
abstract member GetAnnotations : string * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.ApplicationInsights.Models.Annotation>
override this.GetAnnotations : string * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.ApplicationInsights.Models.Annotation>
Public Overridable Function GetAnnotations (annotationId As String, Optional cancellationToken As CancellationToken = Nothing) As Pageable(Of Annotation)

参数

annotationId
String

唯一批注 ID。 这在 Application Insights 组件中是唯一的。

cancellationToken
CancellationToken

要使用的取消标记。

返回

可能需要多个服务请求来循环访问的 的 Annotation 集合。

例外

annotationId 是一个空字符串,预期为非空。

annotationId 为 null。

适用于

GetAnnotations(String, String, CancellationToken)

获取给定时间范围内的组件的批注列表

  • 请求路径/订阅/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Insights/components/{resourceName}/Annotations
  • 操作IdAnnotations_List
public virtual Azure.Pageable<Azure.ResourceManager.ApplicationInsights.Models.Annotation> GetAnnotations (string start, string end, System.Threading.CancellationToken cancellationToken = default);
abstract member GetAnnotations : string * string * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.ApplicationInsights.Models.Annotation>
override this.GetAnnotations : string * string * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.ApplicationInsights.Models.Annotation>
Public Overridable Function GetAnnotations (start As String, end As String, Optional cancellationToken As CancellationToken = Nothing) As Pageable(Of Annotation)

参数

start
String

从 中查询批注的开始时间不能早于当前日期的 90 天。

end
String

查询批注的结束时间。

cancellationToken
CancellationToken

要使用的取消标记。

返回

可能需要多个服务请求来循环访问的 的 Annotation 集合。

例外

startend 为 null。

适用于