有没有办法以编程方式获取即将停用的 azure 服务列表?

问题描述 投票:0回答:1

我必须编写一个函数来在 jira 中记录已停用服务的票证。 是否有以下 api 或 rs feed? 停用 Azure 服务

任何检索列表的帮助将不胜感激。

我已经使用查询查看了资源图,但成功非常有限,因为我对资源图相对较新。

azure service azure-resource-graph rs retire
1个回答
0
投票

您可以在 Azure Resource Graph Explorer

中尝试以下操作吗
ServiceHealthResources
| where type =~ 'Microsoft.ResourceHealth/events'
| extend type = properties.EventSubType , eventType = properties.EventType, status = properties.Status, description = properties.Title, trackingId = properties.TrackingId, summary = properties.Summary, priority = properties.Priority, startTime = todatetime(tolong(properties.ImpactStartTime)), lastUpdate = todatetime(tolong(properties.LastUpdateTime))
| where type contains 'Retire'
© www.soinside.com 2019 - 2024. All rights reserved.