Azure 资源组使用 SDK 设置标签?
Azure Resource Group Set Tags with SDK?
我使用类似于 http://blogs.infinitesquare.com/b/tranise/archives/-azure-resource-group-une-nouvelle-facon-dorganiser-ses-environnements-dans-azure#.Vr1RrfIrLgk 的代码在 Azure 中使用 C# 创建资源组。我现在正尝试通过在资源上放置标签来扩展它。
添加 resourceGroupGetResult.ResourceGroup.Tags.Add("a","1")
有效,但随后的 CreateOrUpdateAsync 调用失败并显示
"InvalidRequestContent: The request content was invalid and could not be deserialized: 'Could not find member 'provisioningState' on object of type 'ResourceGroupDefinition'. Path 'provisioningState', line 9, position 23.'."
向资源组添加标签的正确方法是什么?当然我会想在这之后将相同的标签添加到组内的资源中。
谢谢。
我假设你使用的是 nuget package id="Microsoft.Azure.Management.Resources" version="3.4.0-preview ".
使用上面的 ARM .NET SDK 向 Azure 资源组添加标签的示例代码如下:
var tag = new Dictionary<string, string> {{tagName, tagValue}};
var rg = new ResourceGroup() { Name = rgName, Location = rgLocation, Tags = tag };
await client.ResourceGroups.CreateOrUpdateAsync(rgName, rg);
注意:此代码示例应向后兼容上述 nuget 包的旧版本。
希望对您有所帮助!
我使用类似于 http://blogs.infinitesquare.com/b/tranise/archives/-azure-resource-group-une-nouvelle-facon-dorganiser-ses-environnements-dans-azure#.Vr1RrfIrLgk 的代码在 Azure 中使用 C# 创建资源组。我现在正尝试通过在资源上放置标签来扩展它。
添加 resourceGroupGetResult.ResourceGroup.Tags.Add("a","1")
有效,但随后的 CreateOrUpdateAsync 调用失败并显示
"InvalidRequestContent: The request content was invalid and could not be deserialized: 'Could not find member 'provisioningState' on object of type 'ResourceGroupDefinition'. Path 'provisioningState', line 9, position 23.'."
向资源组添加标签的正确方法是什么?当然我会想在这之后将相同的标签添加到组内的资源中。
谢谢。
我假设你使用的是 nuget package id="Microsoft.Azure.Management.Resources" version="3.4.0-preview ".
使用上面的 ARM .NET SDK 向 Azure 资源组添加标签的示例代码如下:
var tag = new Dictionary<string, string> {{tagName, tagValue}};
var rg = new ResourceGroup() { Name = rgName, Location = rgLocation, Tags = tag };
await client.ResourceGroups.CreateOrUpdateAsync(rgName, rg);
注意:此代码示例应向后兼容上述 nuget 包的旧版本。
希望对您有所帮助!