在Powershell中创建Azure API管理标签

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

是否有在Powershell中创建Azure API管理标记的方法?我已经使用Set-AzApiManagementProperty创建了命名值,但是AzAPIManagement在创建标记方面似乎并不等效。

以前有人这样做吗?

enter image description here

azure powershell tags azure-api-management
2个回答

0
投票

您可以使用New-AzResource创建标签,请尝试以下脚本,它会创建一个名为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

© www.soinside.com 2019 - 2024. All rights reserved.