我必须编写一个函数来在 jira 中记录已停用服务的票证。 是否有以下 api 或 rs feed? 停用 Azure 服务
任何检索列表的帮助将不胜感激。
我已经使用查询查看了资源图,但成功非常有限,因为我对资源图相对较新。
您可以在 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'