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