Azure Python 资源组中的 SDK 标记资源
Azure Python SDK Tagging Resources in Resource group
我正在使用 azure python runbook 来标记特定资源组中的所有资源。我无法找到正确的 help/documentation 如何更新该资源组中的所有资源。
resource_group_params = {'location': 'westeurope'}
# Modify the Resource group
resource_group_params.update(tags={'hello': 'world', 'new': 'tag'})
print_item(client.resources.create_or_update(GROUP_NAME, resource_id, resource_group_params))
它抱怨 resources.create_or_update 至少需要 8 个参数,只有 4 个提供
任何人都可以分享我的示例或解释 update/tag 资源所需的参数是什么
提前致谢。
你可以看看这个了解详情。
此外,您还可以按照以下步骤查看create_or_update
方法的源代码(我使用visual studio code
作为编辑器):
1.Select方法,然后按F12键。
2.In方法定义,可以看参数的解释。
我正在使用 azure python runbook 来标记特定资源组中的所有资源。我无法找到正确的 help/documentation 如何更新该资源组中的所有资源。
resource_group_params = {'location': 'westeurope'}
# Modify the Resource group
resource_group_params.update(tags={'hello': 'world', 'new': 'tag'})
print_item(client.resources.create_or_update(GROUP_NAME, resource_id, resource_group_params))
它抱怨 resources.create_or_update 至少需要 8 个参数,只有 4 个提供
任何人都可以分享我的示例或解释 update/tag 资源所需的参数是什么 提前致谢。
你可以看看这个
此外,您还可以按照以下步骤查看create_or_update
方法的源代码(我使用visual studio code
作为编辑器):
1.Select方法,然后按F12键。
2.In方法定义,可以看参数的解释。