0
我正在使用Python azure 2.0.0rc2 SDK並希望創建一些標籤。任何人都可以建議我這樣做。如何在Python azure SDK的資源管理中創建標籤?
我正在使用Python azure 2.0.0rc2 SDK並希望創建一些標籤。任何人都可以建議我這樣做。如何在Python azure SDK的資源管理中創建標籤?
標記操作包含在azure.mgmt.resource.resources.operations模塊中。您可以使用create_or_update(tag_name,custom_headers = {},raw = False,** operation_config)來創建標籤。詳情請查詢azure.mgmt.resource.resources.operations.TagsOperations。
我想下面的代碼創建/更新標籤: '憑證= UserPassCredentials(用戶名=用戶名,密碼=密碼) resource_client = ResourceManagementClient(憑證=憑證) tag_operations = TagOperations(客戶端= resource_client) tag_operations.create_or_update_value (TAG_NAME = 'key_1',tag_value = 'val_1')' 但是,得到誤差,如: '如果self.client.credentials.subscription_id不是無: AttributeError的: 'UserPassCredentials' 對象沒有屬性「subscription_id'' 如何解決? –
@chandanmishra我已在您創建的新主題中回覆,請檢查。 – forester123
我已經得到了解決方案,問題與軟件包安裝有關。 要獲得這些屬性,我們需要安裝包 'pip install --pre azure'命令在centos上,但我用'pip install azure' –