如何在 Python azure SDK 的资源管理中创建标签?
How to create tags in Resource Management of Python azure SDK?
我正在使用 Python azure 2.0.0rc2 SDK 并希望创建一些标签。任何人都可以建议我这样做的方法。
标记操作包含在 azure.mgmt.resource.resources.operations 模块中。您可以使用 create_or_update(tag_name, custom_headers={}, raw=False, **operation_config) 创建标签。查看 azure.mgmt.resource.resources.operations.TagsOperations 了解详情。
我正在使用 Python azure 2.0.0rc2 SDK 并希望创建一些标签。任何人都可以建议我这样做的方法。
标记操作包含在 azure.mgmt.resource.resources.operations 模块中。您可以使用 create_or_update(tag_name, custom_headers={}, raw=False, **operation_config) 创建标签。查看 azure.mgmt.resource.resources.operations.TagsOperations 了解详情。