你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
ApplicationInsightsComponentResource.GetAnnotationsAsync 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
GetAnnotationsAsync(String, String, CancellationToken) |
获取给定时间范围内的组件的批注列表
|
GetAnnotationsAsync(String, CancellationToken) |
获取给定 ID 的批注。
|
GetAnnotationsAsync(String, String, CancellationToken)
获取给定时间范围内的组件的批注列表
- 请求路径/subscriptions/{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 的批注。
- 请求路径/subscriptions/{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。