gpt4 book ai didi

azure - 在 Powershell 中创建 Azure API 管理标签

转载 作者:行者123 更新时间:2023-12-03 02:44:56 30 4
gpt4 key购买 nike

是否有在 Powershell 中创建 Azure API 管理标签的方法?我用过Set-AzApiManagementProperty创建命名值,但 AzAPIManagement 中似乎没有用于创建标签的等效项。

以前有人这样做过吗?

enter image description here

最佳答案

您可以使用New-AzResource要创建标签,请尝试下面的脚本,它会创建一个名为 tag1 的标签。

$ResourceName = "tag1"
$PropertiesObject = @{
displayName = "tag1"
}
New-AzResource -PropertyObject $PropertiesObject -ResourceGroupName <resource-group-name> -ResourceType Microsoft.ApiManagement/service/tags -ResourceName "<API-Management-service-name>/$ResourceName" -ApiVersion 2018-01-01 -Force

enter image description here

enter image description here

关于azure - 在 Powershell 中创建 Azure API 管理标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59270041/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com