From 6ed06d5e6679e40104a1abb74a4171f1680b61a9 Mon Sep 17 00:00:00 2001 From: Feiyue Yu Date: Mon, 28 Dec 2020 15:07:07 +0800 Subject: [PATCH 01/18] [Compute] sig image-version create: Support creating from a VHD --- .../azure/cli/core/profiles/_shared.py | 2 +- .../azure/cli/command_modules/vm/_params.py | 4 +++- src/azure-cli/azure/cli/command_modules/vm/custom.py | 12 +++++++++++- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/src/azure-cli-core/azure/cli/core/profiles/_shared.py b/src/azure-cli-core/azure/cli/core/profiles/_shared.py index cd1ca775cd5..dfa7bedf09a 100644 --- a/src/azure-cli-core/azure/cli/core/profiles/_shared.py +++ b/src/azure-cli-core/azure/cli/core/profiles/_shared.py @@ -145,7 +145,7 @@ def default_api_version(self): 'snapshots': '2020-05-01', 'galleries': '2019-12-01', 'gallery_images': '2020-09-30', - 'gallery_image_versions': '2019-12-01', + 'gallery_image_versions': '2020-09-30', 'virtual_machine_scale_sets': '2020-06-01' }), ResourceType.MGMT_RESOURCE_FEATURES: '2015-12-01', diff --git a/src/azure-cli/azure/cli/command_modules/vm/_params.py b/src/azure-cli/azure/cli/command_modules/vm/_params.py index 68e3950c524..cc3d3cf37e4 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/_params.py +++ b/src/azure-cli/azure/cli/command_modules/vm/_params.py @@ -875,7 +875,7 @@ def load_arguments(self, _): c.argument('gallery_image_version_name', options_list=['--gallery-image-version', '-e', deprecated_option], help='Gallery image version in semantic version pattern. The allowed characters are digit and period. Digits must be within the range of a 32-bit integer, e.g. `..`') - with self.argument_context('sig image-version create') as c: + with self.argument_context('sig image-version create', resource_type=ResourceType.MGMT_COMPUTE, operation_group='gallery_image_versions') as c: c.argument('gallery_image_version', options_list=['--gallery-image-version', '-e'], help='Gallery image version in semantic version pattern. The allowed characters are digit and period. Digits must be within the range of a 32-bit integer, e.g. `..`') c.argument('description', help='the description of the gallery image version') @@ -890,6 +890,8 @@ def load_arguments(self, _): arg_type=get_enum_type(["Standard_LRS", "Standard_ZRS", "Premium_LRS"]), min_api='2019-03-01') c.argument('target_region_encryption', nargs='+', help='Space-separated list of customer managed keys for encrypting the OS and data disks in the gallery artifact for each region. Format for each region: `,,,,`. Use "null" as a placeholder.') + c.argument('vhd', help='Source VHD URI', min_api='2020-09-30') + c.argument('vhd_storage_account', help='Name or ID of storage account of source VHD URI', min_api='2020-09-30') with self.argument_context('sig image-version show') as c: c.argument('expand', help="The expand expression to apply on the operation, e.g. 'ReplicationStatus'") diff --git a/src/azure-cli/azure/cli/command_modules/vm/custom.py b/src/azure-cli/azure/cli/command_modules/vm/custom.py index be8746d473b..4919ce9b241 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/custom.py +++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py @@ -3253,7 +3253,7 @@ def create_image_version(cmd, resource_group_name, gallery_name, gallery_image_n location=None, target_regions=None, storage_account_type=None, end_of_life_date=None, exclude_from_latest=None, replica_count=None, tags=None, os_snapshot=None, data_snapshots=None, managed_image=None, data_snapshot_luns=None, - target_region_encryption=None): + target_region_encryption=None, vhd=None, vhd_storage_account=None): # print(target_regions) from msrestazure.tools import resource_id, is_valid_resource_id from azure.cli.core.commands.client_factory import get_subscription_id @@ -3317,6 +3317,16 @@ def create_image_version(cmd, resource_group_name, gallery_name, gallery_image_n for i, s in enumerate(data_snapshots): data_disk_images.append(GalleryDataDiskImage(source=GalleryArtifactVersionSource(id=s), lun=data_snapshot_luns[i])) + # from vhd + if cmd.supported_api_version(min_api='2020-09-30', operation_group='gallery_image_versions'): + # TODO: parameter validation + if vhd and vhd_storage_account: + if not is_valid_resource_id(vhd_storage_account): + vhd_storage_account = resource_id( + subscription=get_subscription_id(cmd.cli_ctx), resource_group=resource_group_name, + namespace='Microsoft.Storage', type='storageAccounts', name=vhd_storage_account) + source = GalleryArtifactVersionSource(id=vhd_storage_account, uri=vhd) + storage_profile = GalleryImageVersionStorageProfile(source=source, os_disk_image=os_disk_image, data_disk_images=data_disk_images) image_version = ImageVersion(publishing_profile=profile, location=location, tags=(tags or {}), From 377b640795497192f1a5e72bf554643d82eb77b4 Mon Sep 17 00:00:00 2001 From: Feiyue Yu Date: Wed, 27 Jan 2021 17:10:05 +0800 Subject: [PATCH 02/18] New API version, rerun test --- .../latest/recordings/test_gallery_e2e.yaml | 2290 +++++++---------- .../recordings/test_gallery_specialized.yaml | 1374 +++------- .../test_image_build_shared_image.yaml | 922 +++---- .../recordings/test_specialized_image.yaml | 832 +++--- .../test_vm_disk_max_shares_etc.yaml | 799 +++--- 5 files changed, 2580 insertions(+), 3637 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_e2e.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_e2e.yaml index 00980143ab9..5cb337a7962 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_e2e.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_e2e.yaml @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2020-12-19T06:30:14Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:30:16 GMT + - Wed, 27 Jan 2021 08:20:48 GMT expires: - '-1' pragma: @@ -62,7 +62,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01 response: @@ -70,11 +70,11 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"5e87627b-4ffa-4abf-8040-b1103c84a2fd-GALLERY_YJ37QQQCLWXC\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_RP6DS2E2GQAN\"\r\n },\r\n \ \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/bac3f3ff-29ea-481a-8173-9e172f36ea64?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/5b2fb02e-3cd1-4c0f-9ac4-ea4a9f7381a1?api-version=2019-12-01 cache-control: - no-cache content-length: @@ -82,7 +82,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:30:18 GMT + - Wed, 27 Jan 2021 08:20:54 GMT expires: - '-1' pragma: @@ -95,9 +95,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299 + - Microsoft.Compute/CreateUpdateGallery3Min;48,Microsoft.Compute/CreateUpdateGallery30Min;297 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1193' status: code: 201 message: Created @@ -115,23 +115,23 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/bac3f3ff-29ea-481a-8173-9e172f36ea64?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/5b2fb02e-3cd1-4c0f-9ac4-ea4a9f7381a1?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T06:30:18.020304+00:00\",\r\n \"endTime\": - \"2020-12-19T06:30:18.2390554+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"bac3f3ff-29ea-481a-8173-9e172f36ea64\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:20:53.7240524+00:00\",\r\n \"endTime\": + \"2021-01-27T08:20:53.8334272+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"5b2fb02e-3cd1-4c0f-9ac4-ea4a9f7381a1\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:30:48 GMT + - Wed, 27 Jan 2021 08:21:25 GMT expires: - '-1' pragma: @@ -148,7 +148,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4198 + - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4184 status: code: 200 message: OK @@ -166,7 +166,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01 response: @@ -174,7 +174,7 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"5e87627b-4ffa-4abf-8040-b1103c84a2fd-GALLERY_YJ37QQQCLWXC\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_RP6DS2E2GQAN\"\r\n },\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -184,7 +184,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:30:48 GMT + - Wed, 27 Jan 2021 08:21:25 GMT expires: - '-1' pragma: @@ -201,7 +201,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGallery3Min;345,Microsoft.Compute/GetGallery30Min;2495 + - Microsoft.Compute/GetGallery3Min;343,Microsoft.Compute/GetGallery30Min;2488 status: code: 200 message: OK @@ -219,16 +219,16 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries?api-version=2019-12-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"gallery_000002\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEIXYNQFXDGIUZJWSSH6CIISMOCGBTYTF62NZADFJRY5HVUEXBZER4VCKHRWKHXK3G/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGTITZ2DSPL7KIQWRQ5FDRQETWBTYMSOS6R7X3OQOACT55XGEGH7KGYN7LAFIWZRJG7/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": - {\r\n \"uniqueName\": \"5e87627b-4ffa-4abf-8040-b1103c84a2fd-GALLERY_YJ37QQQCLWXC\"\r\n + {\r\n \"uniqueName\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_RP6DS2E2GQAN\"\r\n \ },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n \ }\r\n ]\r\n}" headers: @@ -239,7 +239,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:30:48 GMT + - Wed, 27 Jan 2021 08:21:27 GMT expires: - '-1' pragma: @@ -274,7 +274,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01 response: @@ -282,7 +282,7 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"5e87627b-4ffa-4abf-8040-b1103c84a2fd-GALLERY_YJ37QQQCLWXC\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_RP6DS2E2GQAN\"\r\n },\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -292,7 +292,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:30:49 GMT + - Wed, 27 Jan 2021 08:21:27 GMT expires: - '-1' pragma: @@ -309,7 +309,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGallery3Min;344,Microsoft.Compute/GetGallery30Min;2494 + - Microsoft.Compute/GetGallery3Min;341,Microsoft.Compute/GetGallery30Min;2486 status: code: 200 message: OK @@ -327,15 +327,15 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2020-12-19T06:30:14Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -344,7 +344,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:30:50 GMT + - Wed, 27 Jan 2021 08:21:28 GMT expires: - '-1' pragma: @@ -360,8 +360,8 @@ interactions: message: OK - request: body: '{"location": "eastus2", "tags": {}, "properties": {"osType": "Linux", "osState": - "Generalized", "identifier": {"publisher": "publisher1", "offer": "offer1", - "sku": "sku1"}, "disallowed": {}}}' + "Generalized", "hyperVGeneration": "V1", "identifier": {"publisher": "publisher1", + "offer": "offer1", "sku": "sku1"}, "disallowed": {}}}' headers: Accept: - application/json @@ -372,13 +372,13 @@ interactions: Connection: - keep-alive Content-Length: - - '191' + - '217' Content-Type: - application/json ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -392,7 +392,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/b9131df9-f6a3-4ec4-8784-d7fb417f97a0?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/63a243ac-404d-44f5-b739-0e9be5da38f9?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -400,7 +400,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:30:51 GMT + - Wed, 27 Jan 2021 08:21:34 GMT expires: - '-1' pragma: @@ -413,9 +413,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;749 + - Microsoft.Compute/CreateUpdateGalleryImage3Min;148,Microsoft.Compute/CreateUpdateGalleryImage30Min;747 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 201 message: Created @@ -433,14 +433,14 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/b9131df9-f6a3-4ec4-8784-d7fb417f97a0?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/63a243ac-404d-44f5-b739-0e9be5da38f9?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T06:30:51.5996219+00:00\",\r\n \"endTime\": - \"2020-12-19T06:30:51.724625+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"b9131df9-f6a3-4ec4-8784-d7fb417f97a0\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:21:33.8336621+00:00\",\r\n \"endTime\": + \"2021-01-27T08:21:33.943037+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"63a243ac-404d-44f5-b739-0e9be5da38f9\"\r\n}" headers: cache-control: - no-cache @@ -449,7 +449,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:31:21 GMT + - Wed, 27 Jan 2021 08:22:04 GMT expires: - '-1' pragma: @@ -466,7 +466,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4194 + - Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4180 status: code: 200 message: OK @@ -484,7 +484,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -504,7 +504,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:31:21 GMT + - Wed, 27 Jan 2021 08:22:05 GMT expires: - '-1' pragma: @@ -521,7 +521,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;595,Microsoft.Compute/GetGalleryImage30Min;2995 + - Microsoft.Compute/GetGalleryImage3Min;592,Microsoft.Compute/GetGalleryImage30Min;2987 status: code: 200 message: OK @@ -539,7 +539,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images?api-version=2020-09-30 response: @@ -553,7 +553,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:31:23 GMT + - Wed, 27 Jan 2021 08:22:07 GMT expires: - '-1' pragma: @@ -565,39 +565,41 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 9ad3087c-964e-4d84-9a4a-a90bd5ce0a7f - - b494e706-3284-42cc-836a-f5624f5abe56 - - 5e244b7f-b70d-49cf-868b-bf2c5e26c838 - - ad5cfa2d-afbf-4f5e-badf-57ab52ffca3b - - c25e5bac-1edc-4250-8ec5-a5862698d3a8 - - 565a8270-a7ca-476a-91fd-7b2f6133ac5f - - 6b851c7a-14b9-4669-a839-e8a3efe136cc - - c0205b3b-7a4e-43d2-907d-8a2a768d719f - - b124dd4a-dc19-44ad-ad88-4defe2b2b050 - - 314b58ea-2b4a-44d1-895c-21f044fb49cb - - 9ec11367-d7e0-4562-a67c-a3d7cd5ed719 - - 0ca978d6-845a-400e-999d-b615206bbfd9 - - a4f0f249-c4f6-4116-ba7e-55df5d5a050c - - 44b3dc73-8f5d-497a-972e-fddc4da05192 - - e3d56020-ce8d-4918-abaa-99d6241eef27 - - b67b3c0a-b403-440a-91e6-52cf588ed14e - - 066883ea-59df-41f3-809c-fb2ad1b3697f - - eea9543c-cad3-4c06-848b-c493c1afa8e7 - - 7b645f6e-5779-4f8a-b7d8-12e1329e1d95 - - 785588e4-5d22-4983-b420-f043ea07a109 - - 389f0a48-0628-404c-8644-6b1d998ea4ee - - 80508be9-b8b6-45cd-a793-6d4f870ab95f - - 74c4152c-59b8-4e6f-b08f-62f747b71ee6 - - 08ec4da3-8180-4e62-b0d1-2985395d6d5b - - 10bbf88b-9263-4139-bcc1-cf95f89c75b7 - - 56141bd0-87da-4ec2-a3b2-377aac436f5e - - b2725473-9c8d-4389-98ea-5eae31a28891 - - cb6a1bd1-7052-40e6-b0ac-1cfa385c0c34 - - 37b76c43-2def-4432-9ef8-af263dfbfee5 - - 1ec15e09-41c5-4a00-b9c5-79a751492d55 - - 90db3975-914c-4d2a-90f3-a4dbc53a9ffd - - d01bbaaf-d8f5-4792-855f-0cb81819f0d8 - - 7c3bac77-07b4-4929-900d-653a00c10c5e + - dc524096-2a5c-478e-9588-3c58d8b34645 + - 57e2b63f-e9b4-428c-8e97-82037ef92ea3 + - 563dfce4-f98e-47f0-baf4-57ae758ebe22 + - 019a432e-4839-4182-95d6-a66f85b7831f + - 3fbe99c1-80a0-4ad6-991b-0abcb507e670 + - 1577b3af-c677-4e73-b0f1-79818487bf1a + - 500d1411-f098-4cc4-b4f4-b346a4e75505 + - 59c12250-2875-404e-9781-b804a66e9c1b + - 247443a8-25b3-4fab-9090-6018bf85e6ba + - 3cc43e79-6618-484e-b00d-4e1d7b3d3671 + - eb5b3a97-71f5-4128-93f8-9bc49d38d0ef + - 38a790b0-90d3-4e98-8cc5-b38a8d534cb3 + - ec676355-7399-4310-91c5-ea2156d62815 + - c5756e60-77b7-4279-8ad3-1c6b598a29fe + - 0b5f79b1-e8ee-4ee0-9108-97148501c9ac + - 5ac30aa0-c0f7-4a57-ba30-69ce9270a234 + - 7b28825b-6486-45af-bd79-9aa97483776f + - 647fcdbc-c4e1-41bf-a67b-13388c68ddb5 + - 3d38e6cb-6a20-4f8b-89cf-1456e5189890 + - af211357-4e69-47f8-a71e-a9009663e297 + - 9ba826f9-9abc-450c-822b-119850d9782b + - 03f55584-6e77-42ae-af65-064c5685b5be + - 43089978-21f5-41e8-90a8-d3d7c3a0b89f + - 6ff99200-55af-44d7-8e21-2b8a3daf34a5 + - 0a7f6dda-c742-4f8e-956b-cc7295e477ec + - 7c6926fd-3f25-498f-928f-5a758704dced + - 15f7f0d2-9dd5-411b-9bff-dc41bf296e74 + - 50a0a527-a2e3-4e79-9834-e3e8ae26697b + - 71b02c88-45c8-4b4e-afcf-c2c799d17187 + - cc642ad1-c87f-4cf2-9da8-85429e55a0a7 + - ffa40cd1-fb18-4e19-802c-1a0769efd635 + - 349aa567-7086-4186-b283-f74b0b32a719 + - 10c13a48-b865-46a6-9ff1-b2abaf7fbc0b + - a7492214-d796-4190-bac0-0ad524fcd521 + - 18f0ab46-3d73-410a-9abc-4cd7819a4c36 status: code: 200 message: OK @@ -615,7 +617,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -635,7 +637,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:31:23 GMT + - Wed, 27 Jan 2021 08:22:09 GMT expires: - '-1' pragma: @@ -652,7 +654,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;594,Microsoft.Compute/GetGalleryImage30Min;2994 + - Microsoft.Compute/GetGalleryImage3Min;591,Microsoft.Compute/GetGalleryImage30Min;2986 status: code: 200 message: OK @@ -670,15 +672,15 @@ interactions: ParameterSetName: - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2020-12-19T06:30:14Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -687,7 +689,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:31:24 GMT + - Wed, 27 Jan 2021 08:22:09 GMT expires: - '-1' pragma: @@ -766,35 +768,35 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sat, 19 Dec 2020 06:31:24 GMT + - Wed, 27 Jan 2021 08:22:10 GMT etag: - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" expires: - - Sat, 19 Dec 2020 06:36:24 GMT + - Wed, 27 Jan 2021 08:27:10 GMT source-age: - - '80' + - '135' strict-transport-security: - max-age=31536000 vary: - - Authorization,Accept-Encoding + - Authorization,Accept-Encoding, Accept-Encoding via: - - 1.1 varnish (Varnish/6.0), 1.1 varnish + - 1.1 varnish x-cache: - - MISS, HIT + - HIT x-cache-hits: - - 0, 1 + - '1' x-content-type-options: - nosniff x-fastly-request-id: - - 937cf9947dd58161bc6f1d14b55166ea3468f1b5 + - 7b1204241ac085e3f7bf8f50868f8070c98c4915 x-frame-options: - deny x-github-request-id: - - 93C6:3C8C:469397:4F234E:5FDD936A + - 1AF8:6712:254F7:28ADA:600FA121 x-served-by: - - cache-mia11372-MIA + - cache-sin18039-SIN x-timer: - - S1608359485.924438,VS0,VE1 + - S1611735730.178113,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -804,7 +806,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -814,10 +816,7 @@ interactions: ParameterSetName: - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 response: @@ -831,7 +830,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:31:25 GMT + - Wed, 27 Jan 2021 08:22:10 GMT expires: - '-1' pragma: @@ -872,9 +871,9 @@ interactions: "latest"}, "dataDisks": [{"lun": 0, "managedDisk": {"storageAccountType": null}, "createOption": "empty", "diskSizeGB": 10}]}, "osProfile": {"computerName": "vm1", "adminUsername": "clitest1", "linuxConfiguration": {"disablePasswordAuthentication": - true, "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDI8aYs6Q0jHMi+ZA79hsoxoTxrbVwH/eZY+ZSifVvvKicm1/80fdqKNXgfNujlTiXYG7kCN+NhsgoEtARQtJnStvYv1HzD95rb0dSegff+GqUGgAdE+/oIEMu8/CRVLQWlPrOs2qUeRvElCmG8M+BTVC2sMFFblSrwHOx5sKLdWv4eOjncICD7w9Ktbi5FNC5RHElvlxei3vUOpfUfP4GIiy5CCXUPmO5AX+BO15JkMJsaNfmGMQ7LFzFbw6F+HG+Hi4hm+Kd3mNK7qyaz0T2iGBnA6maVB2zugbZtCuY9ZlfnWxDVF8V43mVY7MNLM1BqwskDNwzKiVgeUXLDYJux", - "path": "/home/clitest1/.ssh/authorized_keys"}]}}}}}], "outputs": {}}, "parameters": - {}, "mode": "Incremental"}}' + true, "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj + fey@DESKTOP-ARGPJS4\n", "path": "/home/clitest1/.ssh/authorized_keys"}]}}}}}], + "outputs": {}}, "parameters": {}, "mode": "Incremental"}}' headers: Accept: - application/json @@ -885,32 +884,32 @@ interactions: Connection: - keep-alive Content-Length: - - '3500' + - '3522' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_u21e3Cdf5RpkH4OepGo0NpEn2xLoZdal","name":"vm_deploy_u21e3Cdf5RpkH4OepGo0NpEn2xLoZdal","type":"Microsoft.Resources/deployments","properties":{"templateHash":"807585444005824554","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-12-19T06:31:26.8024662Z","duration":"PT0.7704234S","correlationId":"63c5fa27-8968-41d5-8fd1-d0624981788f","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus2"]},{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_VWa2kAQqTJUZ64bBq3Mmd2DlflL2UK2d","name":"vm_deploy_VWa2kAQqTJUZ64bBq3Mmd2DlflL2UK2d","type":"Microsoft.Resources/deployments","properties":{"templateHash":"3991884563417416776","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-01-27T08:22:14.3935628Z","duration":"PT2.5884694S","correlationId":"df5f7a07-f216-4cdb-8648-55abdc42d89f","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus2"]},{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_u21e3Cdf5RpkH4OepGo0NpEn2xLoZdal/operationStatuses/08585932473994455985?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_VWa2kAQqTJUZ64bBq3Mmd2DlflL2UK2d/operationStatuses/08585898711536725440?api-version=2020-10-01 cache-control: - no-cache content-length: - - '2746' + - '2747' content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:31:26 GMT + - Wed, 27 Jan 2021 08:22:14 GMT expires: - '-1' pragma: @@ -920,7 +919,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 201 message: Created @@ -938,96 +937,10 @@ interactions: ParameterSetName: - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585932473994455985?api-version=2020-10-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Sat, 19 Dec 2020 06:31:56 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule - User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585932473994455985?api-version=2020-10-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Sat, 19 Dec 2020 06:32:27 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule - User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585932473994455985?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585898711536725440?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -1039,7 +952,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:32:57 GMT + - Wed, 27 Jan 2021 08:22:45 GMT expires: - '-1' pragma: @@ -1067,10 +980,10 @@ interactions: ParameterSetName: - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585932473994455985?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585898711536725440?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -1082,7 +995,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:33:27 GMT + - Wed, 27 Jan 2021 08:23:16 GMT expires: - '-1' pragma: @@ -1110,22 +1023,22 @@ interactions: ParameterSetName: - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_u21e3Cdf5RpkH4OepGo0NpEn2xLoZdal","name":"vm_deploy_u21e3Cdf5RpkH4OepGo0NpEn2xLoZdal","type":"Microsoft.Resources/deployments","properties":{"templateHash":"807585444005824554","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-12-19T06:33:00.6092109Z","duration":"PT1M34.5771681S","correlationId":"63c5fa27-8968-41d5-8fd1-d0624981788f","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus2"]},{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_VWa2kAQqTJUZ64bBq3Mmd2DlflL2UK2d","name":"vm_deploy_VWa2kAQqTJUZ64bBq3Mmd2DlflL2UK2d","type":"Microsoft.Resources/deployments","properties":{"templateHash":"3991884563417416776","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-01-27T08:22:55.9961049Z","duration":"PT44.1910115S","correlationId":"df5f7a07-f216-4cdb-8648-55abdc42d89f","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus2"]},{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}' headers: cache-control: - no-cache content-length: - - '3813' + - '3812' content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:33:28 GMT + - Wed, 27 Jan 2021 08:23:16 GMT expires: - '-1' pragma: @@ -1153,38 +1066,38 @@ interactions: ParameterSetName: - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"2b11a217-85be-4c75-89c8-95b212737264\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"5707e860-4fff-494b-bb2d-ab144432e47a\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202012111\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"vm1_disk1_b74ed30eec49420fbdc08be922329561\",\r\n + \"18.04.202101191\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"vm1_disk1_38f91102730646bd8468bbf4ee313369\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_b74ed30eec49420fbdc08be922329561\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_38f91102730646bd8468bbf4ee313369\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": - [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1_disk2_b6368e1d474540de9c93de50424fd4ed\",\r\n + [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1_disk2_898f64627d8a4b0ab9fe3e4e2a86b557\",\r\n \ \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_b6368e1d474540de9c93de50424fd4ed\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_898f64627d8a4b0ab9fe3e4e2a86b557\"\r\n \ },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/clitest1/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDI8aYs6Q0jHMi+ZA79hsoxoTxrbVwH/eZY+ZSifVvvKicm1/80fdqKNXgfNujlTiXYG7kCN+NhsgoEtARQtJnStvYv1HzD95rb0dSegff+GqUGgAdE+/oIEMu8/CRVLQWlPrOs2qUeRvElCmG8M+BTVC2sMFFblSrwHOx5sKLdWv4eOjncICD7w9Ktbi5FNC5RHElvlxei3vUOpfUfP4GIiy5CCXUPmO5AX+BO15JkMJsaNfmGMQ7LFzFbw6F+HG+Hi4hm+Kd3mNK7qyaz0T2iGBnA6maVB2zugbZtCuY9ZlfnWxDVF8V43mVY7MNLM1BqwskDNwzKiVgeUXLDYJux\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n - \ }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj + fey@DESKTOP-ARGPJS4\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": + \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\": @@ -1193,20 +1106,20 @@ interactions: [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \ \"message\": \"Guest Agent is running\",\r\n \"time\": - \"2020-12-19T06:33:28+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_disk1_b74ed30eec49420fbdc08be922329561\",\r\n + \"2021-01-27T08:23:15+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_disk1_38f91102730646bd8468bbf4ee313369\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-12-19T06:32:42.7600562+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-27T08:22:40.3585811+00:00\"\r\n \ }\r\n ]\r\n },\r\n {\r\n \"name\": - \"vm1_disk2_b6368e1d474540de9c93de50424fd4ed\",\r\n \"statuses\": + \"vm1_disk2_898f64627d8a4b0ab9fe3e4e2a86b557\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-12-19T06:32:42.7600562+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-27T08:22:40.3585811+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded/osProvisioningInProgress\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"OS provisioning - in progress\",\r\n \"time\": \"2020-12-19T06:32:58.7293993+00:00\"\r\n + in progress\",\r\n \"time\": \"2021-01-27T08:22:54.3902565+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n \ }\r\n ]\r\n }\r\n }\r\n}" @@ -1214,11 +1127,11 @@ interactions: cache-control: - no-cache content-length: - - '4787' + - '4809' content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:33:29 GMT + - Wed, 27 Jan 2021 08:23:17 GMT expires: - '-1' pragma: @@ -1235,7 +1148,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31996 + - Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31976 status: code: 200 message: OK @@ -1243,7 +1156,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -1253,21 +1166,18 @@ interactions: ParameterSetName: - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"vm1VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\r\n - \ \"etag\": \"W/\\\"c477fa37-b18f-48fb-979c-83145f7439d0\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"25611ede-fe8f-4906-a15a-a472d579daee\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"320c33de-751e-4a3d-8c02-375e205eb036\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"74cae04c-2f99-4e24-88ad-d820528895c3\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm1\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\r\n - \ \"etag\": \"W/\\\"c477fa37-b18f-48fb-979c-83145f7439d0\\\"\",\r\n + \ \"etag\": \"W/\\\"25611ede-fe8f-4906-a15a-a472d579daee\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -1276,8 +1186,8 @@ interactions: \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": - \"3xffompocygeldyiyewec5frfb.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-00-AC-77\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"wqjmo0hug13enjmfpzff1iqhid.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-0E-28-F9\",\r\n \"enableAcceleratedNetworking\": false,\r\n \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -1291,9 +1201,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:33:29 GMT + - Wed, 27 Jan 2021 08:23:18 GMT etag: - - W/"c477fa37-b18f-48fb-979c-83145f7439d0" + - W/"25611ede-fe8f-4906-a15a-a472d579daee" expires: - '-1' pragma: @@ -1310,7 +1220,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 525a1a7c-9295-4350-89b7-c77952e211db + - ea9839b0-6dc7-4c75-97f6-ef57f5cd6f85 status: code: 200 message: OK @@ -1318,7 +1228,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -1328,20 +1238,17 @@ interactions: ParameterSetName: - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"vm1PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\r\n - \ \"etag\": \"W/\\\"f8f3fd09-35d5-410a-945c-ce8194656e92\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"0ec23097-edf6-4185-9c12-6bc3f5e3ac07\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"2c405209-09ec-45a2-95d8-011628ab1556\",\r\n - \ \"ipAddress\": \"13.77.126.167\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n - \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + \"Succeeded\",\r\n \"resourceGuid\": \"3ed06b21-d83c-44be-9b17-a111627978c5\",\r\n + \ \"ipAddress\": \"104.208.223.14\",\r\n \"publicIPAddressVersion\": + \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" @@ -1349,13 +1256,13 @@ interactions: cache-control: - no-cache content-length: - - '998' + - '999' content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:33:29 GMT + - Wed, 27 Jan 2021 08:23:19 GMT etag: - - W/"f8f3fd09-35d5-410a-945c-ce8194656e92" + - W/"0ec23097-edf6-4185-9c12-6bc3f5e3ac07" expires: - '-1' pragma: @@ -1372,7 +1279,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c25611d2-2154-47f7-a21e-e566aa503d12 + - ba1626cb-1609-42a4-bb68-f07b89c022be status: code: 200 message: OK @@ -1395,7 +1302,7 @@ interactions: ParameterSetName: - -g -n --command-id --scripts User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/runCommand?api-version=2020-06-01 response: @@ -1403,17 +1310,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/f395c92e-b02c-4890-b495-58259ba412d1?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/075696f0-2608-4869-961e-860b7e9840ff?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Sat, 19 Dec 2020 06:33:30 GMT + - Wed, 27 Jan 2021 08:23:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/f395c92e-b02c-4890-b495-58259ba412d1?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/075696f0-2608-4869-961e-860b7e9840ff?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -1426,7 +1333,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1199 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -1444,27 +1351,26 @@ interactions: ParameterSetName: - -g -n --command-id --scripts User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/f395c92e-b02c-4890-b495-58259ba412d1?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/075696f0-2608-4869-961e-860b7e9840ff?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T06:33:30.6525057+00:00\",\r\n \"endTime\": - \"2020-12-19T06:33:50.2938555+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"properties\": {\r\n \"output\": {\r\n \"value\": [\r\n {\r\n \"code\": - \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": - \"Provisioning succeeded\",\r\n \"message\": \"Enable succeeded: \\n[stdout]\\n\\n[stderr]\\nwarning: - commands will be executed using /bin/sh\\njob 1 at Sat Dec 19 06:34:00 2020\\n\"\r\n - \ }\r\n ]\r\n}\r\n },\r\n \"name\": \"f395c92e-b02c-4890-b495-58259ba412d1\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:23:20.4223644+00:00\",\r\n \"endTime\": + \"2021-01-27T08:23:35.8916258+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"properties\": {\r\n \"output\": {\"value\":[{\"code\":\"ProvisioningState/succeeded\",\"level\":\"Info\",\"displayStatus\":\"Provisioning + succeeded\",\"message\":\"Enable succeeded: \\n[stdout]\\n\\n[stderr]\\nwarning: + commands will be executed using /bin/sh\\njob 1 at Wed Jan 27 08:24:00 2021\\n\"}]}\r\n + \ },\r\n \"name\": \"075696f0-2608-4869-961e-860b7e9840ff\"\r\n}" headers: cache-control: - no-cache content-length: - - '530' + - '471' content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:33:59 GMT + - Wed, 27 Jan 2021 08:23:50 GMT expires: - '-1' pragma: @@ -1481,7 +1387,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29996 + - Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29986 status: code: 200 message: OK @@ -1499,14 +1405,14 @@ interactions: ParameterSetName: - -g -n --command-id --scripts User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/f395c92e-b02c-4890-b495-58259ba412d1?monitor=true&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/075696f0-2608-4869-961e-860b7e9840ff?monitor=true&api-version=2020-06-01 response: body: string: '{"value":[{"code":"ProvisioningState/succeeded","level":"Info","displayStatus":"Provisioning succeeded","message":"Enable succeeded: \n[stdout]\n\n[stderr]\nwarning: commands - will be executed using /bin/sh\njob 1 at Sat Dec 19 06:34:00 2020\n"}]}' + will be executed using /bin/sh\njob 1 at Wed Jan 27 08:24:00 2021\n"}]}' headers: cache-control: - no-cache @@ -1515,7 +1421,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:33:59 GMT + - Wed, 27 Jan 2021 08:23:50 GMT expires: - '-1' pragma: @@ -1532,7 +1438,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29995 + - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29985 status: code: 200 message: OK @@ -1552,7 +1458,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/deallocate?api-version=2020-06-01 response: @@ -1560,17 +1466,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/30578cb2-bf28-479f-aa92-887e4a579f41?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/1e987645-c6e9-4736-ab9b-e28b513263d0?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Sat, 19 Dec 2020 06:35:12 GMT + - Wed, 27 Jan 2021 08:25:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/30578cb2-bf28-479f-aa92-887e4a579f41?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/1e987645-c6e9-4736-ab9b-e28b513263d0?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -1581,7 +1487,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1199 + - Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1198 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1601,13 +1507,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/30578cb2-bf28-479f-aa92-887e4a579f41?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/1e987645-c6e9-4736-ab9b-e28b513263d0?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T06:35:12.5000175+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"30578cb2-bf28-479f-aa92-887e4a579f41\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:25:02.5644425+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"1e987645-c6e9-4736-ab9b-e28b513263d0\"\r\n}" headers: cache-control: - no-cache @@ -1616,7 +1522,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:35:22 GMT + - Wed, 27 Jan 2021 08:25:12 GMT expires: - '-1' pragma: @@ -1633,7 +1539,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29993 + - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29984 status: code: 200 message: OK @@ -1651,14 +1557,14 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/30578cb2-bf28-479f-aa92-887e4a579f41?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/1e987645-c6e9-4736-ab9b-e28b513263d0?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T06:35:12.5000175+00:00\",\r\n \"endTime\": - \"2020-12-19T06:35:52.8921752+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"30578cb2-bf28-479f-aa92-887e4a579f41\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:25:02.5644425+00:00\",\r\n \"endTime\": + \"2021-01-27T08:25:31.5513411+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"1e987645-c6e9-4736-ab9b-e28b513263d0\"\r\n}" headers: cache-control: - no-cache @@ -1667,7 +1573,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:35:58 GMT + - Wed, 27 Jan 2021 08:25:49 GMT expires: - '-1' pragma: @@ -1684,7 +1590,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29989 + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29980 status: code: 200 message: OK @@ -1702,9 +1608,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/30578cb2-bf28-479f-aa92-887e4a579f41?monitor=true&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/1e987645-c6e9-4736-ab9b-e28b513263d0?monitor=true&api-version=2020-06-01 response: body: string: '' @@ -1714,7 +1620,7 @@ interactions: content-length: - '0' date: - - Sat, 19 Dec 2020 06:35:58 GMT + - Wed, 27 Jan 2021 08:25:49 GMT expires: - '-1' pragma: @@ -1727,7 +1633,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29988 + - Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29979 status: code: 200 message: OK @@ -1747,7 +1653,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/generalize?api-version=2020-06-01 response: @@ -1759,7 +1665,7 @@ interactions: content-length: - '0' date: - - Sat, 19 Dec 2020 06:35:59 GMT + - Wed, 27 Jan 2021 08:25:50 GMT expires: - '-1' pragma: @@ -1792,53 +1698,53 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"2b11a217-85be-4c75-89c8-95b212737264\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"5707e860-4fff-494b-bb2d-ab144432e47a\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202012111\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"vm1_disk1_b74ed30eec49420fbdc08be922329561\",\r\n + \"18.04.202101191\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"vm1_disk1_38f91102730646bd8468bbf4ee313369\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n - \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_b74ed30eec49420fbdc08be922329561\"\r\n + \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_38f91102730646bd8468bbf4ee313369\"\r\n \ }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": - 0,\r\n \"name\": \"vm1_disk2_b6368e1d474540de9c93de50424fd4ed\",\r\n + 0,\r\n \"name\": \"vm1_disk2_898f64627d8a4b0ab9fe3e4e2a86b557\",\r\n \ \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n - \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_b6368e1d474540de9c93de50424fd4ed\"\r\n + \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_898f64627d8a4b0ab9fe3e4e2a86b557\"\r\n \ },\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n \ },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/clitest1/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDI8aYs6Q0jHMi+ZA79hsoxoTxrbVwH/eZY+ZSifVvvKicm1/80fdqKNXgfNujlTiXYG7kCN+NhsgoEtARQtJnStvYv1HzD95rb0dSegff+GqUGgAdE+/oIEMu8/CRVLQWlPrOs2qUeRvElCmG8M+BTVC2sMFFblSrwHOx5sKLdWv4eOjncICD7w9Ktbi5FNC5RHElvlxei3vUOpfUfP4GIiy5CCXUPmO5AX+BO15JkMJsaNfmGMQ7LFzFbw6F+HG+Hi4hm+Kd3mNK7qyaz0T2iGBnA6maVB2zugbZtCuY9ZlfnWxDVF8V43mVY7MNLM1BqwskDNwzKiVgeUXLDYJux\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n - \ }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj + fey@DESKTOP-ARGPJS4\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": + \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"disks\": - [\r\n {\r\n \"name\": \"vm1_disk1_b74ed30eec49420fbdc08be922329561\",\r\n + [\r\n {\r\n \"name\": \"vm1_disk1_38f91102730646bd8468bbf4ee313369\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-12-19T06:35:50.7514714+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-27T08:25:29.3950036+00:00\"\r\n \ }\r\n ]\r\n },\r\n {\r\n \"name\": - \"vm1_disk2_b6368e1d474540de9c93de50424fd4ed\",\r\n \"statuses\": + \"vm1_disk2_898f64627d8a4b0ab9fe3e4e2a86b557\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-12-19T06:35:50.7514714+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-27T08:25:29.3950036+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"OSState/generalized\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM generalized\"\r\n \ },\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-12-19T06:35:50.7514714+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-27T08:25:29.4106105+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/deallocated\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n \ }\r\n ]\r\n }\r\n }\r\n}" @@ -1846,11 +1752,11 @@ interactions: cache-control: - no-cache content-length: - - '4282' + - '4304' content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:35:59 GMT + - Wed, 27 Jan 2021 08:25:51 GMT expires: - '-1' pragma: @@ -1867,7 +1773,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31995 + - Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31975 status: code: 200 message: OK @@ -1885,15 +1791,15 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2020-12-19T06:30:14Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1902,7 +1808,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:36:00 GMT + - Wed, 27 Jan 2021 08:25:51 GMT expires: - '-1' pragma: @@ -1936,7 +1842,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1?api-version=2020-06-01 response: @@ -1947,10 +1853,10 @@ interactions: \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\"\r\n \ },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"managedDisk\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_b74ed30eec49420fbdc08be922329561\"\r\n + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_38f91102730646bd8468bbf4ee313369\"\r\n \ },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": - 0,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_b6368e1d474540de9c93de50424fd4ed\"\r\n + 0,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_898f64627d8a4b0ab9fe3e4e2a86b557\"\r\n \ },\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Premium_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"hyperVGeneration\": \"V1\"\r\n }\r\n}" @@ -1958,7 +1864,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/6b5a664e-61a5-4d55-8d32-b8bed996f7c0?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/cd104214-003f-4dd3-8046-4e9ef598a8b7?api-version=2020-06-01 cache-control: - no-cache content-length: @@ -1966,7 +1872,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:36:01 GMT + - Wed, 27 Jan 2021 08:25:58 GMT expires: - '-1' pragma: @@ -1999,14 +1905,14 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/6b5a664e-61a5-4d55-8d32-b8bed996f7c0?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/cd104214-003f-4dd3-8046-4e9ef598a8b7?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T06:36:01.7206357+00:00\",\r\n \"endTime\": - \"2020-12-19T06:36:06.8145998+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"6b5a664e-61a5-4d55-8d32-b8bed996f7c0\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:25:57.0524431+00:00\",\r\n \"endTime\": + \"2021-01-27T08:26:02.3495514+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"cd104214-003f-4dd3-8046-4e9ef598a8b7\"\r\n}" headers: cache-control: - no-cache @@ -2015,7 +1921,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:36:31 GMT + - Wed, 27 Jan 2021 08:26:29 GMT expires: - '-1' pragma: @@ -2032,7 +1938,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29986 + - Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29977 status: code: 200 message: OK @@ -2050,7 +1956,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1?api-version=2020-06-01 response: @@ -2061,11 +1967,11 @@ interactions: \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\"\r\n \ },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"diskSizeGB\": - 30,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_b74ed30eec49420fbdc08be922329561\"\r\n + 30,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_38f91102730646bd8468bbf4ee313369\"\r\n \ },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"diskSizeGB\": 10,\r\n \"managedDisk\": {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_b6368e1d474540de9c93de50424fd4ed\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_898f64627d8a4b0ab9fe3e4e2a86b557\"\r\n \ },\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Premium_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\r\n }\r\n}" @@ -2077,7 +1983,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:36:31 GMT + - Wed, 27 Jan 2021 08:26:29 GMT expires: - '-1' pragma: @@ -2113,15 +2019,15 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2020-12-19T06:30:14Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2130,7 +2036,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:36:32 GMT + - Wed, 27 Jan 2021 08:26:30 GMT expires: - '-1' pragma: @@ -2165,9 +2071,9 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"1.1.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2\",\r\n @@ -2176,21 +2082,21 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-12-19T06:36:34.596812+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-01-27T08:26:36.7417719+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n \ }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e1bf262d-eb11-4dfd-8346-51e195cc275c?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/07a29d58-1c1a-43c6-8125-f4e1b7cf6a0b?api-version=2020-09-30 cache-control: - no-cache content-length: - - '1074' + - '1075' content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:36:34 GMT + - Wed, 27 Jan 2021 08:26:38 GMT expires: - '-1' pragma: @@ -2203,9 +2109,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1199 + - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1197 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1193' status: code: 201 message: Created @@ -2224,64 +2130,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e1bf262d-eb11-4dfd-8346-51e195cc275c?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2020-12-19T06:36:34.5030612+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"e1bf262d-eb11-4dfd-8346-51e195cc275c\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Sat, 19 Dec 2020 06:37:34 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4188 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version create - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image - --replica-count - User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e1bf262d-eb11-4dfd-8346-51e195cc275c?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/07a29d58-1c1a-43c6-8125-f4e1b7cf6a0b?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T06:36:34.5030612+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"e1bf262d-eb11-4dfd-8346-51e195cc275c\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:26:36.7417719+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"07a29d58-1c1a-43c6-8125-f4e1b7cf6a0b\"\r\n}" headers: cache-control: - no-cache @@ -2290,7 +2145,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:38:35 GMT + - Wed, 27 Jan 2021 08:27:38 GMT expires: - '-1' pragma: @@ -2307,7 +2162,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4187 + - Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;4158 status: code: 200 message: OK @@ -2326,13 +2181,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e1bf262d-eb11-4dfd-8346-51e195cc275c?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/07a29d58-1c1a-43c6-8125-f4e1b7cf6a0b?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T06:36:34.5030612+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"e1bf262d-eb11-4dfd-8346-51e195cc275c\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:26:36.7417719+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"07a29d58-1c1a-43c6-8125-f4e1b7cf6a0b\"\r\n}" headers: cache-control: - no-cache @@ -2341,7 +2196,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:39:35 GMT + - Wed, 27 Jan 2021 08:28:39 GMT expires: - '-1' pragma: @@ -2358,7 +2213,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4185 + - Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;4154 status: code: 200 message: OK @@ -2377,13 +2232,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e1bf262d-eb11-4dfd-8346-51e195cc275c?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/07a29d58-1c1a-43c6-8125-f4e1b7cf6a0b?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T06:36:34.5030612+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"e1bf262d-eb11-4dfd-8346-51e195cc275c\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:26:36.7417719+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"07a29d58-1c1a-43c6-8125-f4e1b7cf6a0b\"\r\n}" headers: cache-control: - no-cache @@ -2392,7 +2247,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:40:35 GMT + - Wed, 27 Jan 2021 08:29:41 GMT expires: - '-1' pragma: @@ -2409,7 +2264,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4183 + - Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;4150 status: code: 200 message: OK @@ -2428,13 +2283,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e1bf262d-eb11-4dfd-8346-51e195cc275c?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/07a29d58-1c1a-43c6-8125-f4e1b7cf6a0b?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T06:36:34.5030612+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"e1bf262d-eb11-4dfd-8346-51e195cc275c\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:26:36.7417719+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"07a29d58-1c1a-43c6-8125-f4e1b7cf6a0b\"\r\n}" headers: cache-control: - no-cache @@ -2443,7 +2298,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:41:35 GMT + - Wed, 27 Jan 2021 08:30:42 GMT expires: - '-1' pragma: @@ -2460,7 +2315,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4181 + - Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4146 status: code: 200 message: OK @@ -2479,13 +2334,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e1bf262d-eb11-4dfd-8346-51e195cc275c?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/07a29d58-1c1a-43c6-8125-f4e1b7cf6a0b?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T06:36:34.5030612+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"e1bf262d-eb11-4dfd-8346-51e195cc275c\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:26:36.7417719+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"07a29d58-1c1a-43c6-8125-f4e1b7cf6a0b\"\r\n}" headers: cache-control: - no-cache @@ -2494,7 +2349,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:42:35 GMT + - Wed, 27 Jan 2021 08:31:42 GMT expires: - '-1' pragma: @@ -2511,7 +2366,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4179 + - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4143 status: code: 200 message: OK @@ -2530,13 +2385,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e1bf262d-eb11-4dfd-8346-51e195cc275c?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/07a29d58-1c1a-43c6-8125-f4e1b7cf6a0b?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T06:36:34.5030612+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"e1bf262d-eb11-4dfd-8346-51e195cc275c\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:26:36.7417719+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"07a29d58-1c1a-43c6-8125-f4e1b7cf6a0b\"\r\n}" headers: cache-control: - no-cache @@ -2545,7 +2400,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:43:35 GMT + - Wed, 27 Jan 2021 08:32:43 GMT expires: - '-1' pragma: @@ -2562,7 +2417,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4177 + - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4139 status: code: 200 message: OK @@ -2581,13 +2436,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e1bf262d-eb11-4dfd-8346-51e195cc275c?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/07a29d58-1c1a-43c6-8125-f4e1b7cf6a0b?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T06:36:34.5030612+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"e1bf262d-eb11-4dfd-8346-51e195cc275c\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:26:36.7417719+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"07a29d58-1c1a-43c6-8125-f4e1b7cf6a0b\"\r\n}" headers: cache-control: - no-cache @@ -2596,7 +2451,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:44:36 GMT + - Wed, 27 Jan 2021 08:33:43 GMT expires: - '-1' pragma: @@ -2613,7 +2468,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4175 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4134 status: code: 200 message: OK @@ -2632,13 +2487,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e1bf262d-eb11-4dfd-8346-51e195cc275c?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/07a29d58-1c1a-43c6-8125-f4e1b7cf6a0b?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T06:36:34.5030612+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"e1bf262d-eb11-4dfd-8346-51e195cc275c\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:26:36.7417719+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"07a29d58-1c1a-43c6-8125-f4e1b7cf6a0b\"\r\n}" headers: cache-control: - no-cache @@ -2647,7 +2502,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:45:36 GMT + - Wed, 27 Jan 2021 08:34:44 GMT expires: - '-1' pragma: @@ -2664,7 +2519,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4173 + - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4131 status: code: 200 message: OK @@ -2683,14 +2538,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e1bf262d-eb11-4dfd-8346-51e195cc275c?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/07a29d58-1c1a-43c6-8125-f4e1b7cf6a0b?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T06:36:34.5030612+00:00\",\r\n \"endTime\": - \"2020-12-19T06:45:37.1313442+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"e1bf262d-eb11-4dfd-8346-51e195cc275c\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:26:36.7417719+00:00\",\r\n \"endTime\": + \"2021-01-27T08:35:37.3385815+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"07a29d58-1c1a-43c6-8125-f4e1b7cf6a0b\"\r\n}" headers: cache-control: - no-cache @@ -2699,7 +2554,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:46:36 GMT + - Wed, 27 Jan 2021 08:35:45 GMT expires: - '-1' pragma: @@ -2716,7 +2571,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4171 + - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4129 status: code: 200 message: OK @@ -2735,9 +2590,9 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"1.1.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2\",\r\n @@ -2746,7 +2601,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-12-19T06:36:34.596812+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-01-27T08:26:36.7417719+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n \ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": @@ -2758,11 +2613,11 @@ interactions: cache-control: - no-cache content-length: - - '1333' + - '1334' content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:46:36 GMT + - Wed, 27 Jan 2021 08:35:45 GMT expires: - '-1' pragma: @@ -2779,7 +2634,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1995,Microsoft.Compute/GetGalleryImageVersion30Min;9993 + - Microsoft.Compute/GetGalleryImageVersion3Min;1997,Microsoft.Compute/GetGalleryImageVersion30Min;9979 status: code: 200 message: OK @@ -2797,22 +2652,22 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions?api-version=2020-09-30 response: body: string: '{"value":[{"name":"1.1.2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2","type":"Microsoft.Compute/galleries/images/versions","location":"eastus2","tags":{},"properties":{"publishingProfile":{"targetRegions":[{"name":"East - US 2","regionalReplicaCount":1,"storageAccountType":"Standard_LRS"}],"replicaCount":1,"excludeFromLatest":false,"publishedDate":"2020-12-19T06:36:34.596812+00:00","storageAccountType":"Standard_LRS"},"storageProfile":{"source":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1"},"osDiskImage":{"sizeInGB":30,"hostCaching":"ReadWrite","source":{}},"dataDiskImages":[{"lun":0,"sizeInGB":10,"hostCaching":"None"}]},"provisioningState":"Succeeded"}}]}' + US 2","regionalReplicaCount":1,"storageAccountType":"Standard_LRS"}],"replicaCount":1,"excludeFromLatest":false,"publishedDate":"2021-01-27T08:26:36.7417719+00:00","storageAccountType":"Standard_LRS"},"storageProfile":{"source":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1"},"osDiskImage":{"sizeInGB":30,"hostCaching":"ReadWrite","source":{}},"dataDiskImages":[{"lun":0,"sizeInGB":10,"hostCaching":"None"}]},"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '1010' + - '1011' content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:46:39 GMT + - Wed, 27 Jan 2021 08:35:48 GMT expires: - '-1' pragma: @@ -2824,39 +2679,41 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 311bb799-8689-4c36-842d-381b264d8354 - - f7233fa2-71c4-41bb-a1f5-fb4abf2279e1 - - 85e91592-0e95-4745-ba47-94c9ba40ad8b - - f3457c1a-75c5-4474-b284-0972614b1948 - - 1ba3afa3-afb4-4dc3-9de8-0ebfe8d5f644 - - 0b14d7d5-5b8b-46a6-8219-25b94f9af9b6 - - 7db38b8b-1a12-4d0a-939f-f219fc497e7b - - 8074cc5f-70cd-4f54-ab7d-30fc94323ca9 - - d4f976c1-3081-4c73-bd98-c76d9274beb6 - - 9a4e4fee-5667-45c5-b5c6-2dc7328c2506 - - 6abfd83d-a515-44f6-8660-8101a26f63f2 - - de69d2f1-1273-44ba-9813-ca16d798b79d - - ca80c05f-18fa-4d8a-a804-cb2d61c12cd9 - - 53febbd0-d3c4-44f5-98e2-c4a5bc90afe4 - - 34fd6163-55b8-40c3-a4f2-9782ba7175fc - - a965460b-a38e-47f0-a7b9-8b62947214e4 - - d126e47a-1d76-4b12-bfc4-e4196da1a492 - - 0ae2d8f0-1f57-44b2-a371-8f55734722cd - - 13b31322-26e5-4c4e-8df2-19eb5e9da197 - - 34c8c474-a2ae-4522-b11b-312772aeb05e - - fe0f9361-100c-4248-9199-e4cad421ecec - - e7194c36-09f0-4e79-a053-5cf48af20e7d - - a7ef4bc2-a2e9-4a89-86ac-173c037c065f - - 0c420b25-b40e-4682-8ce7-cbbf1f5a12ab - - f40b033e-0947-42dd-b157-26fb8112391a - - ab8c8fcb-dad2-44d0-bc4e-6380ae18077d - - a9b15584-bcae-4a71-aaff-0d3e5f7580e5 - - 861dc14a-ac1d-4b0b-b11f-aed5b2635b2c - - 4b72017c-bd75-453c-949c-c2874a3334fb - - d00d2fba-0aca-4631-96bb-859148a15b94 - - cfb9efce-1bb6-473a-89f4-3aab15153fa6 - - fc595653-1bb9-4a8d-b8d5-33784b683335 - - 87c9d246-8215-4eb5-993a-501823578894 + - af0ea797-3afe-4826-9f18-27c390b7e8e6 + - d4d654c2-a433-4c17-ac58-5e86032f7316 + - 863036db-11ac-40a7-b141-81d0b09a57f1 + - 5ab07342-dabe-4028-a6fd-690571a6f278 + - a6e46b6e-44e2-4733-8dea-2044756288ca + - 6bbc22a8-a467-4802-8ee2-890294bd7b81 + - b9fdcaef-268c-4ddc-9838-9fa4266ab45e + - e1d1aba3-760e-44bc-809d-483bb7a31d91 + - 66b28a3e-0024-4586-a3ea-52fd2ccb3271 + - 95d4e74f-0b5a-4e92-8dea-f5b4f6bbb77a + - 058f4608-821d-4c20-8861-2f9b6dd66aef + - 151c86a5-97d1-4b65-88c3-fc6cf077eeb8 + - bcc5d08f-2b98-4166-94c3-14a91029034b + - 46022b74-af19-495b-a03a-f0525bac0f92 + - 9c50c453-6731-4fa8-ace6-a2a0284dd47f + - e52bc939-be43-45f9-a944-cb9b7d0966a3 + - 46bcdc14-429b-4b08-ad72-343b1831b3db + - 8e606af2-19e2-4d89-9493-0b3f77fd787d + - 5ac47bce-ffa3-4f23-9c80-32314308dde8 + - f9779049-0892-42b1-aa0b-69090369376e + - b5298db9-c3ef-458a-8c74-a05494e12297 + - adcd65d4-0696-4695-ba3b-70947f18226b + - cade8833-bfa2-4b38-8926-c9ecbb1c87c6 + - 355d7686-1330-4f00-9b58-acf4fd7e47c7 + - 59f860f6-3997-4cd5-9894-3066a9f26a35 + - 39a2c2a9-0182-4d84-a05c-462702dc8c16 + - 1b0d4a94-2851-4ff4-98e2-45ba7d771ef8 + - 0253f2b7-447a-41fa-b0a9-67b3c938e007 + - cd1ba071-8aa2-4b68-9c33-7fb72ad745f8 + - 7b7d3f9d-4315-4d7c-b533-9e1c09753a7a + - 4dbd6349-5a76-42c3-9200-e47f61695132 + - 132ec02b-fd70-4e59-9f63-5b58924f41ed + - dc2b3ddd-6449-4818-83ba-fc3333002913 + - c935b032-42d2-4cdb-b6f0-23195b00a910 + - 27b62f82-0779-45ed-98ff-9c6c61dd0a52 status: code: 200 message: OK @@ -2874,9 +2731,9 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"1.1.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2\",\r\n @@ -2885,7 +2742,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-12-19T06:36:34.596812+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-01-27T08:26:36.7417719+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n \ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": @@ -2897,11 +2754,11 @@ interactions: cache-control: - no-cache content-length: - - '1333' + - '1334' content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:46:39 GMT + - Wed, 27 Jan 2021 08:35:47 GMT expires: - '-1' pragma: @@ -2918,7 +2775,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1994,Microsoft.Compute/GetGalleryImageVersion30Min;9992 + - Microsoft.Compute/GetGalleryImageVersion3Min;1996,Microsoft.Compute/GetGalleryImageVersion30Min;9978 status: code: 200 message: OK @@ -2937,9 +2794,9 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"1.1.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2\",\r\n @@ -2948,7 +2805,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-12-19T06:36:34.596812+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-01-27T08:26:36.7417719+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n \ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": @@ -2960,11 +2817,11 @@ interactions: cache-control: - no-cache content-length: - - '1333' + - '1334' content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:46:39 GMT + - Wed, 27 Jan 2021 08:35:48 GMT expires: - '-1' pragma: @@ -2981,7 +2838,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1993,Microsoft.Compute/GetGalleryImageVersion30Min;9991 + - Microsoft.Compute/GetGalleryImageVersion3Min;1995,Microsoft.Compute/GetGalleryImageVersion30Min;9977 status: code: 200 message: OK @@ -3008,9 +2865,9 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"1.1.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2\",\r\n @@ -3021,7 +2878,7 @@ interactions: \"Standard_LRS\"\r\n },\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 2,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 2,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-12-19T06:36:34.596812+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-01-27T08:26:36.7417719+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n \ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": @@ -3031,15 +2888,15 @@ interactions: \ \"provisioningState\": \"Updating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0afd4e75-43b7-455b-9b38-3f982b75a32e?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/4b128a74-9e3d-42b4-a790-18116581977a?api-version=2020-09-30 cache-control: - no-cache content-length: - - '1473' + - '1474' content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:46:41 GMT + - Wed, 27 Jan 2021 08:35:49 GMT expires: - '-1' pragma: @@ -3056,60 +2913,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1198 + - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1196 x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version update - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions - --replica-count - User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0afd4e75-43b7-455b-9b38-3f982b75a32e?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2020-12-19T06:46:41.3524634+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"0afd4e75-43b7-455b-9b38-3f982b75a32e\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Sat, 19 Dec 2020 06:47:41 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4170 + - '1195' status: code: 200 message: OK @@ -3128,13 +2934,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0afd4e75-43b7-455b-9b38-3f982b75a32e?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/4b128a74-9e3d-42b4-a790-18116581977a?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T06:46:41.3524634+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"0afd4e75-43b7-455b-9b38-3f982b75a32e\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:35:49.9480323+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"4b128a74-9e3d-42b4-a790-18116581977a\"\r\n}" headers: cache-control: - no-cache @@ -3143,7 +2949,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:48:41 GMT + - Wed, 27 Jan 2021 08:36:50 GMT expires: - '-1' pragma: @@ -3160,7 +2966,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4167 + - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4127 status: code: 200 message: OK @@ -3179,13 +2985,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0afd4e75-43b7-455b-9b38-3f982b75a32e?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/4b128a74-9e3d-42b4-a790-18116581977a?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T06:46:41.3524634+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"0afd4e75-43b7-455b-9b38-3f982b75a32e\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:35:49.9480323+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"4b128a74-9e3d-42b4-a790-18116581977a\"\r\n}" headers: cache-control: - no-cache @@ -3194,7 +3000,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:49:41 GMT + - Wed, 27 Jan 2021 08:37:51 GMT expires: - '-1' pragma: @@ -3211,7 +3017,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4166 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4125 status: code: 200 message: OK @@ -3230,13 +3036,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0afd4e75-43b7-455b-9b38-3f982b75a32e?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/4b128a74-9e3d-42b4-a790-18116581977a?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T06:46:41.3524634+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"0afd4e75-43b7-455b-9b38-3f982b75a32e\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:35:49.9480323+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"4b128a74-9e3d-42b4-a790-18116581977a\"\r\n}" headers: cache-control: - no-cache @@ -3245,7 +3051,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:50:42 GMT + - Wed, 27 Jan 2021 08:38:52 GMT expires: - '-1' pragma: @@ -3262,7 +3068,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4164 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4123 status: code: 200 message: OK @@ -3281,13 +3087,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0afd4e75-43b7-455b-9b38-3f982b75a32e?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/4b128a74-9e3d-42b4-a790-18116581977a?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T06:46:41.3524634+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"0afd4e75-43b7-455b-9b38-3f982b75a32e\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:35:49.9480323+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"4b128a74-9e3d-42b4-a790-18116581977a\"\r\n}" headers: cache-control: - no-cache @@ -3296,7 +3102,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:51:42 GMT + - Wed, 27 Jan 2021 08:39:53 GMT expires: - '-1' pragma: @@ -3313,7 +3119,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4162 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4121 status: code: 200 message: OK @@ -3332,13 +3138,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0afd4e75-43b7-455b-9b38-3f982b75a32e?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/4b128a74-9e3d-42b4-a790-18116581977a?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T06:46:41.3524634+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"0afd4e75-43b7-455b-9b38-3f982b75a32e\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:35:49.9480323+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"4b128a74-9e3d-42b4-a790-18116581977a\"\r\n}" headers: cache-control: - no-cache @@ -3347,7 +3153,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:52:43 GMT + - Wed, 27 Jan 2021 08:40:53 GMT expires: - '-1' pragma: @@ -3364,7 +3170,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4160 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4119 status: code: 200 message: OK @@ -3383,13 +3189,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0afd4e75-43b7-455b-9b38-3f982b75a32e?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/4b128a74-9e3d-42b4-a790-18116581977a?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T06:46:41.3524634+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"0afd4e75-43b7-455b-9b38-3f982b75a32e\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:35:49.9480323+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"4b128a74-9e3d-42b4-a790-18116581977a\"\r\n}" headers: cache-control: - no-cache @@ -3398,7 +3204,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:53:43 GMT + - Wed, 27 Jan 2021 08:41:55 GMT expires: - '-1' pragma: @@ -3415,7 +3221,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4158 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4117 status: code: 200 message: OK @@ -3434,13 +3240,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0afd4e75-43b7-455b-9b38-3f982b75a32e?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/4b128a74-9e3d-42b4-a790-18116581977a?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T06:46:41.3524634+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"0afd4e75-43b7-455b-9b38-3f982b75a32e\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:35:49.9480323+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"4b128a74-9e3d-42b4-a790-18116581977a\"\r\n}" headers: cache-control: - no-cache @@ -3449,7 +3255,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:54:43 GMT + - Wed, 27 Jan 2021 08:42:56 GMT expires: - '-1' pragma: @@ -3466,7 +3272,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4156 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4115 status: code: 200 message: OK @@ -3485,13 +3291,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0afd4e75-43b7-455b-9b38-3f982b75a32e?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/4b128a74-9e3d-42b4-a790-18116581977a?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T06:46:41.3524634+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"0afd4e75-43b7-455b-9b38-3f982b75a32e\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:35:49.9480323+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"4b128a74-9e3d-42b4-a790-18116581977a\"\r\n}" headers: cache-control: - no-cache @@ -3500,7 +3306,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:55:44 GMT + - Wed, 27 Jan 2021 08:43:56 GMT expires: - '-1' pragma: @@ -3517,7 +3323,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4154 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4113 status: code: 200 message: OK @@ -3536,13 +3342,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0afd4e75-43b7-455b-9b38-3f982b75a32e?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/4b128a74-9e3d-42b4-a790-18116581977a?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T06:46:41.3524634+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"0afd4e75-43b7-455b-9b38-3f982b75a32e\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:35:49.9480323+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"4b128a74-9e3d-42b4-a790-18116581977a\"\r\n}" headers: cache-control: - no-cache @@ -3551,7 +3357,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:56:43 GMT + - Wed, 27 Jan 2021 08:44:57 GMT expires: - '-1' pragma: @@ -3568,7 +3374,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4152 + - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4111 status: code: 200 message: OK @@ -3587,13 +3393,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0afd4e75-43b7-455b-9b38-3f982b75a32e?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/4b128a74-9e3d-42b4-a790-18116581977a?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T06:46:41.3524634+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"0afd4e75-43b7-455b-9b38-3f982b75a32e\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:35:49.9480323+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"4b128a74-9e3d-42b4-a790-18116581977a\"\r\n}" headers: cache-control: - no-cache @@ -3602,7 +3408,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:57:44 GMT + - Wed, 27 Jan 2021 08:45:57 GMT expires: - '-1' pragma: @@ -3619,7 +3425,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4150 + - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4117 status: code: 200 message: OK @@ -3638,13 +3444,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0afd4e75-43b7-455b-9b38-3f982b75a32e?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/4b128a74-9e3d-42b4-a790-18116581977a?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T06:46:41.3524634+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"0afd4e75-43b7-455b-9b38-3f982b75a32e\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:35:49.9480323+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"4b128a74-9e3d-42b4-a790-18116581977a\"\r\n}" headers: cache-control: - no-cache @@ -3653,7 +3459,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:58:44 GMT + - Wed, 27 Jan 2021 08:46:57 GMT expires: - '-1' pragma: @@ -3670,7 +3476,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4148 + - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4115 status: code: 200 message: OK @@ -3689,14 +3495,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0afd4e75-43b7-455b-9b38-3f982b75a32e?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/4b128a74-9e3d-42b4-a790-18116581977a?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T06:46:41.3524634+00:00\",\r\n \"endTime\": - \"2020-12-19T06:58:58.2379085+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"0afd4e75-43b7-455b-9b38-3f982b75a32e\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:35:49.9480323+00:00\",\r\n \"endTime\": + \"2021-01-27T08:47:20.9363941+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"4b128a74-9e3d-42b4-a790-18116581977a\"\r\n}" headers: cache-control: - no-cache @@ -3705,7 +3511,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:59:44 GMT + - Wed, 27 Jan 2021 08:47:58 GMT expires: - '-1' pragma: @@ -3722,7 +3528,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4146 + - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4113 status: code: 200 message: OK @@ -3741,9 +3547,9 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"1.1.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2\",\r\n @@ -3754,7 +3560,7 @@ interactions: \"Standard_LRS\"\r\n },\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 2,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 2,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-12-19T06:36:34.596812+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-01-27T08:26:36.7417719+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n \ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": @@ -3766,11 +3572,11 @@ interactions: cache-control: - no-cache content-length: - - '1474' + - '1475' content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:59:44 GMT + - Wed, 27 Jan 2021 08:47:58 GMT expires: - '-1' pragma: @@ -3787,7 +3593,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9988 + - Microsoft.Compute/GetGalleryImageVersion3Min;1998,Microsoft.Compute/GetGalleryImageVersion30Min;9972 status: code: 200 message: OK @@ -3805,15 +3611,15 @@ interactions: ParameterSetName: - -g -n --enable-purge-protection --enable-soft-delete User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2020-12-19T06:30:14Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3822,7 +3628,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:59:45 GMT + - Wed, 27 Jan 2021 08:47:59 GMT expires: - '-1' pragma: @@ -3846,7 +3652,7 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-graphrbac/0.60.0 Azure-SDK-For-Python accept-language: - en-US @@ -3854,33 +3660,32 @@ interactions: uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/me?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"5310aa29-9a44-4cbc-adb3-6347a539537e","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[],"assignedPlans":[],"city":null,"companyName":null,"consentProvidedForMinor":null,"country":null,"createdDateTime":"2020-12-16T18:59:47Z","creationType":null,"department":null,"dirSyncEnabled":null,"displayName":"Dania - Etienne","employeeId":null,"facsimileTelephoneNumber":null,"givenName":"Dania","immutableId":null,"isCompromised":null,"jobTitle":null,"lastDirSyncTime":null,"legalAgeGroupClassification":null,"mail":null,"mailNickname":"detienne001_gmail.com#EXT#","mobile":null,"onPremisesDistinguishedName":null,"onPremisesSecurityIdentifier":null,"otherMails":["detienne001@gmail.com"],"passwordPolicies":null,"passwordProfile":null,"physicalDeliveryOfficeName":null,"postalCode":null,"preferredLanguage":"en","provisionedPlans":[],"provisioningErrors":[],"proxyAddresses":[],"refreshTokensValidFromDateTime":"2020-12-16T18:59:47Z","showInAddressList":null,"signInNames":[],"sipProxyAddress":null,"state":null,"streetAddress":null,"surname":"Etienne","telephoneNumber":null,"thumbnailPhoto@odata.mediaEditLink":"directoryObjects/5310aa29-9a44-4cbc-adb3-6347a539537e/Microsoft.DirectoryServices.User/thumbnailPhoto","usageLocation":"US","userIdentities":[],"userPrincipalName":"detienne001_gmail.com#EXT#@detienne001gmail.onmicrosoft.com","userState":null,"userStateChangedOn":null,"userType":"Member"}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"181c08fa-7ac8-48a6-a869-342ab74566a4","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[],"assignedPlans":[],"city":null,"companyName":null,"consentProvidedForMinor":null,"country":null,"createdDateTime":"2020-07-01T06:20:59Z","creationType":null,"department":null,"dirSyncEnabled":null,"displayName":"azureclitest","employeeId":null,"facsimileTelephoneNumber":null,"givenName":null,"immutableId":null,"isCompromised":null,"jobTitle":null,"lastDirSyncTime":null,"legalAgeGroupClassification":null,"mail":null,"mailNickname":"azureclitest","mobile":null,"onPremisesDistinguishedName":null,"onPremisesSecurityIdentifier":null,"otherMails":[],"passwordPolicies":null,"passwordProfile":null,"physicalDeliveryOfficeName":null,"postalCode":null,"preferredLanguage":"en-US","provisionedPlans":[],"provisioningErrors":[],"proxyAddresses":[],"refreshTokensValidFromDateTime":"2021-01-15T06:35:45Z","showInAddressList":null,"signInNames":[],"sipProxyAddress":null,"state":null,"streetAddress":null,"surname":null,"telephoneNumber":null,"thumbnailPhoto@odata.mediaEditLink":"directoryObjects/181c08fa-7ac8-48a6-a869-342ab74566a4/Microsoft.DirectoryServices.User/thumbnailPhoto","usageLocation":null,"userIdentities":[],"userPrincipalName":"azureclitest@azuresdkteam.onmicrosoft.com","userState":null,"userStateChangedOn":null,"userType":"Member"}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '1628' + - '1567' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Sat, 19 Dec 2020 06:59:47 GMT + - Wed, 27 Jan 2021 08:48:01 GMT duration: - - '367326' + - '2766667' expires: - '-1' ocp-aad-diagnostics-server-name: - - GlkybnsV9uBghg0cQ2pPuohZkGc8oYrn/4rXbfcdAf8= + - sJ1Buv2k4RK8W31iECo8mAj5SrrAnlmawQNaa8bAJAI= ocp-aad-session-key: - - iUG949XQ_PUMz5-t47yOoDhPiUOukJ2MsVmOrma4zyKSbnW9QLIUJ-3u7QEMjSabT7Zcjs0nsDLNes4uDz0Jt8Wz8IUEWGfBcePhFqKSXYwIH-7rUtYCx7yJSXAISYsf.xgHsmWw6dvebCx1VVw2G5bC9aCaU1DHZZmCfmpCrHm0 + - g25_e3Oy2QRiosQmJsnP7-q8W49T7a_kQMxDQcXcLa4YWG8iLHiQQnyyaZlX_ANcA64aHcR2ywNz1oiIvt-khHt7Fp9siiWzzlW1wKPpMirlp7wOlIsok43yAivV_PSu.UwYQ5b5Bd2v-g2s0OrgpHuUnEGZVEf91vi47Wx8xCKQ pragma: - no-cache request-id: - - bd62d42b-c839-4388-bc17-04e425856ac1 + - 9d550da8-8498-46e3-af2f-46d553d76b09 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -3895,9 +3700,9 @@ interactions: code: 200 message: OK - request: - body: '{"location": "eastus2", "properties": {"tenantId": "01a4073e-87c8-47cd-aafc-1439b4b5ea2c", + body: '{"location": "eastus2", "properties": {"tenantId": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", "sku": {"family": "A", "name": "standard"}, "accessPolicies": [{"tenantId": - "01a4073e-87c8-47cd-aafc-1439b4b5ea2c", "objectId": "5310aa29-9a44-4cbc-adb3-6347a539537e", + "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", "objectId": "181c08fa-7ac8-48a6-a869-342ab74566a4", "permissions": {"keys": ["get", "create", "delete", "list", "update", "import", "backup", "restore", "recover"], "secrets": ["get", "list", "set", "delete", "backup", "restore", "recover"], "certificates": ["get", "list", "delete", "create", @@ -3922,12 +3727,12 @@ interactions: ParameterSetName: - -g -n --enable-purge-protection --enable-soft-delete User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003?api-version=2019-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003","name":"vault-000003","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"01a4073e-87c8-47cd-aafc-1439b4b5ea2c","accessPolicies":[{"tenantId":"01a4073e-87c8-47cd-aafc-1439b4b5ea2c","objectId":"5310aa29-9a44-4cbc-adb3-6347a539537e","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://vault-000003.vault.azure.net","provisioningState":"RegisteringDns"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003","name":"vault-000003","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"181c08fa-7ac8-48a6-a869-342ab74566a4","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://vault-000003.vault.azure.net","provisioningState":"RegisteringDns"}}' headers: cache-control: - no-cache @@ -3936,7 +3741,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:59:50 GMT + - Wed, 27 Jan 2021 08:48:11 GMT expires: - '-1' pragma: @@ -3954,9 +3759,9 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.163.0 + - 1.1.204.0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1194' x-powered-by: - ASP.NET status: @@ -3976,12 +3781,12 @@ interactions: ParameterSetName: - -g -n --enable-purge-protection --enable-soft-delete User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003?api-version=2019-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003","name":"vault-000003","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"01a4073e-87c8-47cd-aafc-1439b4b5ea2c","accessPolicies":[{"tenantId":"01a4073e-87c8-47cd-aafc-1439b4b5ea2c","objectId":"5310aa29-9a44-4cbc-adb3-6347a539537e","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://vault-000003.vault.azure.net/","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003","name":"vault-000003","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"181c08fa-7ac8-48a6-a869-342ab74566a4","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://vault-000003.vault.azure.net/","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3990,7 +3795,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 07:00:20 GMT + - Wed, 27 Jan 2021 08:48:41 GMT expires: - '-1' pragma: @@ -4008,7 +3813,7 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.163.0 + - 1.1.204.0 x-powered-by: - ASP.NET status: @@ -4028,7 +3833,7 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-keyvault/7.0 Azure-SDK-For-Python accept-language: - en-US @@ -4046,7 +3851,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 07:00:21 GMT + - Wed, 27 Jan 2021 08:48:44 GMT expires: - '-1' pragma: @@ -4054,16 +3859,16 @@ interactions: strict-transport-security: - max-age=31536000;includeSubDomains www-authenticate: - - Bearer authorization="https://login.windows.net/01a4073e-87c8-47cd-aafc-1439b4b5ea2c", + - Bearer authorization="https://login.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", resource="https://vault.azure.net" x-content-type-options: - nosniff x-ms-keyvault-network-info: - - conn_type=Ipv4;addr=98.254.139.109;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=167.220.255.88;act_addr_fam=InterNetwork; x-ms-keyvault-region: - eastus2 x-ms-keyvault-service-version: - - 1.2.99.0 + - 1.2.139.0 x-powered-by: - ASP.NET status: @@ -4083,7 +3888,7 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-keyvault/7.0 Azure-SDK-For-Python accept-language: - en-US @@ -4091,7 +3896,7 @@ interactions: uri: https://vault-000003.vault.azure.net/keys/key-000004/create?api-version=7.0 response: body: - string: '{"key":{"kid":"https://vault-000003.vault.azure.net/keys/key-000004/068bdb63a4b94b7ab1dbae1fc2843f6a","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"xUWM8gu4NnoTcSpAuXZLxXMM2l56GeevAoeIKzFC1_354svni3C5DOrE_4IVV51bO9oewrh-s-U8nYRwXvsm70ADu_h5VA7mJho-vYkTaJruOLII1z-P8YA_CK5pjHypu1t3yrwc3tbOy4VAicX-QC9S7ZrDMpA9EfICoEM7Ja89F_OXJ-xn25flEaxE-u8t02S2wDH8IKTR7BFWSt_QGVTO_Im3sp7-CbefrfupKfgMeOzjAVgFkqiDQ6BJhyS_nVwUoc-DExCZnRPOlpyGjGt9BZ0Xe87AX-Q_bZAzlUGp0sFM5-IaQfC-4BNhXOvHJrTLEBculCEiqBJdJ-SUMQ","e":"AQAB"},"attributes":{"enabled":true,"created":1608361222,"updated":1608361222,"recoveryLevel":"Recoverable"}}' + string: '{"key":{"kid":"https://vault-000003.vault.azure.net/keys/key-000004/dc8f0153c1184c2c94162ce49190a149","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"vhcLe1ffKe56KG5IMNHiHMI49FZcVCU7Jmu_dfXe-RnQ6pPnrc9Vy_7KJ_v1SA-Qi_MJ52TaChgRpFgnuCf4u-kkEUWad8hIlBELhn-g4CGDwzLFvkWbk1YT2-9Qy_LQAMmCzYtSKP3tikF1i0zJ9Ydkp3vAb0EwTf_1w-obk_VfvwlU7gcvPxuFk7f_du6eBz65XkgLTQV4l5hgFyj2ZsteHMnfbEEGZcEwomYxWi5-cYyZcW2_Qsib4I5R0D7oepWowrEanbOgdSJdBpstvVMjwmulU8CVVN3lNjFQhVpRvI99yNBzuzZtKII015JCispxNXiTBxb3nuB73OtlvQ","e":"AQAB"},"attributes":{"enabled":true,"created":1611737326,"updated":1611737326,"recoveryLevel":"Recoverable"}}' headers: cache-control: - no-cache @@ -4100,7 +3905,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 07:00:21 GMT + - Wed, 27 Jan 2021 08:48:46 GMT expires: - '-1' pragma: @@ -4110,11 +3915,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - conn_type=Ipv4;addr=98.254.139.109;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=167.220.255.88;act_addr_fam=InterNetwork; x-ms-keyvault-region: - eastus2 x-ms-keyvault-service-version: - - 1.2.99.0 + - 1.2.139.0 x-powered-by: - ASP.NET status: @@ -4134,15 +3939,15 @@ interactions: ParameterSetName: - -g -n --key-url --source-vault User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2020-12-19T06:30:14Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -4151,7 +3956,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 07:00:22 GMT + - Wed, 27 Jan 2021 08:48:46 GMT expires: - '-1' pragma: @@ -4168,7 +3973,7 @@ interactions: - request: body: '{"location": "eastus2", "identity": {"type": "SystemAssigned"}, "properties": {"activeKey": {"sourceVault": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003"}, - "keyUrl": "https://vault-000003.vault.azure.net/keys/key-000004/068bdb63a4b94b7ab1dbae1fc2843f6a"}}}' + "keyUrl": "https://vault-000003.vault.azure.net/keys/key-000004/dc8f0153c1184c2c94162ce49190a149"}}}' headers: Accept: - application/json @@ -4185,7 +3990,7 @@ interactions: ParameterSetName: - -g -n --key-url --source-vault User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005?api-version=2020-06-30 response: @@ -4193,11 +3998,11 @@ interactions: string: "{\r\n \"location\": \"eastus2\",\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"activeKey\": {\r\n \ \"sourceVault\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003\"\r\n - \ },\r\n \"keyUrl\": \"https://vault-000003.vault.azure.net/keys/key-000004/068bdb63a4b94b7ab1dbae1fc2843f6a\"\r\n + \ },\r\n \"keyUrl\": \"https://vault-000003.vault.azure.net/keys/key-000004/dc8f0153c1184c2c94162ce49190a149\"\r\n \ },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/2cedf3e3-4bf6-4900-8a1b-2541ddcd062a?api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/664a3d51-9e4a-412f-9cce-f10789015223?api-version=2020-06-30 cache-control: - no-cache content-length: @@ -4205,11 +4010,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 07:00:27 GMT + - Wed, 27 Jan 2021 08:48:54 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/2cedf3e3-4bf6-4900-8a1b-2541ddcd062a?monitor=true&api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/664a3d51-9e4a-412f-9cce-f10789015223?monitor=true&api-version=2020-06-30 pragma: - no-cache server: @@ -4222,7 +4027,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/HighCostDiskEncryptionSet3Min;99,Microsoft.Compute/HighCostDiskEncryptionSet30Min;299 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 202 message: Accepted @@ -4240,15 +4045,15 @@ interactions: ParameterSetName: - -g -n --key-url --source-vault User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/2cedf3e3-4bf6-4900-8a1b-2541ddcd062a?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/664a3d51-9e4a-412f-9cce-f10789015223?api-version=2020-06-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T07:00:27.6951607+00:00\",\r\n \"endTime\": - \"2020-12-19T07:00:27.9295461+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"properties\": {\r\n \"output\": {\"name\":\"des1-000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\",\"type\":\"Microsoft.Compute/diskEncryptionSets\",\"location\":\"eastus2\",\"identity\":{\"type\":\"SystemAssigned\",\"principalId\":\"ebd82890-1ce5-4d04-af1a-ac6497b93c6c\",\"tenantId\":\"01a4073e-87c8-47cd-aafc-1439b4b5ea2c\"},\"properties\":{\"activeKey\":{\"sourceVault\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003\"},\"keyUrl\":\"https://vault-000003.vault.azure.net/keys/key-000004/068bdb63a4b94b7ab1dbae1fc2843f6a\"},\"encryptionType\":\"EncryptionAtRestWithCustomerKey\",\"provisioningState\":\"Succeeded\"}}\r\n - \ },\r\n \"name\": \"2cedf3e3-4bf6-4900-8a1b-2541ddcd062a\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:48:54.8488025+00:00\",\r\n \"endTime\": + \"2021-01-27T08:48:54.8800308+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"properties\": {\r\n \"output\": {\"name\":\"des1-000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\",\"type\":\"Microsoft.Compute/diskEncryptionSets\",\"location\":\"eastus2\",\"identity\":{\"type\":\"SystemAssigned\",\"principalId\":\"b6eeb1c2-44af-43ac-9c76-c54e5179bede\",\"tenantId\":\"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"},\"properties\":{\"activeKey\":{\"sourceVault\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003\"},\"keyUrl\":\"https://vault-000003.vault.azure.net/keys/key-000004/dc8f0153c1184c2c94162ce49190a149\"},\"encryptionType\":\"EncryptionAtRestWithCustomerKey\",\"provisioningState\":\"Succeeded\"}}\r\n + \ },\r\n \"name\": \"664a3d51-9e4a-412f-9cce-f10789015223\"\r\n}" headers: cache-control: - no-cache @@ -4257,7 +4062,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 07:00:58 GMT + - Wed, 27 Jan 2021 08:49:24 GMT expires: - '-1' pragma: @@ -4274,7 +4079,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49998,Microsoft.Compute/GetOperation30Min;399948 + - Microsoft.Compute/GetOperation3Min;49998,Microsoft.Compute/GetOperation30Min;399873 status: code: 200 message: OK @@ -4292,7 +4097,7 @@ interactions: ParameterSetName: - -g -n --key-url --source-vault User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005?api-version=2020-06-30 response: @@ -4300,10 +4105,10 @@ interactions: string: "{\r\n \"name\": \"des1-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\",\r\n \ \"type\": \"Microsoft.Compute/diskEncryptionSets\",\r\n \"location\": \"eastus2\",\r\n \ \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": - \"ebd82890-1ce5-4d04-af1a-ac6497b93c6c\",\r\n \"tenantId\": \"01a4073e-87c8-47cd-aafc-1439b4b5ea2c\"\r\n + \"b6eeb1c2-44af-43ac-9c76-c54e5179bede\",\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n \ },\r\n \"properties\": {\r\n \"activeKey\": {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003\"\r\n - \ },\r\n \"keyUrl\": \"https://vault-000003.vault.azure.net/keys/key-000004/068bdb63a4b94b7ab1dbae1fc2843f6a\"\r\n + \ },\r\n \"keyUrl\": \"https://vault-000003.vault.azure.net/keys/key-000004/dc8f0153c1184c2c94162ce49190a149\"\r\n \ },\r\n \"encryptionType\": \"EncryptionAtRestWithCustomerKey\",\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: @@ -4314,7 +4119,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 07:00:58 GMT + - Wed, 27 Jan 2021 08:49:24 GMT expires: - '-1' pragma: @@ -4331,7 +4136,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14997,Microsoft.Compute/LowCostGet30Min;119991 + - Microsoft.Compute/LowCostGet3Min;14997,Microsoft.Compute/LowCostGet30Min;119899 status: code: 200 message: OK @@ -4349,7 +4154,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005?api-version=2020-06-30 response: @@ -4357,10 +4162,10 @@ interactions: string: "{\r\n \"name\": \"des1-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\",\r\n \ \"type\": \"Microsoft.Compute/diskEncryptionSets\",\r\n \"location\": \"eastus2\",\r\n \ \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": - \"ebd82890-1ce5-4d04-af1a-ac6497b93c6c\",\r\n \"tenantId\": \"01a4073e-87c8-47cd-aafc-1439b4b5ea2c\"\r\n + \"b6eeb1c2-44af-43ac-9c76-c54e5179bede\",\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n \ },\r\n \"properties\": {\r\n \"activeKey\": {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003\"\r\n - \ },\r\n \"keyUrl\": \"https://vault-000003.vault.azure.net/keys/key-000004/068bdb63a4b94b7ab1dbae1fc2843f6a\"\r\n + \ },\r\n \"keyUrl\": \"https://vault-000003.vault.azure.net/keys/key-000004/dc8f0153c1184c2c94162ce49190a149\"\r\n \ },\r\n \"encryptionType\": \"EncryptionAtRestWithCustomerKey\",\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: @@ -4371,7 +4176,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 07:00:59 GMT + - Wed, 27 Jan 2021 08:49:26 GMT expires: - '-1' pragma: @@ -4388,7 +4193,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14996,Microsoft.Compute/LowCostGet30Min;119990 + - Microsoft.Compute/LowCostGet3Min;14996,Microsoft.Compute/LowCostGet30Min;119898 status: code: 200 message: OK @@ -4406,21 +4211,21 @@ interactions: ParameterSetName: - -n --object-id --key-permissions User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003","name":"vault-000003","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azps-test-group/providers/Microsoft.KeyVault/vaults/azps-test-kv2","name":"azps-test-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azps-test-group/providers/Microsoft.KeyVault/vaults/azps-test-kv4","name":"azps-test-kv4","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bez-rg/providers/Microsoft.KeyVault/vaults/bezKV","name":"bezKV","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv1","name":"bim-kv1","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv5","name":"bim-kv5","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{"k1":"v1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkv2","name":"bimkv2","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/dogfood-env-pwd","name":"dogfood-env-pwd","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim_pl_test_rg/providers/Microsoft.KeyVault/vaults/bimkv-nr-test","name":"bimkv-nr-test","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim_pl_test_rg/providers/Microsoft.KeyVault/vaults/bimkv-nr-test2","name":"bimkv-nr-test2","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim_pl_test_rg/providers/Microsoft.KeyVault/vaults/bimkv-nr-test3","name":"bimkv-nr-test3","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim_pl_test_rg/providers/Microsoft.KeyVault/vaults/bimplkv","name":"bimplkv","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003","name":"vault-000003","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault1569","name":"vault1569","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/houk-test/providers/Microsoft.KeyVault/vaults/houk-vault","name":"houk-vault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.KeyVault/vaults/cli-sni-kv","name":"cli-sni-kv","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yeming","name":"yeming","type":"Microsoft.KeyVault/vaults","location":"eastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.KeyVault/vaults/ase-testdevice-020dc7b13","name":"ase-testdevice-020dc7b13","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{"dbe-resource":"testdevice"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.KeyVault/vaults/ase-ysgatewayd-e2960da93","name":"ase-ysgatewayd-e2960da93","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{"dbe-resource":"ysgatewaydevice"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.KeyVault/vaults/zuhtest","name":"zuhtest","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}}]}' headers: cache-control: - no-cache content-length: - - '316' + - '4394' content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 07:00:59 GMT + - Wed, 27 Jan 2021 08:49:27 GMT expires: - '-1' pragma: @@ -4448,12 +4253,12 @@ interactions: ParameterSetName: - -n --object-id --key-permissions User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003?api-version=2019-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003","name":"vault-000003","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"01a4073e-87c8-47cd-aafc-1439b4b5ea2c","accessPolicies":[{"tenantId":"01a4073e-87c8-47cd-aafc-1439b4b5ea2c","objectId":"5310aa29-9a44-4cbc-adb3-6347a539537e","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://vault-000003.vault.azure.net/","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003","name":"vault-000003","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"181c08fa-7ac8-48a6-a869-342ab74566a4","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://vault-000003.vault.azure.net/","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -4462,7 +4267,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 07:00:59 GMT + - Wed, 27 Jan 2021 08:49:29 GMT expires: - '-1' pragma: @@ -4480,23 +4285,23 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.163.0 + - 1.1.204.0 x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"location": "eastus2", "tags": {}, "properties": {"tenantId": "01a4073e-87c8-47cd-aafc-1439b4b5ea2c", + body: '{"location": "eastus2", "tags": {}, "properties": {"tenantId": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", "sku": {"family": "A", "name": "standard"}, "accessPolicies": [{"tenantId": - "01a4073e-87c8-47cd-aafc-1439b4b5ea2c", "objectId": "5310aa29-9a44-4cbc-adb3-6347a539537e", + "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", "objectId": "181c08fa-7ac8-48a6-a869-342ab74566a4", "permissions": {"keys": ["get", "create", "delete", "list", "update", "import", "backup", "restore", "recover"], "secrets": ["get", "list", "set", "delete", "backup", "restore", "recover"], "certificates": ["get", "list", "delete", "create", "import", "update", "managecontacts", "getissuers", "listissuers", "setissuers", "deleteissuers", "manageissuers", "recover"], "storage": ["get", "list", "delete", "set", "update", "regeneratekey", "setsas", "listsas", "getsas", "deletesas"]}}, - {"tenantId": "01a4073e-87c8-47cd-aafc-1439b4b5ea2c", "objectId": "ebd82890-1ce5-4d04-af1a-ac6497b93c6c", + {"tenantId": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", "objectId": "b6eeb1c2-44af-43ac-9c76-c54e5179bede", "permissions": {"keys": ["get", "unwrapKey", "wrapKey"]}}], "vaultUri": "https://vault-000003.vault.azure.net/", "enabledForDeployment": false, "enableSoftDelete": true, "softDeleteRetentionInDays": 90, "enablePurgeProtection": true}}' @@ -4516,12 +4321,12 @@ interactions: ParameterSetName: - -n --object-id --key-permissions User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003?api-version=2019-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003","name":"vault-000003","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"01a4073e-87c8-47cd-aafc-1439b4b5ea2c","accessPolicies":[{"tenantId":"01a4073e-87c8-47cd-aafc-1439b4b5ea2c","objectId":"5310aa29-9a44-4cbc-adb3-6347a539537e","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}},{"tenantId":"01a4073e-87c8-47cd-aafc-1439b4b5ea2c","objectId":"ebd82890-1ce5-4d04-af1a-ac6497b93c6c","permissions":{"keys":["get","unwrapKey","wrapKey"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://vault-000003.vault.azure.net/","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003","name":"vault-000003","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"181c08fa-7ac8-48a6-a869-342ab74566a4","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}},{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"b6eeb1c2-44af-43ac-9c76-c54e5179bede","permissions":{"keys":["get","unwrapKey","wrapKey"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://vault-000003.vault.azure.net/","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -4530,7 +4335,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 07:01:00 GMT + - Wed, 27 Jan 2021 08:49:30 GMT expires: - '-1' pragma: @@ -4548,9 +4353,9 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.163.0 + - 1.1.204.0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1192' x-powered-by: - ASP.NET status: @@ -4570,8 +4375,8 @@ interactions: ParameterSetName: - --assignee --role --scope User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -4588,7 +4393,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 07:01:15 GMT + - Wed, 27 Jan 2021 08:49:46 GMT expires: - '-1' pragma: @@ -4620,12 +4425,12 @@ interactions: ParameterSetName: - --assignee --role --scope User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27ebd82890-1ce5-4d04-af1a-ac6497b93c6c%27%29&api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27b6eeb1c2-44af-43ac-9c76-c54e5179bede%27%29&api-version=1.6 response: body: string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[]}' @@ -4641,19 +4446,19 @@ interactions: dataserviceversion: - 3.0; date: - - Sat, 19 Dec 2020 07:01:16 GMT + - Wed, 27 Jan 2021 08:49:46 GMT duration: - - '496734' + - '2520909' expires: - '-1' ocp-aad-diagnostics-server-name: - - A2WEvB9xQqPOjNol/IUViTCNQE6HlrX1NuuoEXqk5ho= + - D9qX3xhgVpGG/rbiIW9mZYKzCiRqH69i5/7VTxN/cV4= ocp-aad-session-key: - - MrCq7F0Ey7VzqjuKqKNu0Uk_DuZZ0_yQLc6_CGgS4TZHy2GR2d11KzhNq1eY1EG7W-9EwhWERhLcaZDRrkESf9uaKt2FNiVW6J6BXcePYAVgpmLyL1jxCFIPnGa5xP6r.-ktiQhCCYC1b85YYw-1mMdgSDQDrg74Z78ZML1P6Ozo + - HomMCZeNpOY-E3mIHDyt8SPv49R022LZUeVrCVmnQAwlfQY6BrK-fbQk3BUdTExyun1EwdL7VJTkQxcTp2yKd29RioLDe7mVEcYq4CMfq13SFlvU4azun2YNQxobSVRm.DFJK01PZXdj9WsApTFGnMuKR72hKTi0fsWRfnF6MvY8 pragma: - no-cache request-id: - - 71433842-1f1d-49ac-973b-f7820275dc89 + - 4e6706cf-8659-407f-a196-3bce19b37fd9 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -4668,7 +4473,7 @@ interactions: code: 200 message: OK - request: - body: '{"objectIds": ["ebd82890-1ce5-4d04-af1a-ac6497b93c6c"], "includeDirectoryObjectReferences": + body: '{"objectIds": ["b6eeb1c2-44af-43ac-9c76-c54e5179bede"], "includeDirectoryObjectReferences": true}' headers: Accept: @@ -4686,15 +4491,15 @@ interactions: ParameterSetName: - --assignee --role --scope User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: POST uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/getObjectsByObjectIds?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"ebd82890-1ce5-4d04-af1a-ac6497b93c6c","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005"],"appDisplayName":null,"appId":"41ef8319-2cfc-4d8d-b182-1bb57cc48fe6","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"des1-000005","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"3E73F2AED5438C49EA075C9EBBAB443387437824","endDate":"2021-03-19T06:55:00Z","keyId":"e5d39f4e-99fb-4fbe-8f7b-c7e31180318a","startDate":"2020-12-19T06:55:00Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["41ef8319-2cfc-4d8d-b182-1bb57cc48fe6","https://identity.azure.net/LiRY026tUshHlRfbklF3VFtGdQ5rLdIFyW//b+jc8K4="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null}]}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"b6eeb1c2-44af-43ac-9c76-c54e5179bede","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005"],"appDisplayName":null,"appId":"7b006ab5-dc84-437a-b5a1-ed141a1945fd","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"des1-000005","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"F0835BDE79D929142BC5864464A5EA691FAF37EF","endDate":"2021-04-27T08:43:00Z","keyId":"e9cefb2f-ebfa-4e7a-be51-de24f01e9944","startDate":"2021-01-27T08:43:00Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["7b006ab5-dc84-437a-b5a1-ed141a1945fd","https://identity.azure.net/5vfvkeYoaP8a7d2303jt5gmZCc1fAa8YZukj0/DCHOE="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' @@ -4707,19 +4512,19 @@ interactions: dataserviceversion: - 3.0; date: - - Sat, 19 Dec 2020 07:01:16 GMT + - Wed, 27 Jan 2021 08:49:47 GMT duration: - - '339567' + - '2419333' expires: - '-1' ocp-aad-diagnostics-server-name: - - j9oImoqA4MySHR++eOmskA1b94N9c/C7pjU92ybsN3w= + - vWq3sZBm9YGF/WqWPpMunREPBK/DyqbsLHZwWBbmM3I= ocp-aad-session-key: - - tsrFSc9sWSBchG38kSLZoJZrtRnz5RjMhIkdHNilyZzL7WiTQmn-aIe0dcmq0Qv43z5s2eSZiKGVC_844PDM9iUGFO9y1tWZFq21i_ush-IaVFhEjTVFJbb3CCRV2mtd.NLok-qrgHykIE0Dx-Q2v6zpozi66D7UHRsA4vrxAhIc + - ltnMPY8y5Cn8Lj1E4hCTlsvxeTgfHcnEX6Ai_H3DQBXF3SvWE4AhRrLvJ88CG5lRwaGwBLZRnPFpNfIUiNhwQkQO3Kwbz2PLPlORPxyTqrhCu5vvMri1ZRlzmjvyHIQG.QtvziBDBB4ThF1Ung-h2ERvLssYd_g5IpiUS6re14BA pragma: - no-cache request-id: - - fed27636-c213-4b07-a45b-754e798b2516 + - a6db804f-06ae-4901-9374-2383a022f30d strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -4735,7 +4540,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7", - "principalId": "ebd82890-1ce5-4d04-af1a-ac6497b93c6c"}}' + "principalId": "b6eeb1c2-44af-43ac-9c76-c54e5179bede"}}' headers: Accept: - application/json @@ -4754,15 +4559,15 @@ interactions: ParameterSetName: - --assignee --role --scope User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"ebd82890-1ce5-4d04-af1a-ac6497b93c6c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003","condition":null,"conditionVersion":null,"createdOn":"2020-12-19T07:01:17.4871058Z","updatedOn":"2020-12-19T07:01:17.8871071Z","createdBy":null,"updatedBy":"5310aa29-9a44-4cbc-adb3-6347a539537e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"b6eeb1c2-44af-43ac-9c76-c54e5179bede","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003","condition":null,"conditionVersion":null,"createdOn":"2021-01-27T08:49:47.9953565Z","updatedOn":"2021-01-27T08:49:49.1045728Z","createdBy":null,"updatedBy":"181c08fa-7ac8-48a6-a869-342ab74566a4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' headers: cache-control: - no-cache @@ -4771,7 +4576,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 07:01:18 GMT + - Wed, 27 Jan 2021 08:49:53 GMT expires: - '-1' pragma: @@ -4783,7 +4588,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 201 message: Created @@ -4802,15 +4607,15 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2020-12-19T06:30:14Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -4819,7 +4624,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 07:01:33 GMT + - Wed, 27 Jan 2021 08:50:08 GMT expires: - '-1' pragma: @@ -4856,9 +4661,9 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"1.1.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3\",\r\n @@ -4872,13 +4677,13 @@ interactions: \ \"lun\": 0,\r\n \"diskEncryptionSetId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\"\r\n \ }\r\n ]\r\n }\r\n }\r\n ],\r\n \ \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": - \"2020-12-19T07:01:35.9156547+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n + \"2021-01-27T08:50:16.0624338+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n \ },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n \ }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/2f7f4f04-e93a-4384-b59e-9d22e6db8c87?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/f808f408-7387-4a93-a6c3-0f39b6b1bf70?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -4886,7 +4691,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 07:01:35 GMT + - Wed, 27 Jan 2021 08:50:17 GMT expires: - '-1' pragma: @@ -4901,7 +4706,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1197 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1195' status: code: 201 message: Created @@ -4920,13 +4725,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/2f7f4f04-e93a-4384-b59e-9d22e6db8c87?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/f808f408-7387-4a93-a6c3-0f39b6b1bf70?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T07:01:35.8844076+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"2f7f4f04-e93a-4384-b59e-9d22e6db8c87\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:50:16.0624338+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"f808f408-7387-4a93-a6c3-0f39b6b1bf70\"\r\n}" headers: cache-control: - no-cache @@ -4935,7 +4740,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 07:02:35 GMT + - Wed, 27 Jan 2021 08:51:17 GMT expires: - '-1' pragma: @@ -4952,7 +4757,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4153 + - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4130 status: code: 200 message: OK @@ -4971,13 +4776,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/2f7f4f04-e93a-4384-b59e-9d22e6db8c87?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/f808f408-7387-4a93-a6c3-0f39b6b1bf70?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T07:01:35.8844076+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"2f7f4f04-e93a-4384-b59e-9d22e6db8c87\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:50:16.0624338+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"f808f408-7387-4a93-a6c3-0f39b6b1bf70\"\r\n}" headers: cache-control: - no-cache @@ -4986,7 +4791,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 07:03:36 GMT + - Wed, 27 Jan 2021 08:52:18 GMT expires: - '-1' pragma: @@ -5003,7 +4808,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4152 + - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4129 status: code: 200 message: OK @@ -5022,13 +4827,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/2f7f4f04-e93a-4384-b59e-9d22e6db8c87?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/f808f408-7387-4a93-a6c3-0f39b6b1bf70?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T07:01:35.8844076+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"2f7f4f04-e93a-4384-b59e-9d22e6db8c87\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:50:16.0624338+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"f808f408-7387-4a93-a6c3-0f39b6b1bf70\"\r\n}" headers: cache-control: - no-cache @@ -5037,7 +4842,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 07:04:36 GMT + - Wed, 27 Jan 2021 08:53:19 GMT expires: - '-1' pragma: @@ -5054,7 +4859,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4150 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4127 status: code: 200 message: OK @@ -5073,13 +4878,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/2f7f4f04-e93a-4384-b59e-9d22e6db8c87?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/f808f408-7387-4a93-a6c3-0f39b6b1bf70?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T07:01:35.8844076+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"2f7f4f04-e93a-4384-b59e-9d22e6db8c87\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:50:16.0624338+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"f808f408-7387-4a93-a6c3-0f39b6b1bf70\"\r\n}" headers: cache-control: - no-cache @@ -5088,7 +4893,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 07:05:37 GMT + - Wed, 27 Jan 2021 08:54:20 GMT expires: - '-1' pragma: @@ -5105,7 +4910,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4154 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4125 status: code: 200 message: OK @@ -5124,13 +4929,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/2f7f4f04-e93a-4384-b59e-9d22e6db8c87?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/f808f408-7387-4a93-a6c3-0f39b6b1bf70?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T07:01:35.8844076+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"2f7f4f04-e93a-4384-b59e-9d22e6db8c87\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:50:16.0624338+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"f808f408-7387-4a93-a6c3-0f39b6b1bf70\"\r\n}" headers: cache-control: - no-cache @@ -5139,7 +4944,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 07:06:37 GMT + - Wed, 27 Jan 2021 08:55:21 GMT expires: - '-1' pragma: @@ -5156,7 +4961,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4152 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4146 status: code: 200 message: OK @@ -5175,13 +4980,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/2f7f4f04-e93a-4384-b59e-9d22e6db8c87?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/f808f408-7387-4a93-a6c3-0f39b6b1bf70?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T07:01:35.8844076+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"2f7f4f04-e93a-4384-b59e-9d22e6db8c87\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:50:16.0624338+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"f808f408-7387-4a93-a6c3-0f39b6b1bf70\"\r\n}" headers: cache-control: - no-cache @@ -5190,7 +4995,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 07:07:37 GMT + - Wed, 27 Jan 2021 08:56:21 GMT expires: - '-1' pragma: @@ -5207,7 +5012,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4150 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4144 status: code: 200 message: OK @@ -5226,13 +5031,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/2f7f4f04-e93a-4384-b59e-9d22e6db8c87?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/f808f408-7387-4a93-a6c3-0f39b6b1bf70?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T07:01:35.8844076+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"2f7f4f04-e93a-4384-b59e-9d22e6db8c87\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:50:16.0624338+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"f808f408-7387-4a93-a6c3-0f39b6b1bf70\"\r\n}" headers: cache-control: - no-cache @@ -5241,7 +5046,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 07:08:37 GMT + - Wed, 27 Jan 2021 08:57:22 GMT expires: - '-1' pragma: @@ -5258,7 +5063,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4148 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4142 status: code: 200 message: OK @@ -5277,13 +5082,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/2f7f4f04-e93a-4384-b59e-9d22e6db8c87?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/f808f408-7387-4a93-a6c3-0f39b6b1bf70?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T07:01:35.8844076+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"2f7f4f04-e93a-4384-b59e-9d22e6db8c87\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:50:16.0624338+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"f808f408-7387-4a93-a6c3-0f39b6b1bf70\"\r\n}" headers: cache-control: - no-cache @@ -5292,7 +5097,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 07:09:38 GMT + - Wed, 27 Jan 2021 08:58:22 GMT expires: - '-1' pragma: @@ -5309,7 +5114,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4146 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4140 status: code: 200 message: OK @@ -5328,13 +5133,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/2f7f4f04-e93a-4384-b59e-9d22e6db8c87?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/f808f408-7387-4a93-a6c3-0f39b6b1bf70?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T07:01:35.8844076+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"2f7f4f04-e93a-4384-b59e-9d22e6db8c87\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:50:16.0624338+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"f808f408-7387-4a93-a6c3-0f39b6b1bf70\"\r\n}" headers: cache-control: - no-cache @@ -5343,7 +5148,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 07:10:37 GMT + - Wed, 27 Jan 2021 08:59:23 GMT expires: - '-1' pragma: @@ -5360,7 +5165,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4154 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4138 status: code: 200 message: OK @@ -5379,22 +5184,23 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/2f7f4f04-e93a-4384-b59e-9d22e6db8c87?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/f808f408-7387-4a93-a6c3-0f39b6b1bf70?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T07:01:35.8844076+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"2f7f4f04-e93a-4384-b59e-9d22e6db8c87\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:50:16.0624338+00:00\",\r\n \"endTime\": + \"2021-01-27T09:00:16.6128738+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"f808f408-7387-4a93-a6c3-0f39b6b1bf70\"\r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '184' content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 07:11:38 GMT + - Wed, 27 Jan 2021 09:00:23 GMT expires: - '-1' pragma: @@ -5411,7 +5217,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4152 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4155 status: code: 200 message: OK @@ -5430,22 +5236,39 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/2f7f4f04-e93a-4384-b59e-9d22e6db8c87?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T07:01:35.8844076+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"2f7f4f04-e93a-4384-b59e-9d22e6db8c87\"\r\n}" + string: "{\r\n \"name\": \"1.1.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3\",\r\n + \ \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": + \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"publishingProfile\": + {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East + US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": + \"Standard_LRS\",\r\n \"encryption\": {\r\n \"osDiskImage\": + {\r\n \"diskEncryptionSetId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\"\r\n + \ },\r\n \"dataDiskImages\": [\r\n {\r\n + \ \"lun\": 0,\r\n \"diskEncryptionSetId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\"\r\n + \ }\r\n ]\r\n }\r\n }\r\n ],\r\n + \ \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": + \"2021-01-27T08:50:16.0624338+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n + \ },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n + \ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": + \"ReadWrite\",\r\n \"source\": {}\r\n },\r\n \"dataDiskImages\": + [\r\n {\r\n \"lun\": 0,\r\n \"sizeInGB\": 10,\r\n + \ \"hostCaching\": \"None\"\r\n }\r\n ]\r\n },\r\n + \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '2034' content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 07:12:39 GMT + - Wed, 27 Jan 2021 09:00:23 GMT expires: - '-1' pragma: @@ -5462,7 +5285,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4150 + - Microsoft.Compute/GetGalleryImageVersion3Min;1996,Microsoft.Compute/GetGalleryImageVersion30Min;9981 status: code: 200 message: OK @@ -5470,51 +5293,44 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - sig image-version create + - vm create Connection: - keep-alive ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions - --target-region-encryption --managed-image --replica-count + - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/2f7f4f04-e93a-4384-b59e-9d22e6db8c87?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T07:01:35.8844076+00:00\",\r\n \"endTime\": - \"2020-12-19T07:13:36.426437+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"2f7f4f04-e93a-4384-b59e-9d22e6db8c87\"\r\n}" + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '183' + - '429' content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 07:13:39 GMT + - Wed, 27 Jan 2021 09:00:24 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4148 status: code: 200 message: OK @@ -5522,132 +5338,19 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - sig image-version create + - vm create Connection: - keep-alive ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions - --target-region-encryption --managed-image --replica-count + - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3?api-version=2019-12-01 - response: - body: - string: "{\r\n \"name\": \"1.1.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3\",\r\n - \ \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": - \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"publishingProfile\": - {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East - US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": - \"Standard_LRS\",\r\n \"encryption\": {\r\n \"osDiskImage\": - {\r\n \"diskEncryptionSetId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\"\r\n - \ },\r\n \"dataDiskImages\": [\r\n {\r\n - \ \"lun\": 0,\r\n \"diskEncryptionSetId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\"\r\n - \ }\r\n ]\r\n }\r\n }\r\n ],\r\n - \ \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": - \"2020-12-19T07:01:35.9156547+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n - \ },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n - \ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": - \"ReadWrite\",\r\n \"source\": {}\r\n },\r\n \"dataDiskImages\": - [\r\n {\r\n \"lun\": 0,\r\n \"sizeInGB\": 10,\r\n - \ \"hostCaching\": \"None\"\r\n }\r\n ]\r\n },\r\n - \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2034' - content-type: - - application/json; charset=utf-8 - date: - - Sat, 19 Dec 2020 07:13:39 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9983 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --admin-username --generate-ssh-keys --nsg-rule - User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2020-12-19T06:30:14Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '429' - content-type: - - application/json; charset=utf-8 - date: - - Sat, 19 Dec 2020 07:13:40 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --admin-username --generate-ssh-keys --nsg-rule - User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"image1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1\",\r\n @@ -5665,7 +5368,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 07:13:41 GMT + - Wed, 27 Jan 2021 09:00:25 GMT expires: - '-1' pragma: @@ -5700,24 +5403,24 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions?api-version=2020-09-30 response: body: string: '{"value":[{"name":"1.1.2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2","type":"Microsoft.Compute/galleries/images/versions","location":"eastus2","tags":{},"properties":{"publishingProfile":{"targetRegions":[{"name":"West US 2","regionalReplicaCount":1,"storageAccountType":"Standard_LRS"},{"name":"East - US 2","regionalReplicaCount":2,"storageAccountType":"Standard_LRS"}],"replicaCount":2,"excludeFromLatest":false,"publishedDate":"2020-12-19T06:36:34.596812+00:00","storageAccountType":"Standard_LRS"},"storageProfile":{"source":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1"},"osDiskImage":{"sizeInGB":30,"hostCaching":"ReadWrite","source":{}},"dataDiskImages":[{"lun":0,"sizeInGB":10,"hostCaching":"None"}]},"provisioningState":"Succeeded"}},{"name":"1.1.3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3","type":"Microsoft.Compute/galleries/images/versions","location":"eastus2","tags":{},"properties":{"publishingProfile":{"targetRegions":[{"name":"East - US 2","regionalReplicaCount":1,"storageAccountType":"Standard_LRS","encryption":{"osDiskImage":{"diskEncryptionSetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005"},"dataDiskImages":[{"lun":0,"diskEncryptionSetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005"}]}}],"replicaCount":1,"excludeFromLatest":false,"publishedDate":"2020-12-19T07:01:35.9156547+00:00","storageAccountType":"Standard_LRS"},"storageProfile":{"source":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1"},"osDiskImage":{"sizeInGB":30,"hostCaching":"ReadWrite","source":{}},"dataDiskImages":[{"lun":0,"sizeInGB":10,"hostCaching":"None"}]},"provisioningState":"Succeeded"}}]}' + US 2","regionalReplicaCount":2,"storageAccountType":"Standard_LRS"}],"replicaCount":2,"excludeFromLatest":false,"publishedDate":"2021-01-27T08:26:36.7417719+00:00","storageAccountType":"Standard_LRS"},"storageProfile":{"source":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1"},"osDiskImage":{"sizeInGB":30,"hostCaching":"ReadWrite","source":{}},"dataDiskImages":[{"lun":0,"sizeInGB":10,"hostCaching":"None"}]},"provisioningState":"Succeeded"}},{"name":"1.1.3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3","type":"Microsoft.Compute/galleries/images/versions","location":"eastus2","tags":{},"properties":{"publishingProfile":{"targetRegions":[{"name":"East + US 2","regionalReplicaCount":1,"storageAccountType":"Standard_LRS","encryption":{"osDiskImage":{"diskEncryptionSetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005"},"dataDiskImages":[{"lun":0,"diskEncryptionSetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005"}]}}],"replicaCount":1,"excludeFromLatest":false,"publishedDate":"2021-01-27T08:50:16.0624338+00:00","storageAccountType":"Standard_LRS"},"storageProfile":{"source":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1"},"osDiskImage":{"sizeInGB":30,"hostCaching":"ReadWrite","source":{}},"dataDiskImages":[{"lun":0,"sizeInGB":10,"hostCaching":"None"}]},"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '2622' + - '2623' content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 07:13:42 GMT + - Wed, 27 Jan 2021 09:00:26 GMT expires: - '-1' pragma: @@ -5729,39 +5432,41 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - ab58674e-eddb-4c50-95c6-45c3afd5a2ca - - 6e0cbd33-2a31-4731-ae2d-fde5936e5dbf - - 60cbcb7a-1a23-4cbe-b89c-bb16c41d8928 - - 4a87254d-3c21-44d9-bd73-deed8843f80d - - b7426101-3cd2-4181-abd5-8556a0784b12 - - 5a0b6b54-f7f0-4c53-ae3e-b87cb3af44ce - - 9384119e-fe2d-4ca3-8e13-607b6d16b0d0 - - 3fcf8940-8ce6-4154-96c9-e75f54782a79 - - 3a72eef5-f8b4-4d57-9c8e-ae5f566598ed - - c220726a-763f-4ec4-bba5-ecf88d365a87 - - d316ea6f-50db-4a50-983d-8d1136ecb9ef - - 92ffae3f-3f51-45fb-9df3-c6d04d284860 - - 4f480713-0074-41bd-91a5-60137241b911 - - 8a471f4b-db9a-4082-aa03-0199f55f3818 - - 2d8b0f7e-0fa3-47c9-9d6e-1bb3faa7b730 - - f4be184c-5b89-42b2-8740-8216bfee420f - - f1e80f8e-d7ff-46d6-a802-a2d9770ea373 - - 205ccb08-386b-411f-ad38-8fd0aef0f9fa - - f904d643-5823-4930-9339-c05f590f19b2 - - 4415b13a-b9df-4452-9792-9bee30a4f7d6 - - a1a10e5f-c33e-4cfb-aec2-5e229a650d9b - - a0cea9bc-9c57-4867-b875-4c93fa91e454 - - b9faf3c5-15c4-44e2-94e2-9158126cf141 - - d364dfdd-f2a4-47a2-921e-6c66765a85a5 - - 848a5e03-6a23-4d54-99b0-c5b807b7f86f - - f9f410d0-120d-400e-bbf2-58054f7ee283 - - 79acaa16-bce7-4620-b1c8-138d272428b5 - - d7ea1ac3-7055-427d-8896-8a6e5c7d5dba - - cfef26c7-219c-4b0a-b61e-b6ea4b99dc76 - - 60ee0edb-31bb-4556-8de5-7357a63bfdee - - 523aec40-c7da-4d65-a350-5d74d3d9c5b3 - - d03a0e02-3b9b-4e7f-a50e-3aa738f351e3 - - 4d48f3a4-bb06-403e-ae9e-87b7a598e433 + - 339488a0-80ce-4dd7-b9fa-36eb33a01e6a + - 270a29a7-989c-4882-85a8-8560ec657506 + - c6a938d1-b6e8-41e2-82ea-fc142821b0cd + - c16a8cfb-3b3e-434c-bbfe-730a2014cef7 + - d3763be2-b5d6-4e17-bd1e-8ba39d28c479 + - 9e1b8542-58ce-488b-a144-27e6e0a3a54b + - c863835a-1ba5-4216-a6b9-d6c79b19711f + - 5c7fbc99-3fa7-4045-a600-9d6a8b61d8de + - 86b911bb-01f4-46e6-98ce-dae9b836df39 + - 2f77dca2-bc4b-4f38-80ec-d2b058d2b502 + - 99ec9d5c-1dd1-4fca-90f3-52f41c1a104a + - 2a8c7514-fcaf-467d-aa87-6558858936e4 + - 868c36e3-3116-43b7-95e7-ec8a358e588c + - b7e43af9-fe8c-4470-9712-5f972d871906 + - c8f0aa32-8313-42fb-b6ef-d4fa82da06e5 + - cecc9586-5a4b-45b1-b542-0fd7f7d91175 + - efd6550c-a64b-413a-bd56-0dc06109e51d + - 6d84c63a-1e21-4184-a64a-9f632db36925 + - 582ec3db-5c50-4a47-ab10-e374ce8d7353 + - 1b2250c0-42a9-4a92-970d-f724d21ed18d + - 2e0c9207-04b5-42cf-8797-004e209e3a8c + - fd385f3e-927d-4dd2-8566-bedef4b2112f + - 2d49db35-d851-4b10-a4a7-804d7ad57929 + - ce32b6e7-37e7-40c7-bebb-41b0f3a276bf + - e0b6844c-9701-45b3-9ace-b189704f0707 + - 3671e093-6741-48e2-bd0f-d7c52dd73ffe + - 3d0a269a-fc8e-40bb-9bc9-38fee6297724 + - d4a77334-0500-463d-b81b-4c191a1fb108 + - f1384fd3-2712-4b97-ac32-7436d60b465e + - c3475bbd-2530-4dd6-8c5b-efb76bfeb63f + - 4518ebdc-27e5-4937-9de1-ed6ce3e91ac1 + - 645c78e8-0268-419d-bfb7-4b66f6a86e86 + - 62ec909c-ba22-44d4-937b-77e069990c79 + - 1d89299a-7c87-4e66-95c0-708f8f29708e + - 3847ac74-9803-4b97-a7d2-7b6a08196099 status: code: 200 message: OK @@ -5769,7 +5474,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -5779,24 +5484,21 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vm1VNET\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\r\n - \ \"etag\": \"W/\\\"965b5953-224f-4d2a-be04-a0892436d195\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"aebead17-cc0e-47e4-9049-d791702eae1b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"3157caed-16ee-450c-8f08-c12c417cb129\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"68c712b4-36f4-46fa-a585-7e4a5da20743\",\r\n \ \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n \ ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"vm1Subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\r\n - \ \"etag\": \"W/\\\"965b5953-224f-4d2a-be04-a0892436d195\\\"\",\r\n + \ \"etag\": \"W/\\\"aebead17-cc0e-47e4-9049-d791702eae1b\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n @@ -5812,7 +5514,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 07:13:42 GMT + - Wed, 27 Jan 2021 09:00:27 GMT expires: - '-1' pragma: @@ -5829,7 +5531,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2a7aa053-4925-4773-aae3-66001b4c50fc + - 1b7dd5d7-e453-494e-ad63-ac703d83f585 status: code: 200 message: OK @@ -5858,9 +5560,9 @@ interactions: "dataDisks": [{"lun": 0, "managedDisk": {"storageAccountType": null}, "createOption": "fromImage"}]}, "osProfile": {"computerName": "vmFromImage", "adminUsername": "clitest1", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": - {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDI8aYs6Q0jHMi+ZA79hsoxoTxrbVwH/eZY+ZSifVvvKicm1/80fdqKNXgfNujlTiXYG7kCN+NhsgoEtARQtJnStvYv1HzD95rb0dSegff+GqUGgAdE+/oIEMu8/CRVLQWlPrOs2qUeRvElCmG8M+BTVC2sMFFblSrwHOx5sKLdWv4eOjncICD7w9Ktbi5FNC5RHElvlxei3vUOpfUfP4GIiy5CCXUPmO5AX+BO15JkMJsaNfmGMQ7LFzFbw6F+HG+Hi4hm+Kd3mNK7qyaz0T2iGBnA6maVB2zugbZtCuY9ZlfnWxDVF8V43mVY7MNLM1BqwskDNwzKiVgeUXLDYJux", - "path": "/home/clitest1/.ssh/authorized_keys"}]}}}}}], "outputs": {}}, "parameters": - {}, "mode": "Incremental"}}' + {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj + fey@DESKTOP-ARGPJS4\n", "path": "/home/clitest1/.ssh/authorized_keys"}]}}}}}], + "outputs": {}}, "parameters": {}, "mode": "Incremental"}}' headers: Accept: - application/json @@ -5871,24 +5573,24 @@ interactions: Connection: - keep-alive Content-Length: - - '3370' + - '3392' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_JN7Ta8DrucKZp5X3ZXZrLSONRzuVGckH","name":"vm_deploy_JN7Ta8DrucKZp5X3ZXZrLSONRzuVGckH","type":"Microsoft.Resources/deployments","properties":{"templateHash":"11475435277423914981","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-12-19T07:13:44.9752683Z","duration":"PT0.8005606S","correlationId":"8540919e-da2c-4263-83dc-5d8be3b9c902","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmFromImageNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmFromImagePublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vmFromImage"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_47R2JNb7qEaerpBKTYiT4zZGyeXHBj1F","name":"vm_deploy_47R2JNb7qEaerpBKTYiT4zZGyeXHBj1F","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17535328827070782391","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-01-27T09:00:32.8133913Z","duration":"PT2.6731051S","correlationId":"3ac1ded5-b56e-4f0e-bb00-af590cc8a559","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmFromImageNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmFromImagePublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vmFromImage"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_JN7Ta8DrucKZp5X3ZXZrLSONRzuVGckH/operationStatuses/08585932448613029152?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_47R2JNb7qEaerpBKTYiT4zZGyeXHBj1F/operationStatuses/08585898688553373402?api-version=2020-10-01 cache-control: - no-cache content-length: @@ -5896,7 +5598,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 07:13:44 GMT + - Wed, 27 Jan 2021 09:00:33 GMT expires: - '-1' pragma: @@ -5906,7 +5608,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' status: code: 201 message: Created @@ -5924,182 +5626,10 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585932448613029152?api-version=2020-10-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Sat, 19 Dec 2020 07:14:15 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --admin-username --generate-ssh-keys --nsg-rule - User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585932448613029152?api-version=2020-10-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Sat, 19 Dec 2020 07:14:45 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --admin-username --generate-ssh-keys --nsg-rule - User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585932448613029152?api-version=2020-10-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Sat, 19 Dec 2020 07:15:16 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --admin-username --generate-ssh-keys --nsg-rule - User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585932448613029152?api-version=2020-10-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Sat, 19 Dec 2020 07:15:46 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --admin-username --generate-ssh-keys --nsg-rule - User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585932448613029152?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585898688553373402?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -6111,7 +5641,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 07:16:17 GMT + - Wed, 27 Jan 2021 09:01:04 GMT expires: - '-1' pragma: @@ -6139,96 +5669,10 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585932448613029152?api-version=2020-10-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Sat, 19 Dec 2020 07:16:46 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --admin-username --generate-ssh-keys --nsg-rule - User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585932448613029152?api-version=2020-10-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Sat, 19 Dec 2020 07:17:16 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --admin-username --generate-ssh-keys --nsg-rule - User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585932448613029152?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585898688553373402?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -6240,7 +5684,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 07:17:47 GMT + - Wed, 27 Jan 2021 09:01:35 GMT expires: - '-1' pragma: @@ -6268,22 +5712,22 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_JN7Ta8DrucKZp5X3ZXZrLSONRzuVGckH","name":"vm_deploy_JN7Ta8DrucKZp5X3ZXZrLSONRzuVGckH","type":"Microsoft.Resources/deployments","properties":{"templateHash":"11475435277423914981","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-12-19T07:17:29.2327056Z","duration":"PT3M45.0579979S","correlationId":"8540919e-da2c-4263-83dc-5d8be3b9c902","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmFromImageNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmFromImagePublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vmFromImage"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_47R2JNb7qEaerpBKTYiT4zZGyeXHBj1F","name":"vm_deploy_47R2JNb7qEaerpBKTYiT4zZGyeXHBj1F","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17535328827070782391","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-01-27T09:01:29.6576393Z","duration":"PT59.5173531S","correlationId":"3ac1ded5-b56e-4f0e-bb00-af590cc8a559","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmFromImageNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmFromImagePublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vmFromImage"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"}]}}' headers: cache-control: - no-cache content-length: - - '3384' + - '3382' content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 07:17:47 GMT + - Wed, 27 Jan 2021 09:01:35 GMT expires: - '-1' pragma: @@ -6311,63 +5755,63 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage?$expand=instanceView&api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"vmFromImage\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"13fe798d-0215-4dc8-a30d-dfaaa33861ec\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"922da674-9172-44d6-966f-9f8447d4a36d\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1\",\r\n \ \"exactVersion\": \"1.1.3\"\r\n },\r\n \"osDisk\": {\r\n - \ \"osType\": \"Linux\",\r\n \"name\": \"vmFromImage_OsDisk_1_92a3a1707ac241b19700a79de04a5fee\",\r\n + \ \"osType\": \"Linux\",\r\n \"name\": \"vmFromImage_OsDisk_1_b6b83cbf56fe43e5b6fd0927f79f2ba3\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"diskEncryptionSet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\"\r\n \ },\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_92a3a1707ac241b19700a79de04a5fee\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_b6b83cbf56fe43e5b6fd0927f79f2ba3\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": - [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vmFromImage_lun_0_2_b3101d01fe9343e8bf02d5f950da9725\",\r\n + [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vmFromImage_lun_0_2_8240b47bca064d3484f7ddfeff8c9d4c\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \ \"managedDisk\": {\r\n \"diskEncryptionSet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\"\r\n \ },\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vmFromImage_lun_0_2_b3101d01fe9343e8bf02d5f950da9725\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vmFromImage_lun_0_2_8240b47bca064d3484f7ddfeff8c9d4c\"\r\n \ },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmFromImage\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/clitest1/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDI8aYs6Q0jHMi+ZA79hsoxoTxrbVwH/eZY+ZSifVvvKicm1/80fdqKNXgfNujlTiXYG7kCN+NhsgoEtARQtJnStvYv1HzD95rb0dSegff+GqUGgAdE+/oIEMu8/CRVLQWlPrOs2qUeRvElCmG8M+BTVC2sMFFblSrwHOx5sKLdWv4eOjncICD7w9Ktbi5FNC5RHElvlxei3vUOpfUfP4GIiy5CCXUPmO5AX+BO15JkMJsaNfmGMQ7LFzFbw6F+HG+Hi4hm+Kd3mNK7qyaz0T2iGBnA6maVB2zugbZtCuY9ZlfnWxDVF8V43mVY7MNLM1BqwskDNwzKiVgeUXLDYJux\"\r\n - \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": - true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n - \ }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj + fey@DESKTOP-ARGPJS4\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": + \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\": - \"vmFromImage\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": - \"18.04\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.53\",\r\n - \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n - \ \"message\": \"Guest Agent is running\",\r\n \"time\": - \"2020-12-19T07:17:47+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vmFromImage_OsDisk_1_92a3a1707ac241b19700a79de04a5fee\",\r\n - \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": + {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n + \ {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n + \ \"level\": \"Warning\",\r\n \"displayStatus\": \"Not + Ready\",\r\n \"message\": \"VM status blob is found but not yet + populated.\",\r\n \"time\": \"2021-01-27T09:01:37+00:00\"\r\n }\r\n + \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": + \"vmFromImage_OsDisk_1_b6b83cbf56fe43e5b6fd0927f79f2ba3\",\r\n \"statuses\": + [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-12-19T07:16:12.0876432+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-27T09:00:59.309828+00:00\"\r\n \ }\r\n ]\r\n },\r\n {\r\n \"name\": - \"vmFromImage_lun_0_2_b3101d01fe9343e8bf02d5f950da9725\",\r\n \"statuses\": + \"vmFromImage_lun_0_2_8240b47bca064d3484f7ddfeff8c9d4c\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-12-19T07:16:12.0876432+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-27T09:00:59.309828+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-12-19T07:17:28.7467588+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-27T09:01:27.7951358+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n \ }\r\n ]\r\n }\r\n }\r\n}" @@ -6375,11 +5819,11 @@ interactions: cache-control: - no-cache content-length: - - '5526' + - '5452' content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 07:17:48 GMT + - Wed, 27 Jan 2021 09:01:37 GMT expires: - '-1' pragma: @@ -6396,7 +5840,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31996 + - Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31993 status: code: 200 message: OK @@ -6404,7 +5848,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -6414,21 +5858,18 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"vmFromImageVMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic\",\r\n - \ \"etag\": \"W/\\\"5777a7a2-576d-496e-affe-b95f0a34b3a2\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"fa645db9-20c3-4e7d-a59b-2c8ccd1e382f\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"d7dd78e7-178f-4833-abdd-15fca0c09193\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"408a846d-412f-4f1d-9069-6bdcf3768166\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvmFromImage\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/ipConfigurations/ipconfigvmFromImage\",\r\n - \ \"etag\": \"W/\\\"5777a7a2-576d-496e-affe-b95f0a34b3a2\\\"\",\r\n + \ \"etag\": \"W/\\\"fa645db9-20c3-4e7d-a59b-2c8ccd1e382f\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": @@ -6437,8 +5878,8 @@ interactions: \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": - \"3xffompocygeldyiyewec5frfb.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-03-9F-0D\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"wqjmo0hug13enjmfpzff1iqhid.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-7C-A8-A0\",\r\n \"enableAcceleratedNetworking\": false,\r\n \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -6452,9 +5893,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 07:17:48 GMT + - Wed, 27 Jan 2021 09:01:38 GMT etag: - - W/"5777a7a2-576d-496e-affe-b95f0a34b3a2" + - W/"fa645db9-20c3-4e7d-a59b-2c8ccd1e382f" expires: - '-1' pragma: @@ -6471,7 +5912,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 29c833a2-3e98-4368-8d95-2acafe5267e0 + - 75713a8e-6209-4f7e-9697-778d2d83295f status: code: 200 message: OK @@ -6479,7 +5920,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -6489,19 +5930,16 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"vmFromImagePublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\",\r\n - \ \"etag\": \"W/\\\"5d3cf0ad-fb98-4c2f-9860-10b2671cee7d\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"df89874f-58b1-4612-8cb2-9a372554a8a0\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"7decbf9b-c178-4327-ae4b-a68d8dd86cf1\",\r\n - \ \"ipAddress\": \"52.254.18.204\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"f8aa8508-d063-4902-a5c3-0a5be5e6f5f6\",\r\n + \ \"ipAddress\": \"20.36.184.112\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/ipConfigurations/ipconfigvmFromImage\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n @@ -6514,9 +5952,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 07:17:49 GMT + - Wed, 27 Jan 2021 09:01:38 GMT etag: - - W/"5d3cf0ad-fb98-4c2f-9860-10b2671cee7d" + - W/"df89874f-58b1-4612-8cb2-9a372554a8a0" expires: - '-1' pragma: @@ -6533,7 +5971,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 79391d1d-688c-4091-85cb-b7ecdb03220b + - db57b097-b37b-4dbe-a73c-06088f9455cf status: code: 200 message: OK @@ -6553,25 +5991,25 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2020-09-30 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/49fe5f06-6fbf-4fb4-9f42-47c43551c915?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/806080ea-240c-4035-948b-bbd2b6fb5bdc?api-version=2020-09-30 cache-control: - no-cache content-length: - '0' date: - - Sat, 19 Dec 2020 07:17:49 GMT + - Wed, 27 Jan 2021 09:01:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/49fe5f06-6fbf-4fb4-9f42-47c43551c915?monitor=true&api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/806080ea-240c-4035-948b-bbd2b6fb5bdc?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -6602,13 +6040,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/49fe5f06-6fbf-4fb4-9f42-47c43551c915?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/806080ea-240c-4035-948b-bbd2b6fb5bdc?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T07:17:50.6225616+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"49fe5f06-6fbf-4fb4-9f42-47c43551c915\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T09:01:39.8320255+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"806080ea-240c-4035-948b-bbd2b6fb5bdc\"\r\n}" headers: cache-control: - no-cache @@ -6617,7 +6055,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 07:18:50 GMT + - Wed, 27 Jan 2021 09:02:40 GMT expires: - '-1' pragma: @@ -6634,7 +6072,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1199,Microsoft.Compute/GetOperationStatus30Min;4155 + - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4153 status: code: 200 message: OK @@ -6652,23 +6090,23 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/49fe5f06-6fbf-4fb4-9f42-47c43551c915?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/806080ea-240c-4035-948b-bbd2b6fb5bdc?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T07:17:50.6225616+00:00\",\r\n \"endTime\": - \"2020-12-19T07:19:21.6884414+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"49fe5f06-6fbf-4fb4-9f42-47c43551c915\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T09:01:39.8320255+00:00\",\r\n \"endTime\": + \"2021-01-27T09:03:10.801372+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"806080ea-240c-4035-948b-bbd2b6fb5bdc\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 07:19:50 GMT + - Wed, 27 Jan 2021 09:03:40 GMT expires: - '-1' pragma: @@ -6685,7 +6123,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4153 + - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4151 status: code: 200 message: OK @@ -6705,25 +6143,25 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3?api-version=2020-09-30 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/91167203-0acd-4c96-9b46-8b413f214f78?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/1f5553f9-c0a2-4584-be9b-f2f5cfeabbaf?api-version=2020-09-30 cache-control: - no-cache content-length: - '0' date: - - Sat, 19 Dec 2020 07:19:52 GMT + - Wed, 27 Jan 2021 09:03:42 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/91167203-0acd-4c96-9b46-8b413f214f78?monitor=true&api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/1f5553f9-c0a2-4584-be9b-f2f5cfeabbaf?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -6736,7 +6174,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/DeleteGalleryImageVersion3Min;148,Microsoft.Compute/DeleteGalleryImageVersion30Min;998 x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted @@ -6754,13 +6192,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/91167203-0acd-4c96-9b46-8b413f214f78?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/1f5553f9-c0a2-4584-be9b-f2f5cfeabbaf?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T07:19:52.5646076+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"91167203-0acd-4c96-9b46-8b413f214f78\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T09:03:42.7703402+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"1f5553f9-c0a2-4584-be9b-f2f5cfeabbaf\"\r\n}" headers: cache-control: - no-cache @@ -6769,7 +6207,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 07:20:51 GMT + - Wed, 27 Jan 2021 09:04:43 GMT expires: - '-1' pragma: @@ -6786,7 +6224,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4161 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4149 status: code: 200 message: OK @@ -6804,14 +6242,14 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/91167203-0acd-4c96-9b46-8b413f214f78?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/1f5553f9-c0a2-4584-be9b-f2f5cfeabbaf?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T07:19:52.5646076+00:00\",\r\n \"endTime\": - \"2020-12-19T07:21:22.7866991+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"91167203-0acd-4c96-9b46-8b413f214f78\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T09:03:42.7703402+00:00\",\r\n \"endTime\": + \"2021-01-27T09:05:12.9739944+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"1f5553f9-c0a2-4584-be9b-f2f5cfeabbaf\"\r\n}" headers: cache-control: - no-cache @@ -6820,7 +6258,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 07:21:52 GMT + - Wed, 27 Jan 2021 09:05:45 GMT expires: - '-1' pragma: @@ -6837,7 +6275,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4159 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4157 status: code: 200 message: OK @@ -6857,7 +6295,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -6865,17 +6303,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/80e0e7f1-bb99-4e9a-b4dd-deb64471b5a0?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/da15e968-6af2-48d8-9128-6b880e7c111e?api-version=2020-09-30 cache-control: - no-cache content-length: - '0' date: - - Sat, 19 Dec 2020 07:22:54 GMT + - Wed, 27 Jan 2021 09:06:47 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/80e0e7f1-bb99-4e9a-b4dd-deb64471b5a0?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/da15e968-6af2-48d8-9128-6b880e7c111e?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -6906,14 +6344,14 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/80e0e7f1-bb99-4e9a-b4dd-deb64471b5a0?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/da15e968-6af2-48d8-9128-6b880e7c111e?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T07:22:54.6182356+00:00\",\r\n \"endTime\": - \"2020-12-19T07:22:55.1182522+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"80e0e7f1-bb99-4e9a-b4dd-deb64471b5a0\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T09:06:47.1620783+00:00\",\r\n \"endTime\": + \"2021-01-27T09:06:47.4277279+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"da15e968-6af2-48d8-9128-6b880e7c111e\"\r\n}" headers: cache-control: - no-cache @@ -6922,7 +6360,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 07:23:23 GMT + - Wed, 27 Jan 2021 09:07:17 GMT expires: - '-1' pragma: @@ -6939,7 +6377,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4156 + - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4154 status: code: 200 message: OK @@ -6959,7 +6397,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01 response: @@ -6967,17 +6405,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/15aec8bd-ba57-4399-bcba-24163fe2b300?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/327615a0-bd50-458f-bfe3-ff3e2c6a74bc?api-version=2019-12-01 cache-control: - no-cache content-length: - '0' date: - - Sat, 19 Dec 2020 07:23:25 GMT + - Wed, 27 Jan 2021 09:07:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/15aec8bd-ba57-4399-bcba-24163fe2b300?monitor=true&api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/327615a0-bd50-458f-bfe3-ff3e2c6a74bc?monitor=true&api-version=2019-12-01 pragma: - no-cache server: @@ -6990,7 +6428,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;299 x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 202 message: Accepted @@ -7008,23 +6446,23 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/15aec8bd-ba57-4399-bcba-24163fe2b300?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/327615a0-bd50-458f-bfe3-ff3e2c6a74bc?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T07:23:25.635015+00:00\",\r\n \"endTime\": - \"2020-12-19T07:23:25.7287663+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"15aec8bd-ba57-4399-bcba-24163fe2b300\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T09:07:20.4591957+00:00\",\r\n \"endTime\": + \"2021-01-27T09:07:20.5842045+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"327615a0-bd50-458f-bfe3-ff3e2c6a74bc\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 07:23:55 GMT + - Wed, 27 Jan 2021 09:07:50 GMT expires: - '-1' pragma: @@ -7041,7 +6479,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4154 + - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4152 status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_specialized.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_specialized.yaml index 0ffeccdad68..4996906a390 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_specialized.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_specialized.yaml @@ -14,14 +14,14 @@ interactions: - -g --gallery-name User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:08:54 GMT + - Wed, 27 Jan 2021 08:20:48 GMT expires: - '-1' pragma: @@ -58,14 +58,11 @@ interactions: Content-Length: - '35' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g --gallery-name User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01 response: @@ -73,11 +70,11 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_2MVFUGHCPVT7\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_HKXSPJBCPTHT\"\r\n },\r\n \ \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/911d0734-9e04-4f47-adc2-1f77b9b74f3b?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/15402db7-b06b-445b-8d72-0c71ce2f3e2a?api-version=2019-12-01 cache-control: - no-cache content-length: @@ -85,7 +82,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:09:02 GMT + - Wed, 27 Jan 2021 08:20:53 GMT expires: - '-1' pragma: @@ -98,9 +95,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299 + - Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;298 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1193' status: code: 201 message: Created @@ -108,7 +105,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -118,15 +115,14 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/911d0734-9e04-4f47-adc2-1f77b9b74f3b?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/15402db7-b06b-445b-8d72-0c71ce2f3e2a?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-10-15T08:09:00.8483043+00:00\",\r\n \"endTime\": - \"2020-10-15T08:09:01.0357629+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"911d0734-9e04-4f47-adc2-1f77b9b74f3b\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:20:53.4740802+00:00\",\r\n \"endTime\": + \"2021-01-27T08:20:53.7084258+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"15402db7-b06b-445b-8d72-0c71ce2f3e2a\"\r\n}" headers: cache-control: - no-cache @@ -135,7 +131,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:09:32 GMT + - Wed, 27 Jan 2021 08:21:25 GMT expires: - '-1' pragma: @@ -152,7 +148,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4197 + - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4185 status: code: 200 message: OK @@ -160,7 +156,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -170,8 +166,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01 response: @@ -179,7 +174,7 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_2MVFUGHCPVT7\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_HKXSPJBCPTHT\"\r\n },\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -189,7 +184,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:09:33 GMT + - Wed, 27 Jan 2021 08:21:26 GMT expires: - '-1' pragma: @@ -206,7 +201,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGallery3Min;343,Microsoft.Compute/GetGallery30Min;2493 + - Microsoft.Compute/GetGallery3Min;342,Microsoft.Compute/GetGallery30Min;2487 status: code: 200 message: OK @@ -226,14 +221,14 @@ interactions: -p -f -s User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -242,7 +237,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:09:34 GMT + - Wed, 27 Jan 2021 08:21:27 GMT expires: - '-1' pragma: @@ -272,15 +267,12 @@ interactions: Content-Length: - '217' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type --os-state --hyper-v-generation -p -f -s User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -294,7 +286,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/d2af4a12-b378-4efb-b948-83ce39014772?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/25a9cb2d-682a-477c-ab7f-846aab25abbc?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -302,7 +294,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:09:43 GMT + - Wed, 27 Jan 2021 08:21:34 GMT expires: - '-1' pragma: @@ -315,7 +307,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;749 + - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;748 x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -325,7 +317,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -336,15 +328,14 @@ interactions: - -g --gallery-name --gallery-image-definition --os-type --os-state --hyper-v-generation -p -f -s User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/d2af4a12-b378-4efb-b948-83ce39014772?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/25a9cb2d-682a-477c-ab7f-846aab25abbc?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-10-15T08:09:41.9419184+00:00\",\r\n \"endTime\": - \"2020-10-15T08:09:42.0200471+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"d2af4a12-b378-4efb-b948-83ce39014772\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:21:33.2399143+00:00\",\r\n \"endTime\": + \"2021-01-27T08:21:33.3492529+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"25a9cb2d-682a-477c-ab7f-846aab25abbc\"\r\n}" headers: cache-control: - no-cache @@ -353,7 +344,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:10:14 GMT + - Wed, 27 Jan 2021 08:22:04 GMT expires: - '-1' pragma: @@ -370,7 +361,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4192 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4181 status: code: 200 message: OK @@ -378,7 +369,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -389,8 +380,7 @@ interactions: - -g --gallery-name --gallery-image-definition --os-type --os-state --hyper-v-generation -p -f -s User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -410,7 +400,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:10:14 GMT + - Wed, 27 Jan 2021 08:22:05 GMT expires: - '-1' pragma: @@ -427,7 +417,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;592,Microsoft.Compute/GetGalleryImage30Min;2992 + - Microsoft.Compute/GetGalleryImage3Min;593,Microsoft.Compute/GetGalleryImage30Min;2988 status: code: 200 message: OK @@ -446,14 +436,14 @@ interactions: - -g -n --size-gb User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -462,7 +452,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:10:15 GMT + - Wed, 27 Jan 2021 08:22:06 GMT expires: - '-1' pragma: @@ -478,8 +468,7 @@ interactions: message: OK - request: body: '{"location": "eastus2", "tags": {}, "sku": {"name": "Premium_LRS"}, "properties": - {"hyperVGeneration": "V1", "creationData": {"createOption": "Empty"}, "diskSizeGB": - 10}}' + {"creationData": {"createOption": "Empty"}, "diskSizeGB": 10}}' headers: Accept: - application/json @@ -490,41 +479,37 @@ interactions: Connection: - keep-alive Content-Length: - - '170' + - '144' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -n --size-gb User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-06-30 response: body: string: "{\r\n \"name\": \"d1\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\"\r\n },\r\n \"properties\": - {\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": - \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"provisioningState\": - \"Updating\",\r\n \"isArmResource\": true,\r\n \"tier\": \"P3\"\r\n - \ }\r\n}" + {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n + \ \"diskSizeGB\": 10,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": + true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/993fadd2-1beb-4ae7-9f18-275d70e1d5e4?api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/28403976-035d-4f85-ad87-698843b71150?api-version=2020-06-30 cache-control: - no-cache content-length: - - '331' + - '281' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:10:22 GMT + - Wed, 27 Jan 2021 08:22:12 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/993fadd2-1beb-4ae7-9f18-275d70e1d5e4?monitor=true&api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/28403976-035d-4f85-ad87-698843b71150?monitor=true&api-version=2020-06-30 pragma: - no-cache server: @@ -535,9 +520,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999 + - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7988 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 202 message: Accepted @@ -545,7 +530,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -555,36 +540,34 @@ interactions: ParameterSetName: - -g -n --size-gb User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/993fadd2-1beb-4ae7-9f18-275d70e1d5e4?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/28403976-035d-4f85-ad87-698843b71150?api-version=2020-06-30 response: body: - string: "{\r\n \"startTime\": \"2020-10-15T08:10:22.5668231+00:00\",\r\n \"endTime\": - \"2020-10-15T08:10:22.738953+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-01-27T08:22:12.1089438+00:00\",\r\n \"endTime\": + \"2021-01-27T08:22:12.2340109+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": - \"Premium\"\r\n },\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n - \ \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n - \ \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": - 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"timeCreated\": \"2020-10-15T08:10:22.5824498+00:00\",\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"69051d5d-a0c5-40cf-9f9d-d421c1381320\",\r\n - \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"993fadd2-1beb-4ae7-9f18-275d70e1d5e4\"\r\n}" + \"Premium\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n + \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n + \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": + {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": + \"2021-01-27T08:22:12.1089438+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n + \ \"uniqueId\": \"24958805-4f29-4721-b3a3-e38c637d5c5d\",\r\n \"networkAccessPolicy\": + \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"28403976-035d-4f85-ad87-698843b71150\"\r\n}" headers: cache-control: - no-cache content-length: - - '1142' + - '1112' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:10:24 GMT + - Wed, 27 Jan 2021 08:22:14 GMT expires: - '-1' pragma: @@ -601,7 +584,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399999 + - Microsoft.Compute/GetOperation3Min;49979,Microsoft.Compute/GetOperation30Min;399932 status: code: 200 message: OK @@ -609,7 +592,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -619,8 +602,7 @@ interactions: ParameterSetName: - -g -n --size-gb User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-06-30 response: @@ -628,23 +610,23 @@ interactions: string: "{\r\n \"name\": \"d1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": - \"Premium\"\r\n },\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n - \ \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n - \ \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": - 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"timeCreated\": \"2020-10-15T08:10:22.5824498+00:00\",\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"69051d5d-a0c5-40cf-9f9d-d421c1381320\",\r\n - \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" + \"Premium\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n + \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n + \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": + {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": + \"2021-01-27T08:22:12.1089438+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n + \ \"uniqueId\": \"24958805-4f29-4721-b3a3-e38c637d5c5d\",\r\n \"networkAccessPolicy\": + \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '918' + - '887' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:10:24 GMT + - Wed, 27 Jan 2021 08:22:14 GMT expires: - '-1' pragma: @@ -661,7 +643,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4999,Microsoft.Compute/LowCostGet30Min;39999 + - Microsoft.Compute/LowCostGet3Min;14985,Microsoft.Compute/LowCostGet30Min;119923 status: code: 200 message: OK @@ -680,14 +662,14 @@ interactions: - -g -n --size-gb User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -696,7 +678,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:10:25 GMT + - Wed, 27 Jan 2021 08:22:15 GMT expires: - '-1' pragma: @@ -712,8 +694,7 @@ interactions: message: OK - request: body: '{"location": "eastus2", "tags": {}, "sku": {"name": "Premium_LRS"}, "properties": - {"hyperVGeneration": "V1", "creationData": {"createOption": "Empty"}, "diskSizeGB": - 10}}' + {"creationData": {"createOption": "Empty"}, "diskSizeGB": 10}}' headers: Accept: - application/json @@ -724,41 +705,37 @@ interactions: Connection: - keep-alive Content-Length: - - '170' + - '144' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -n --size-gb User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2?api-version=2020-06-30 response: body: string: "{\r\n \"name\": \"d2\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\"\r\n },\r\n \"properties\": - {\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": - \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"provisioningState\": - \"Updating\",\r\n \"isArmResource\": true,\r\n \"tier\": \"P3\"\r\n - \ }\r\n}" + {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n + \ \"diskSizeGB\": 10,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": + true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/7511cbc9-80d7-40f2-8084-cafe9240c278?api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/8041cf17-bf68-4eeb-89d2-db065c50b980?api-version=2020-06-30 cache-control: - no-cache content-length: - - '331' + - '281' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:10:32 GMT + - Wed, 27 Jan 2021 08:22:21 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/7511cbc9-80d7-40f2-8084-cafe9240c278?monitor=true&api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/8041cf17-bf68-4eeb-89d2-db065c50b980?monitor=true&api-version=2020-06-30 pragma: - no-cache server: @@ -769,9 +746,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7998 + - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7987 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 202 message: Accepted @@ -779,7 +756,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -789,36 +766,34 @@ interactions: ParameterSetName: - -g -n --size-gb User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/7511cbc9-80d7-40f2-8084-cafe9240c278?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/8041cf17-bf68-4eeb-89d2-db065c50b980?api-version=2020-06-30 response: body: - string: "{\r\n \"startTime\": \"2020-10-15T08:10:32.4730908+00:00\",\r\n \"endTime\": - \"2020-10-15T08:10:32.6137158+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-01-27T08:22:21.4062228+00:00\",\r\n \"endTime\": + \"2021-01-27T08:22:21.5468271+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": - \"Premium\"\r\n },\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n - \ \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n - \ \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": - 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"timeCreated\": \"2020-10-15T08:10:32.4730908+00:00\",\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"c6886cd4-c833-431b-be36-98ff23594d42\",\r\n - \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"7511cbc9-80d7-40f2-8084-cafe9240c278\"\r\n}" + \"Premium\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n + \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n + \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": + {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": + \"2021-01-27T08:22:21.4218478+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n + \ \"uniqueId\": \"772d9860-7ff1-4d20-9764-505270fb46a7\",\r\n \"networkAccessPolicy\": + \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"8041cf17-bf68-4eeb-89d2-db065c50b980\"\r\n}" headers: cache-control: - no-cache content-length: - - '1143' + - '1112' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:10:34 GMT + - Wed, 27 Jan 2021 08:22:23 GMT expires: - '-1' pragma: @@ -835,7 +810,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399997 + - Microsoft.Compute/GetOperation3Min;49977,Microsoft.Compute/GetOperation30Min;399930 status: code: 200 message: OK @@ -843,7 +818,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -853,8 +828,7 @@ interactions: ParameterSetName: - -g -n --size-gb User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2?api-version=2020-06-30 response: @@ -862,23 +836,23 @@ interactions: string: "{\r\n \"name\": \"d2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": - \"Premium\"\r\n },\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n - \ \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n - \ \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": - 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"timeCreated\": \"2020-10-15T08:10:32.4730908+00:00\",\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"c6886cd4-c833-431b-be36-98ff23594d42\",\r\n - \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" + \"Premium\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n + \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n + \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": + {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": + \"2021-01-27T08:22:21.4218478+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n + \ \"uniqueId\": \"772d9860-7ff1-4d20-9764-505270fb46a7\",\r\n \"networkAccessPolicy\": + \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '918' + - '887' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:10:34 GMT + - Wed, 27 Jan 2021 08:22:24 GMT expires: - '-1' pragma: @@ -895,7 +869,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4996,Microsoft.Compute/LowCostGet30Min;39996 + - Microsoft.Compute/LowCostGet3Min;14983,Microsoft.Compute/LowCostGet30Min;119921 status: code: 200 message: OK @@ -914,14 +888,14 @@ interactions: - -g -n --size-gb User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -930,7 +904,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:10:35 GMT + - Wed, 27 Jan 2021 08:22:24 GMT expires: - '-1' pragma: @@ -946,8 +920,7 @@ interactions: message: OK - request: body: '{"location": "eastus2", "tags": {}, "sku": {"name": "Premium_LRS"}, "properties": - {"hyperVGeneration": "V1", "creationData": {"createOption": "Empty"}, "diskSizeGB": - 10}}' + {"creationData": {"createOption": "Empty"}, "diskSizeGB": 10}}' headers: Accept: - application/json @@ -958,41 +931,37 @@ interactions: Connection: - keep-alive Content-Length: - - '170' + - '144' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -n --size-gb User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3?api-version=2020-06-30 response: body: string: "{\r\n \"name\": \"d3\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\"\r\n },\r\n \"properties\": - {\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": - \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"provisioningState\": - \"Updating\",\r\n \"isArmResource\": true,\r\n \"tier\": \"P3\"\r\n - \ }\r\n}" + {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n + \ \"diskSizeGB\": 10,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": + true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/99dbe3e6-ec72-4167-ba22-82d62b9c6d0a?api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/1888a890-f3a7-49f3-923e-2a832526ba2d?api-version=2020-06-30 cache-control: - no-cache content-length: - - '331' + - '281' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:10:41 GMT + - Wed, 27 Jan 2021 08:22:31 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/99dbe3e6-ec72-4167-ba22-82d62b9c6d0a?monitor=true&api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/1888a890-f3a7-49f3-923e-2a832526ba2d?monitor=true&api-version=2020-06-30 pragma: - no-cache server: @@ -1003,9 +972,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7997 + - Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7986 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted @@ -1013,7 +982,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1023,36 +992,34 @@ interactions: ParameterSetName: - -g -n --size-gb User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/99dbe3e6-ec72-4167-ba22-82d62b9c6d0a?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/1888a890-f3a7-49f3-923e-2a832526ba2d?api-version=2020-06-30 response: body: - string: "{\r\n \"startTime\": \"2020-10-15T08:10:41.6606089+00:00\",\r\n \"endTime\": - \"2020-10-15T08:10:41.8481044+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-01-27T08:22:31.4222313+00:00\",\r\n \"endTime\": + \"2021-01-27T08:22:31.5315943+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": - \"Premium\"\r\n },\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n - \ \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n - \ \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": - 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"timeCreated\": \"2020-10-15T08:10:41.6606089+00:00\",\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"d9c64654-7005-46b1-8e64-a65347dd07d4\",\r\n - \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"99dbe3e6-ec72-4167-ba22-82d62b9c6d0a\"\r\n}" + \"Premium\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n + \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n + \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": + {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": + \"2021-01-27T08:22:31.4222313+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n + \ \"uniqueId\": \"310e0af2-dfc0-4d1a-bfaa-13d2a35b5938\",\r\n \"networkAccessPolicy\": + \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"1888a890-f3a7-49f3-923e-2a832526ba2d\"\r\n}" headers: cache-control: - no-cache content-length: - - '1143' + - '1112' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:10:43 GMT + - Wed, 27 Jan 2021 08:22:34 GMT expires: - '-1' pragma: @@ -1069,7 +1036,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49995,Microsoft.Compute/GetOperation30Min;399995 + - Microsoft.Compute/GetOperation3Min;49986,Microsoft.Compute/GetOperation30Min;399928 status: code: 200 message: OK @@ -1077,7 +1044,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1087,8 +1054,7 @@ interactions: ParameterSetName: - -g -n --size-gb User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3?api-version=2020-06-30 response: @@ -1096,23 +1062,23 @@ interactions: string: "{\r\n \"name\": \"d3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": - \"Premium\"\r\n },\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n - \ \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n - \ \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": - 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"timeCreated\": \"2020-10-15T08:10:41.6606089+00:00\",\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"d9c64654-7005-46b1-8e64-a65347dd07d4\",\r\n - \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" + \"Premium\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n + \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n + \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": + {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": + \"2021-01-27T08:22:31.4222313+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n + \ \"uniqueId\": \"310e0af2-dfc0-4d1a-bfaa-13d2a35b5938\",\r\n \"networkAccessPolicy\": + \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '918' + - '887' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:10:44 GMT + - Wed, 27 Jan 2021 08:22:34 GMT expires: - '-1' pragma: @@ -1129,7 +1095,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4994,Microsoft.Compute/LowCostGet30Min;39994 + - Microsoft.Compute/LowCostGet3Min;14982,Microsoft.Compute/LowCostGet30Min;119918 status: code: 200 message: OK @@ -1147,10 +1113,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/d1?api-version=2020-05-01 response: @@ -1166,7 +1129,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:10:44 GMT + - Wed, 27 Jan 2021 08:22:35 GMT expires: - '-1' pragma: @@ -1194,10 +1157,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-06-30 response: @@ -1205,23 +1165,23 @@ interactions: string: "{\r\n \"name\": \"d1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": - \"Premium\"\r\n },\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n - \ \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n - \ \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": - 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"timeCreated\": \"2020-10-15T08:10:22.5824498+00:00\",\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"69051d5d-a0c5-40cf-9f9d-d421c1381320\",\r\n - \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" + \"Premium\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n + \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n + \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": + {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": + \"2021-01-27T08:22:12.1089438+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n + \ \"uniqueId\": \"24958805-4f29-4721-b3a3-e38c637d5c5d\",\r\n \"networkAccessPolicy\": + \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '918' + - '887' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:10:44 GMT + - Wed, 27 Jan 2021 08:22:35 GMT expires: - '-1' pragma: @@ -1238,7 +1198,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4993,Microsoft.Compute/LowCostGet30Min;39993 + - Microsoft.Compute/LowCostGet3Min;14980,Microsoft.Compute/LowCostGet30Min;119916 status: code: 200 message: OK @@ -1257,14 +1217,14 @@ interactions: - -g -n --source User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1273,7 +1233,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:10:45 GMT + - Wed, 27 Jan 2021 08:22:36 GMT expires: - '-1' pragma: @@ -1289,8 +1249,7 @@ interactions: message: OK - request: body: '{"location": "eastus2", "tags": {}, "sku": {"name": "Standard_LRS"}, "properties": - {"hyperVGeneration": "V1", "creationData": {"createOption": "Copy", "sourceResourceId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1"}}}' + {"creationData": {"createOption": "Copy", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1"}}}' headers: Accept: - application/json @@ -1301,42 +1260,38 @@ interactions: Connection: - keep-alive Content-Length: - - '355' + - '329' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -n --source User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 response: body: string: "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"sku\": - {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"hyperVGeneration\": - \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n - \ \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1\",\r\n - \ \"sourceUniqueId\": \"69051d5d-a0c5-40cf-9f9d-d421c1381320\"\r\n },\r\n + {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": + {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1\",\r\n + \ \"sourceUniqueId\": \"24958805-4f29-4721-b3a3-e38c637d5c5d\"\r\n },\r\n \ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/d6fbe645-c751-43e5-bc99-a288eadf56f3?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/f8af40d7-f085-4441-bdbf-d5395cf06529?api-version=2020-05-01 cache-control: - no-cache content-length: - - '547' + - '516' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:10:50 GMT + - Wed, 27 Jan 2021 08:22:42 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/d6fbe645-c751-43e5-bc99-a288eadf56f3?monitor=true&api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/f8af40d7-f085-4441-bdbf-d5395cf06529?monitor=true&api-version=2020-05-01 pragma: - no-cache server: @@ -1347,9 +1302,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7999 + - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7992 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 202 message: Accepted @@ -1357,7 +1312,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1367,37 +1322,35 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/d6fbe645-c751-43e5-bc99-a288eadf56f3?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/f8af40d7-f085-4441-bdbf-d5395cf06529?api-version=2020-05-01 response: body: - string: "{\r\n \"startTime\": \"2020-10-15T08:10:50.2856458+00:00\",\r\n \"endTime\": - \"2020-10-15T08:10:51.6918605+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-01-27T08:22:42.9852246+00:00\",\r\n \"endTime\": + \"2021-01-27T08:22:43.5477212+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s1\",\r\n \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": - \"Standard\"\r\n },\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n - \ \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1\",\r\n - \ \"sourceUniqueId\": \"69051d5d-a0c5-40cf-9f9d-d421c1381320\"\r\n },\r\n + \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n + \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1\",\r\n + \ \"sourceUniqueId\": \"24958805-4f29-4721-b3a3-e38c637d5c5d\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-10-15T08:10:50.301239+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-01-27T08:22:42.9852246+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"4d3f5533-12e7-4d15-a127-f288e31e955c\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"8180bdcc-361e-4b37-ab85-02fa003a39c5\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"d6fbe645-c751-43e5-bc99-a288eadf56f3\"\r\n}" + \"f8af40d7-f085-4441-bdbf-d5395cf06529\"\r\n}" headers: cache-control: - no-cache content-length: - - '1373' + - '1343' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:10:53 GMT + - Wed, 27 Jan 2021 08:22:44 GMT expires: - '-1' pragma: @@ -1414,7 +1367,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49993,Microsoft.Compute/GetOperation30Min;399993 + - Microsoft.Compute/GetOperation3Min;49984,Microsoft.Compute/GetOperation30Min;399926 status: code: 200 message: OK @@ -1422,7 +1375,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1432,8 +1385,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 response: @@ -1441,24 +1393,23 @@ interactions: string: "{\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s1\",\r\n \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": - \"Standard\"\r\n },\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n - \ \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1\",\r\n - \ \"sourceUniqueId\": \"69051d5d-a0c5-40cf-9f9d-d421c1381320\"\r\n },\r\n + \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n + \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1\",\r\n + \ \"sourceUniqueId\": \"24958805-4f29-4721-b3a3-e38c637d5c5d\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-10-15T08:10:50.301239+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-01-27T08:22:42.9852246+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"4d3f5533-12e7-4d15-a127-f288e31e955c\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"8180bdcc-361e-4b37-ab85-02fa003a39c5\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1148' + - '1118' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:10:53 GMT + - Wed, 27 Jan 2021 08:22:45 GMT expires: - '-1' pragma: @@ -1475,7 +1426,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4988,Microsoft.Compute/LowCostGet30Min;39988 + - Microsoft.Compute/LowCostGet3Min;14974,Microsoft.Compute/LowCostGet30Min;119910 status: code: 200 message: OK @@ -1493,10 +1444,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/d2?api-version=2020-05-01 response: @@ -1512,7 +1460,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:10:53 GMT + - Wed, 27 Jan 2021 08:22:46 GMT expires: - '-1' pragma: @@ -1540,10 +1488,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2?api-version=2020-06-30 response: @@ -1551,23 +1496,23 @@ interactions: string: "{\r\n \"name\": \"d2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": - \"Premium\"\r\n },\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n - \ \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n - \ \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": - 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"timeCreated\": \"2020-10-15T08:10:32.4730908+00:00\",\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"c6886cd4-c833-431b-be36-98ff23594d42\",\r\n - \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" + \"Premium\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n + \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n + \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": + {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": + \"2021-01-27T08:22:21.4218478+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n + \ \"uniqueId\": \"772d9860-7ff1-4d20-9764-505270fb46a7\",\r\n \"networkAccessPolicy\": + \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '918' + - '887' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:10:54 GMT + - Wed, 27 Jan 2021 08:22:47 GMT expires: - '-1' pragma: @@ -1584,7 +1529,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4986,Microsoft.Compute/LowCostGet30Min;39986 + - Microsoft.Compute/LowCostGet3Min;14973,Microsoft.Compute/LowCostGet30Min;119909 status: code: 200 message: OK @@ -1603,14 +1548,14 @@ interactions: - -g -n --source User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1619,7 +1564,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:10:54 GMT + - Wed, 27 Jan 2021 08:22:47 GMT expires: - '-1' pragma: @@ -1635,8 +1580,7 @@ interactions: message: OK - request: body: '{"location": "eastus2", "tags": {}, "sku": {"name": "Standard_LRS"}, "properties": - {"hyperVGeneration": "V1", "creationData": {"createOption": "Copy", "sourceResourceId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2"}}}' + {"creationData": {"createOption": "Copy", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2"}}}' headers: Accept: - application/json @@ -1647,42 +1591,38 @@ interactions: Connection: - keep-alive Content-Length: - - '355' + - '329' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -n --source User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s2?api-version=2020-05-01 response: body: string: "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"sku\": - {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"hyperVGeneration\": - \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n - \ \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2\",\r\n - \ \"sourceUniqueId\": \"c6886cd4-c833-431b-be36-98ff23594d42\"\r\n },\r\n + {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": + {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2\",\r\n + \ \"sourceUniqueId\": \"772d9860-7ff1-4d20-9764-505270fb46a7\"\r\n },\r\n \ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/7405c2bc-55e6-40d2-a151-a924b251da3b?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/43e2cbc7-1f03-4fe1-82f6-c2a0d1792f46?api-version=2020-05-01 cache-control: - no-cache content-length: - - '547' + - '516' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:11:01 GMT + - Wed, 27 Jan 2021 08:22:53 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/7405c2bc-55e6-40d2-a151-a924b251da3b?monitor=true&api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/43e2cbc7-1f03-4fe1-82f6-c2a0d1792f46?monitor=true&api-version=2020-05-01 pragma: - no-cache server: @@ -1693,9 +1633,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;998,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7998 + - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;998,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7991 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' status: code: 202 message: Accepted @@ -1703,7 +1643,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1713,37 +1653,35 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/7405c2bc-55e6-40d2-a151-a924b251da3b?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/43e2cbc7-1f03-4fe1-82f6-c2a0d1792f46?api-version=2020-05-01 response: body: - string: "{\r\n \"startTime\": \"2020-10-15T08:11:01.8637484+00:00\",\r\n \"endTime\": - \"2020-10-15T08:11:02.3793731+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-01-27T08:22:53.6731676+00:00\",\r\n \"endTime\": + \"2021-01-27T08:22:54.0794379+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"s2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s2\",\r\n \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": - \"Standard\"\r\n },\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n - \ \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2\",\r\n - \ \"sourceUniqueId\": \"c6886cd4-c833-431b-be36-98ff23594d42\"\r\n },\r\n + \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n + \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2\",\r\n + \ \"sourceUniqueId\": \"772d9860-7ff1-4d20-9764-505270fb46a7\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-10-15T08:11:01.8637484+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-01-27T08:22:53.6731676+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"2e2c4ce5-f879-4c45-95b4-5fd7f048faa9\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"8a176593-0690-45c1-8250-8bc31611bf12\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"7405c2bc-55e6-40d2-a151-a924b251da3b\"\r\n}" + \"43e2cbc7-1f03-4fe1-82f6-c2a0d1792f46\"\r\n}" headers: cache-control: - no-cache content-length: - - '1374' + - '1343' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:11:03 GMT + - Wed, 27 Jan 2021 08:22:55 GMT expires: - '-1' pragma: @@ -1760,7 +1698,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49991,Microsoft.Compute/GetOperation30Min;399991 + - Microsoft.Compute/GetOperation3Min;49982,Microsoft.Compute/GetOperation30Min;399924 status: code: 200 message: OK @@ -1768,7 +1706,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1778,8 +1716,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s2?api-version=2020-05-01 response: @@ -1787,24 +1724,23 @@ interactions: string: "{\r\n \"name\": \"s2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s2\",\r\n \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": - \"Standard\"\r\n },\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n - \ \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2\",\r\n - \ \"sourceUniqueId\": \"c6886cd4-c833-431b-be36-98ff23594d42\"\r\n },\r\n + \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n + \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2\",\r\n + \ \"sourceUniqueId\": \"772d9860-7ff1-4d20-9764-505270fb46a7\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-10-15T08:11:01.8637484+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-01-27T08:22:53.6731676+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"2e2c4ce5-f879-4c45-95b4-5fd7f048faa9\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"8a176593-0690-45c1-8250-8bc31611bf12\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1149' + - '1118' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:11:04 GMT + - Wed, 27 Jan 2021 08:22:56 GMT expires: - '-1' pragma: @@ -1821,7 +1757,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4983,Microsoft.Compute/LowCostGet30Min;39983 + - Microsoft.Compute/LowCostGet3Min;14969,Microsoft.Compute/LowCostGet30Min;119905 status: code: 200 message: OK @@ -1839,10 +1775,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/d3?api-version=2020-05-01 response: @@ -1858,7 +1791,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:11:05 GMT + - Wed, 27 Jan 2021 08:22:57 GMT expires: - '-1' pragma: @@ -1886,10 +1819,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3?api-version=2020-06-30 response: @@ -1897,23 +1827,23 @@ interactions: string: "{\r\n \"name\": \"d3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": - \"Premium\"\r\n },\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n - \ \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n - \ \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": - 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"timeCreated\": \"2020-10-15T08:10:41.6606089+00:00\",\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"d9c64654-7005-46b1-8e64-a65347dd07d4\",\r\n - \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" + \"Premium\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n + \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n + \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": + {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": + \"2021-01-27T08:22:31.4222313+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n + \ \"uniqueId\": \"310e0af2-dfc0-4d1a-bfaa-13d2a35b5938\",\r\n \"networkAccessPolicy\": + \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '918' + - '887' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:11:05 GMT + - Wed, 27 Jan 2021 08:22:57 GMT expires: - '-1' pragma: @@ -1930,7 +1860,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4982,Microsoft.Compute/LowCostGet30Min;39982 + - Microsoft.Compute/LowCostGet3Min;14968,Microsoft.Compute/LowCostGet30Min;119904 status: code: 200 message: OK @@ -1949,14 +1879,14 @@ interactions: - -g -n --source User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1965,7 +1895,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:11:05 GMT + - Wed, 27 Jan 2021 08:22:57 GMT expires: - '-1' pragma: @@ -1981,8 +1911,7 @@ interactions: message: OK - request: body: '{"location": "eastus2", "tags": {}, "sku": {"name": "Standard_LRS"}, "properties": - {"hyperVGeneration": "V1", "creationData": {"createOption": "Copy", "sourceResourceId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3"}}}' + {"creationData": {"createOption": "Copy", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3"}}}' headers: Accept: - application/json @@ -1993,42 +1922,38 @@ interactions: Connection: - keep-alive Content-Length: - - '355' + - '329' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -n --source User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s3?api-version=2020-05-01 response: body: string: "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"sku\": - {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"hyperVGeneration\": - \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n - \ \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3\",\r\n - \ \"sourceUniqueId\": \"d9c64654-7005-46b1-8e64-a65347dd07d4\"\r\n },\r\n + {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": + {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3\",\r\n + \ \"sourceUniqueId\": \"310e0af2-dfc0-4d1a-bfaa-13d2a35b5938\"\r\n },\r\n \ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/b277ce49-80bf-4ecd-bc5a-e6cdcbf047e9?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/4840c86a-eba3-469e-9f1b-4dfcda2dba4e?api-version=2020-05-01 cache-control: - no-cache content-length: - - '547' + - '516' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:11:11 GMT + - Wed, 27 Jan 2021 08:23:02 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/b277ce49-80bf-4ecd-bc5a-e6cdcbf047e9?monitor=true&api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/4840c86a-eba3-469e-9f1b-4dfcda2dba4e?monitor=true&api-version=2020-05-01 pragma: - no-cache server: @@ -2039,9 +1964,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;997,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7997 + - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;997,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7990 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1194' status: code: 202 message: Accepted @@ -2049,7 +1974,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2059,37 +1984,35 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/b277ce49-80bf-4ecd-bc5a-e6cdcbf047e9?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/4840c86a-eba3-469e-9f1b-4dfcda2dba4e?api-version=2020-05-01 response: body: - string: "{\r\n \"startTime\": \"2020-10-15T08:11:11.8963169+00:00\",\r\n \"endTime\": - \"2020-10-15T08:11:12.3950079+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-01-27T08:23:03.2673102+00:00\",\r\n \"endTime\": + \"2021-01-27T08:23:03.6736332+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"s3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s3\",\r\n \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": - \"Standard\"\r\n },\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n - \ \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3\",\r\n - \ \"sourceUniqueId\": \"d9c64654-7005-46b1-8e64-a65347dd07d4\"\r\n },\r\n + \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n + \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3\",\r\n + \ \"sourceUniqueId\": \"310e0af2-dfc0-4d1a-bfaa-13d2a35b5938\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-10-15T08:11:11.8963169+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-01-27T08:23:03.2673102+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"2143f16d-3a48-492d-9d59-0deed348eef9\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"e93280da-5c06-4b54-b8db-39c7e821db63\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"b277ce49-80bf-4ecd-bc5a-e6cdcbf047e9\"\r\n}" + \"4840c86a-eba3-469e-9f1b-4dfcda2dba4e\"\r\n}" headers: cache-control: - no-cache content-length: - - '1374' + - '1343' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:11:14 GMT + - Wed, 27 Jan 2021 08:23:04 GMT expires: - '-1' pragma: @@ -2106,7 +2029,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399989 + - Microsoft.Compute/GetOperation3Min;49983,Microsoft.Compute/GetOperation30Min;399922 status: code: 200 message: OK @@ -2114,7 +2037,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2124,8 +2047,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s3?api-version=2020-05-01 response: @@ -2133,24 +2055,23 @@ interactions: string: "{\r\n \"name\": \"s3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s3\",\r\n \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": - \"Standard\"\r\n },\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n - \ \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3\",\r\n - \ \"sourceUniqueId\": \"d9c64654-7005-46b1-8e64-a65347dd07d4\"\r\n },\r\n + \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n + \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3\",\r\n + \ \"sourceUniqueId\": \"310e0af2-dfc0-4d1a-bfaa-13d2a35b5938\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-10-15T08:11:11.8963169+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-01-27T08:23:03.2673102+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"2143f16d-3a48-492d-9d59-0deed348eef9\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"e93280da-5c06-4b54-b8db-39c7e821db63\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1149' + - '1118' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:11:14 GMT + - Wed, 27 Jan 2021 08:23:05 GMT expires: - '-1' pragma: @@ -2167,7 +2088,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4980,Microsoft.Compute/LowCostGet30Min;39980 + - Microsoft.Compute/LowCostGet3Min;14971,Microsoft.Compute/LowCostGet30Min;119902 status: code: 200 message: OK @@ -2187,14 +2108,14 @@ interactions: --data-snapshots --data-snapshot-luns User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2203,7 +2124,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:11:16 GMT + - Wed, 27 Jan 2021 08:23:06 GMT expires: - '-1' pragma: @@ -2236,17 +2157,14 @@ interactions: Content-Length: - '810' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot --data-snapshots --data-snapshot-luns User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0\",\r\n @@ -2255,7 +2173,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-10-15T08:11:21.4885545+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-01-27T08:23:11.8655209+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"hostCaching\": \"ReadWrite\",\r\n \ \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2268,7 +2186,7 @@ interactions: \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/04012433-9445-420d-a4e4-183e3565d8ed?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/1fd81086-c70c-4cd1-9a46-7c6b6785193f?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -2276,7 +2194,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:11:23 GMT + - Wed, 27 Jan 2021 08:23:13 GMT expires: - '-1' pragma: @@ -2289,9 +2207,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1199 + - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1198 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -2299,111 +2217,7 @@ interactions: body: null headers: Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version create - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot - --data-snapshots --data-snapshot-luns - User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/04012433-9445-420d-a4e4-183e3565d8ed?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2020-10-15T08:11:21.4729269+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"04012433-9445-420d-a4e4-183e3565d8ed\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:11:54 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4190 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version create - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot - --data-snapshots --data-snapshot-luns - User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/04012433-9445-420d-a4e4-183e3565d8ed?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2020-10-15T08:11:21.4729269+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"04012433-9445-420d-a4e4-183e3565d8ed\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:12:24 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4187 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2414,14 +2228,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot --data-snapshots --data-snapshot-luns User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/04012433-9445-420d-a4e4-183e3565d8ed?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/1fd81086-c70c-4cd1-9a46-7c6b6785193f?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-10-15T08:11:21.4729269+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"04012433-9445-420d-a4e4-183e3565d8ed\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:23:11.8655209+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"1fd81086-c70c-4cd1-9a46-7c6b6785193f\"\r\n}" headers: cache-control: - no-cache @@ -2430,7 +2243,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:12:54 GMT + - Wed, 27 Jan 2021 08:24:13 GMT expires: - '-1' pragma: @@ -2447,7 +2260,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4184 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4173 status: code: 200 message: OK @@ -2455,7 +2268,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2466,14 +2279,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot --data-snapshots --data-snapshot-luns User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/04012433-9445-420d-a4e4-183e3565d8ed?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/1fd81086-c70c-4cd1-9a46-7c6b6785193f?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-10-15T08:11:21.4729269+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"04012433-9445-420d-a4e4-183e3565d8ed\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:23:11.8655209+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"1fd81086-c70c-4cd1-9a46-7c6b6785193f\"\r\n}" headers: cache-control: - no-cache @@ -2482,7 +2294,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:13:24 GMT + - Wed, 27 Jan 2021 08:25:15 GMT expires: - '-1' pragma: @@ -2499,7 +2311,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4181 + - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4170 status: code: 200 message: OK @@ -2507,7 +2319,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2518,14 +2330,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot --data-snapshots --data-snapshot-luns User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/04012433-9445-420d-a4e4-183e3565d8ed?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/1fd81086-c70c-4cd1-9a46-7c6b6785193f?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-10-15T08:11:21.4729269+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"04012433-9445-420d-a4e4-183e3565d8ed\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:23:11.8655209+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"1fd81086-c70c-4cd1-9a46-7c6b6785193f\"\r\n}" headers: cache-control: - no-cache @@ -2534,7 +2345,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:13:55 GMT + - Wed, 27 Jan 2021 08:26:15 GMT expires: - '-1' pragma: @@ -2551,7 +2362,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;4178 + - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4166 status: code: 200 message: OK @@ -2559,7 +2370,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2570,14 +2381,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot --data-snapshots --data-snapshot-luns User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/04012433-9445-420d-a4e4-183e3565d8ed?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/1fd81086-c70c-4cd1-9a46-7c6b6785193f?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-10-15T08:11:21.4729269+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"04012433-9445-420d-a4e4-183e3565d8ed\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:23:11.8655209+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"1fd81086-c70c-4cd1-9a46-7c6b6785193f\"\r\n}" headers: cache-control: - no-cache @@ -2586,7 +2396,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:14:25 GMT + - Wed, 27 Jan 2021 08:27:16 GMT expires: - '-1' pragma: @@ -2603,7 +2413,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4175 + - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4162 status: code: 200 message: OK @@ -2611,7 +2421,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2622,14 +2432,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot --data-snapshots --data-snapshot-luns User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/04012433-9445-420d-a4e4-183e3565d8ed?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/1fd81086-c70c-4cd1-9a46-7c6b6785193f?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-10-15T08:11:21.4729269+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"04012433-9445-420d-a4e4-183e3565d8ed\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:23:11.8655209+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"1fd81086-c70c-4cd1-9a46-7c6b6785193f\"\r\n}" headers: cache-control: - no-cache @@ -2638,7 +2447,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:14:56 GMT + - Wed, 27 Jan 2021 08:28:18 GMT expires: - '-1' pragma: @@ -2655,7 +2464,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4173 + - Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;4156 status: code: 200 message: OK @@ -2663,7 +2472,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2674,14 +2483,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot --data-snapshots --data-snapshot-luns User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/04012433-9445-420d-a4e4-183e3565d8ed?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/1fd81086-c70c-4cd1-9a46-7c6b6785193f?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-10-15T08:11:21.4729269+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"04012433-9445-420d-a4e4-183e3565d8ed\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:23:11.8655209+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"1fd81086-c70c-4cd1-9a46-7c6b6785193f\"\r\n}" headers: cache-control: - no-cache @@ -2690,7 +2498,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:15:26 GMT + - Wed, 27 Jan 2021 08:29:18 GMT expires: - '-1' pragma: @@ -2707,7 +2515,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1180,Microsoft.Compute/GetOperationStatus30Min;4167 + - Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;4152 status: code: 200 message: OK @@ -2715,7 +2523,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2726,23 +2534,23 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot --data-snapshots --data-snapshot-luns User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/04012433-9445-420d-a4e4-183e3565d8ed?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/1fd81086-c70c-4cd1-9a46-7c6b6785193f?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-10-15T08:11:21.4729269+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"04012433-9445-420d-a4e4-183e3565d8ed\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:23:11.8655209+00:00\",\r\n \"endTime\": + \"2021-01-27T08:29:57.6958624+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"1fd81086-c70c-4cd1-9a46-7c6b6785193f\"\r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '184' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:15:57 GMT + - Wed, 27 Jan 2021 08:30:20 GMT expires: - '-1' pragma: @@ -2759,7 +2567,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1178,Microsoft.Compute/GetOperationStatus30Min;4162 + - Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4148 status: code: 200 message: OK @@ -2767,7 +2575,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2778,375 +2586,9 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot --data-snapshots --data-snapshot-luns User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/04012433-9445-420d-a4e4-183e3565d8ed?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2020-10-15T08:11:21.4729269+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"04012433-9445-420d-a4e4-183e3565d8ed\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:16:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1175,Microsoft.Compute/GetOperationStatus30Min;4156 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version create - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot - --data-snapshots --data-snapshot-luns - User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/04012433-9445-420d-a4e4-183e3565d8ed?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2020-10-15T08:11:21.4729269+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"04012433-9445-420d-a4e4-183e3565d8ed\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:16:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1173,Microsoft.Compute/GetOperationStatus30Min;4151 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version create - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot - --data-snapshots --data-snapshot-luns - User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/04012433-9445-420d-a4e4-183e3565d8ed?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2020-10-15T08:11:21.4729269+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"04012433-9445-420d-a4e4-183e3565d8ed\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:17:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1170,Microsoft.Compute/GetOperationStatus30Min;4145 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version create - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot - --data-snapshots --data-snapshot-luns - User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/04012433-9445-420d-a4e4-183e3565d8ed?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2020-10-15T08:11:21.4729269+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"04012433-9445-420d-a4e4-183e3565d8ed\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:17:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1166,Microsoft.Compute/GetOperationStatus30Min;4139 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version create - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot - --data-snapshots --data-snapshot-luns - User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/04012433-9445-420d-a4e4-183e3565d8ed?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2020-10-15T08:11:21.4729269+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"04012433-9445-420d-a4e4-183e3565d8ed\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:18:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1166,Microsoft.Compute/GetOperationStatus30Min;4133 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version create - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot - --data-snapshots --data-snapshot-luns - User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/04012433-9445-420d-a4e4-183e3565d8ed?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2020-10-15T08:11:21.4729269+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"04012433-9445-420d-a4e4-183e3565d8ed\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:18:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1172,Microsoft.Compute/GetOperationStatus30Min;4128 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version create - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot - --data-snapshots --data-snapshot-luns - User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/04012433-9445-420d-a4e4-183e3565d8ed?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2020-10-15T08:11:21.4729269+00:00\",\r\n \"endTime\": - \"2020-10-15T08:19:07.3468217+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"04012433-9445-420d-a4e4-183e3565d8ed\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '184' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:19:30 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1173,Microsoft.Compute/GetOperationStatus30Min;4123 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version create - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot - --data-snapshots --data-snapshot-luns - User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0\",\r\n @@ -3155,7 +2597,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-10-15T08:11:21.4885545+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-01-27T08:23:11.8655209+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 10,\r\n \"hostCaching\": \"ReadWrite\",\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -3175,7 +2617,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:19:30 GMT + - Wed, 27 Jan 2021 08:30:20 GMT expires: - '-1' pragma: @@ -3192,7 +2634,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1997,Microsoft.Compute/GetGalleryImageVersion30Min;9993 + - Microsoft.Compute/GetGalleryImageVersion3Min;1998,Microsoft.Compute/GetGalleryImageVersion30Min;9986 status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_image_build_shared_image.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_image_build_shared_image.yaml index 12a9522ee69..321f3a16558 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_image_build_shared_image.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_image_build_shared_image.yaml @@ -14,14 +14,14 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-11-10T05:41:21Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 05:41:24 GMT + - Wed, 27 Jan 2021 08:20:47 GMT expires: - '-1' pragma: @@ -63,14 +63,14 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-msi/0.2.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-msi/0.2.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1?api-version=2015-08-31-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1","name":"ide1","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus","tags":{},"properties":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"4520346f-d936-4e92-841c-a1f60d8147c5","clientId":"452ad275-3ef7-42db-a6fd-caaaae8a2ba1","clientSecretUrl":"https://control-westus.identity.azure.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1/credentials?tid=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a&oid=4520346f-d936-4e92-841c-a1f60d8147c5&aid=452ad275-3ef7-42db-a6fd-caaaae8a2ba1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1","name":"ide1","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus","tags":{},"properties":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"b02078bf-b7e0-4832-8ed9-ddeb9750f042","clientId":"e4532ebc-d0af-4884-893f-21371e7c1769","clientSecretUrl":"https://control-westus.identity.azure.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1/credentials?tid=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a&oid=b02078bf-b7e0-4832-8ed9-ddeb9750f042&aid=e4532ebc-d0af-4884-893f-21371e7c1769"}}' headers: cache-control: - no-cache @@ -79,7 +79,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 05:41:33 GMT + - Wed, 27 Jan 2021 08:20:57 GMT expires: - '-1' location: @@ -91,7 +91,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -110,7 +110,7 @@ interactions: - --assignee --role --scope User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -119,16 +119,16 @@ interactions: body: string: '{"value":[{"properties":{"roleName":"Contributor","type":"BuiltInRole","description":"Grants full access to manage all resources, but does not allow you to assign roles - in Azure RBAC.","assignableScopes":["/"],"permissions":[{"actions":["*"],"notActions":["Microsoft.Authorization/*/Delete","Microsoft.Authorization/*/Write","Microsoft.Authorization/elevateAccess/Action","Microsoft.Blueprint/blueprintAssignments/write","Microsoft.Blueprint/blueprintAssignments/delete"],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-02-02T21:55:09.8806423Z","updatedOn":"2020-08-14T20:15:12.5169529Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","type":"Microsoft.Authorization/roleDefinitions","name":"b24988ac-6180-42a0-ab88-20f7382dd24c"}]}' + in Azure RBAC, manage assignments in Azure Blueprints, or share image galleries.","assignableScopes":["/"],"permissions":[{"actions":["*"],"notActions":["Microsoft.Authorization/*/Delete","Microsoft.Authorization/*/Write","Microsoft.Authorization/elevateAccess/Action","Microsoft.Blueprint/blueprintAssignments/write","Microsoft.Blueprint/blueprintAssignments/delete","Microsoft.Compute/galleries/share/action"],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-02-02T21:55:09.8806423Z","updatedOn":"2020-12-04T00:34:54.8501087Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","type":"Microsoft.Authorization/roleDefinitions","name":"b24988ac-6180-42a0-ab88-20f7382dd24c"}]}' headers: cache-control: - no-cache content-length: - - '875' + - '984' content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 05:42:18 GMT + - Wed, 27 Jan 2021 08:21:43 GMT expires: - '-1' pragma: @@ -161,14 +161,14 @@ interactions: - --assignee --role --scope User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27452ad275-3ef7-42db-a6fd-caaaae8a2ba1%27%29&api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27e4532ebc-d0af-4884-893f-21371e7c1769%27%29&api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"4520346f-d936-4e92-841c-a1f60d8147c5","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":["isExplicit=True","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1"],"appDisplayName":null,"appId":"452ad275-3ef7-42db-a6fd-caaaae8a2ba1","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"ide1","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"078F3498122D9328F075095BCEC029A086E83F9F","endDate":"2021-02-08T05:36:00Z","keyId":"0280eb6a-8d69-45cf-bcfd-7f83b50ac245","startDate":"2020-11-10T05:36:00Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["452ad275-3ef7-42db-a6fd-caaaae8a2ba1","https://identity.azure.net/oyEpprvyXhRKPOcfkvgN5hCSBcUZVpY9PC5e8r0TOWY="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null}]}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"b02078bf-b7e0-4832-8ed9-ddeb9750f042","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":["isExplicit=True","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1"],"appDisplayName":null,"appId":"e4532ebc-d0af-4884-893f-21371e7c1769","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"ide1","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"7F2914F4449493D3D697CC4E1BCF9D4733E36B77","endDate":"2021-04-27T08:15:00Z","keyId":"382d0829-2c1e-48ec-b875-912a4de5d7bb","startDate":"2021-01-27T08:15:00Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["e4532ebc-d0af-4884-893f-21371e7c1769","https://identity.azure.net/gTUHCvrCqtRVA7M+oR30kudJYOiNvoj324G0FcA2f/0="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' @@ -181,19 +181,19 @@ interactions: dataserviceversion: - 3.0; date: - - Tue, 10 Nov 2020 05:42:18 GMT + - Wed, 27 Jan 2021 08:21:44 GMT duration: - - '3143737' + - '2768810' expires: - '-1' ocp-aad-diagnostics-server-name: - - YSC732P+9KwNDKMKvIq6N5E0Ljk2MfIpjnajUyUrEeY= + - aOHjnzmAVev2orqghZkKg7TMbI+/Z78uaiRlk0USYpU= ocp-aad-session-key: - - ArGnvSztvY4sTqn7Zk9WV6zQuOKIrOo-iMhEozHII8bTDNifa9GaRoBh5ujY4IacSrLr3xH7yOIyWoIuyotSu6ktBhUwvE_8EQ4UWk29cRcIWy4vlg5IweStmOBPr-Xv._YkNCaPF1FidDSQG4jzBP2aoQP7mlrW_t0gjLMIQYFY + - ImWKUZUpotl13KLVD2Eq4rs90mh30lNUlgPrTExAKm41qNgHFl_EoZ2SjqIHXJ5UNe69SJjg0TAkhL-nGUjFUHYN91Reh1Tb3uXBSYVfL9dc9_Yopvsob6NzwI8cICec.RCcqYg4jfTCLP3OLy4HgGpDbv3z5LoY4D69Xsj59y2M pragma: - no-cache request-id: - - b105f41f-2a11-49e9-8a46-8b84d7b23cee + - 377bc24b-2d1f-4ae3-b7f7-56aa0289666f strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -209,7 +209,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c", - "principalId": "4520346f-d936-4e92-841c-a1f60d8147c5"}}' + "principalId": "b02078bf-b7e0-4832-8ed9-ddeb9750f042"}}' headers: Accept: - application/json @@ -229,14 +229,14 @@ interactions: - --assignee --role --scope User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4520346f-d936-4e92-841c-a1f60d8147c5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","condition":null,"conditionVersion":null,"createdOn":"2020-11-10T05:42:19.8150703Z","updatedOn":"2020-11-10T05:42:19.8150703Z","createdBy":null,"updatedBy":"181c08fa-7ac8-48a6-a869-342ab74566a4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b02078bf-b7e0-4832-8ed9-ddeb9750f042","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","condition":null,"conditionVersion":null,"createdOn":"2021-01-27T08:21:45.5187664Z","updatedOn":"2021-01-27T08:21:46.5248990Z","createdBy":null,"updatedBy":"181c08fa-7ac8-48a6-a869-342ab74566a4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' headers: cache-control: - no-cache @@ -245,7 +245,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 05:42:21 GMT + - Wed, 27 Jan 2021 08:21:48 GMT expires: - '-1' pragma: @@ -257,7 +257,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' status: code: 201 message: Created @@ -276,14 +276,14 @@ interactions: - -g --gallery-name User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-11-10T05:41:21Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -292,7 +292,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 05:42:22 GMT + - Wed, 27 Jan 2021 08:21:49 GMT expires: - '-1' pragma: @@ -324,7 +324,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003?api-version=2019-12-01 response: @@ -332,11 +332,11 @@ interactions: string: "{\r\n \"name\": \"ib_sig000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-IB_SIGWUR5\"\r\n },\r\n \"provisioningState\": + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-IB_SIGFCPB\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/84516cc5-d7e0-47ec-82fd-d7f16d1a40b2?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d825e51f-59fb-4f06-85d5-53d6eb68ca3f?api-version=2019-12-01 cache-control: - no-cache content-length: @@ -344,7 +344,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 05:42:28 GMT + - Wed, 27 Jan 2021 08:21:52 GMT expires: - '-1' pragma: @@ -357,9 +357,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;298 + - Microsoft.Compute/CreateUpdateGallery3Min;47,Microsoft.Compute/CreateUpdateGallery30Min;295 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' status: code: 201 message: Created @@ -377,14 +377,14 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/84516cc5-d7e0-47ec-82fd-d7f16d1a40b2?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d825e51f-59fb-4f06-85d5-53d6eb68ca3f?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-11-10T05:42:27.6661705+00:00\",\r\n \"endTime\": - \"2020-11-10T05:42:27.7599362+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"84516cc5-d7e0-47ec-82fd-d7f16d1a40b2\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:21:51.7737374+00:00\",\r\n \"endTime\": + \"2021-01-27T08:21:51.8674726+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"d825e51f-59fb-4f06-85d5-53d6eb68ca3f\"\r\n}" headers: cache-control: - no-cache @@ -393,7 +393,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 05:42:59 GMT + - Wed, 27 Jan 2021 08:22:22 GMT expires: - '-1' pragma: @@ -410,7 +410,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4170 + - Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;4153 status: code: 200 message: OK @@ -428,7 +428,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003?api-version=2019-12-01 response: @@ -436,7 +436,7 @@ interactions: string: "{\r\n \"name\": \"ib_sig000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-IB_SIGWUR5\"\r\n },\r\n \"provisioningState\": + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-IB_SIGFCPB\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -446,7 +446,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 05:42:59 GMT + - Wed, 27 Jan 2021 08:22:22 GMT expires: - '-1' pragma: @@ -463,7 +463,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2487 + - Microsoft.Compute/GetGallery3Min;337,Microsoft.Compute/GetGallery30Min;2473 status: code: 200 message: OK @@ -482,14 +482,14 @@ interactions: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-11-10T05:41:21Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -498,7 +498,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 05:42:59 GMT + - Wed, 27 Jan 2021 08:22:23 GMT expires: - '-1' pragma: @@ -514,8 +514,8 @@ interactions: message: OK - request: body: '{"location": "westus", "tags": {}, "properties": {"osType": "Linux", "osState": - "Generalized", "identifier": {"publisher": "publisher1", "offer": "offer1", - "sku": "sku1"}, "disallowed": {}}}' + "Generalized", "hyperVGeneration": "V1", "identifier": {"publisher": "publisher1", + "offer": "offer1", "sku": "sku1"}, "disallowed": {}}}' headers: Accept: - application/json @@ -526,13 +526,13 @@ interactions: Connection: - keep-alive Content-Length: - - '190' + - '216' Content-Type: - application/json ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1?api-version=2020-09-30 response: @@ -546,7 +546,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/1ab48b0d-32cf-4853-8c66-40fee3011465?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/98c444cb-f8f4-475c-b995-634ed4304b50?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -554,7 +554,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 05:43:06 GMT + - Wed, 27 Jan 2021 08:22:26 GMT expires: - '-1' pragma: @@ -567,9 +567,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;748 + - Microsoft.Compute/CreateUpdateGalleryImage3Min;147,Microsoft.Compute/CreateUpdateGalleryImage30Min;745 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1195' status: code: 201 message: Created @@ -587,14 +587,14 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/1ab48b0d-32cf-4853-8c66-40fee3011465?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/98c444cb-f8f4-475c-b995-634ed4304b50?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-11-10T05:43:05.1820517+00:00\",\r\n \"endTime\": - \"2020-11-10T05:43:05.2757753+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"1ab48b0d-32cf-4853-8c66-40fee3011465\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:22:26.4769123+00:00\",\r\n \"endTime\": + \"2021-01-27T08:22:26.5706507+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"98c444cb-f8f4-475c-b995-634ed4304b50\"\r\n}" headers: cache-control: - no-cache @@ -603,7 +603,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 05:43:36 GMT + - Wed, 27 Jan 2021 08:22:56 GMT expires: - '-1' pragma: @@ -620,7 +620,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4167 + - Microsoft.Compute/GetOperationStatus3Min;1182,Microsoft.Compute/GetOperationStatus30Min;4148 status: code: 200 message: OK @@ -638,7 +638,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1?api-version=2020-09-30 response: @@ -658,7 +658,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 05:43:36 GMT + - Wed, 27 Jan 2021 08:22:57 GMT expires: - '-1' pragma: @@ -675,7 +675,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;595,Microsoft.Compute/GetGalleryImage30Min;2980 + - Microsoft.Compute/GetGalleryImage3Min;587,Microsoft.Compute/GetGalleryImage30Min;2973 status: code: 200 message: OK @@ -694,14 +694,14 @@ interactions: - -n -g --scripts --image-source --identity --defer User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-11-10T05:41:21Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -710,7 +710,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 05:43:38 GMT + - Wed, 27 Jan 2021 08:22:58 GMT expires: - '-1' pragma: @@ -739,7 +739,7 @@ interactions: - -n -g --scripts --image-source --identity --defer User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -799,7 +799,8 @@ interactions: Pacific"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centraluseuap","name":"centraluseuap","displayName":"Central US EUAP","regionalDisplayName":"(US) Central US EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","pairedRegion":[{"name":"eastus2euap","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2euap"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2euap","name":"eastus2euap","displayName":"East US 2 EUAP","regionalDisplayName":"(US) East US 2 EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","pairedRegion":[{"name":"centraluseuap","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centraluseuap"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westcentralus","name":"westcentralus","displayName":"West - Central US","regionalDisplayName":"(US) West Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-110.234","latitude":"40.890","physicalLocation":"Wyoming","pairedRegion":[{"name":"westus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricawest","name":"southafricawest","displayName":"South + Central US","regionalDisplayName":"(US) West Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-110.234","latitude":"40.890","physicalLocation":"Wyoming","pairedRegion":[{"name":"westus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus3","name":"westus3","displayName":"West + US 3","regionalDisplayName":"(US) West US 3","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-112.074036","latitude":"33.448376","physicalLocation":"Phoenix","pairedRegion":[{"name":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricawest","name":"southafricawest","displayName":"South Africa West","regionalDisplayName":"(Africa) South Africa West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Africa","longitude":"18.843266","latitude":"-34.075691","physicalLocation":"Cape Town","pairedRegion":[{"name":"southafricanorth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricanorth"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral","name":"australiacentral","displayName":"Australia Central","regionalDisplayName":"(Asia Pacific) Australia Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia @@ -831,11 +832,11 @@ interactions: cache-control: - no-cache content-length: - - '25098' + - '25532' content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 05:43:39 GMT + - Wed, 27 Jan 2021 08:22:59 GMT expires: - '-1' pragma: @@ -865,7 +866,7 @@ interactions: --defer User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -925,7 +926,8 @@ interactions: Pacific"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centraluseuap","name":"centraluseuap","displayName":"Central US EUAP","regionalDisplayName":"(US) Central US EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","pairedRegion":[{"name":"eastus2euap","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2euap"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2euap","name":"eastus2euap","displayName":"East US 2 EUAP","regionalDisplayName":"(US) East US 2 EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","pairedRegion":[{"name":"centraluseuap","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centraluseuap"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westcentralus","name":"westcentralus","displayName":"West - Central US","regionalDisplayName":"(US) West Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-110.234","latitude":"40.890","physicalLocation":"Wyoming","pairedRegion":[{"name":"westus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricawest","name":"southafricawest","displayName":"South + Central US","regionalDisplayName":"(US) West Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-110.234","latitude":"40.890","physicalLocation":"Wyoming","pairedRegion":[{"name":"westus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus3","name":"westus3","displayName":"West + US 3","regionalDisplayName":"(US) West US 3","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-112.074036","latitude":"33.448376","physicalLocation":"Phoenix","pairedRegion":[{"name":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricawest","name":"southafricawest","displayName":"South Africa West","regionalDisplayName":"(Africa) South Africa West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Africa","longitude":"18.843266","latitude":"-34.075691","physicalLocation":"Cape Town","pairedRegion":[{"name":"southafricanorth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricanorth"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral","name":"australiacentral","displayName":"Australia Central","regionalDisplayName":"(Asia Pacific) Australia Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia @@ -957,11 +959,11 @@ interactions: cache-control: - no-cache content-length: - - '25098' + - '25532' content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 05:43:40 GMT + - Wed, 27 Jan 2021 08:23:01 GMT expires: - '-1' pragma: @@ -1002,7 +1004,7 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT @@ -1025,7 +1027,7 @@ interactions: \"location\": \"westus\",\n \"tags\": {}\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/8b96ff97-7aca-4ffc-bc10-8d41a70c74e5?api-version=2020-02-14 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/a07e7a67-0299-4838-ae10-6579e777fa9f?api-version=2020-02-14 cache-control: - no-cache content-length: @@ -1033,7 +1035,7 @@ interactions: content-type: - application/json date: - - Tue, 10 Nov 2020 05:43:52 GMT + - Wed, 27 Jan 2021 08:23:13 GMT expires: - '-1' pragma: @@ -1045,7 +1047,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 201 message: Created @@ -1064,23 +1066,22 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/8b96ff97-7aca-4ffc-bc10-8d41a70c74e5?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/a07e7a67-0299-4838-ae10-6579e777fa9f?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"8B96FF97-7ACA-4FFC-BC10-8D41A70C74E5\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2020-11-10T05:43:50.7431153Z\",\n \"endTime\": - \"2020-11-10T05:44:21.719746Z\"\n}" + string: "{\n \"name\": \"A07E7A67-0299-4838-AE10-6579E777FA9F\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-01-27T08:23:12.1528Z\"\n}" headers: cache-control: - no-cache content-length: - - '164' + - '119' content-type: - application/json date: - - Tue, 10 Nov 2020 05:44:24 GMT + - Wed, 27 Jan 2021 08:23:46 GMT expires: - '-1' pragma: @@ -1113,36 +1114,23 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template01?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/a07e7a67-0299-4838-ae10-6579e777fa9f?api-version=2020-02-14 response: body: - string: "{\n \"properties\": {\n \"source\": {\n \"offer\": \"UbuntuServer\",\n - \ \"publisher\": \"Canonical\",\n \"sku\": \"18.04-LTS\",\n \"type\": - \"PlatformImage\",\n \"version\": \"18.04.201808140\"\n },\n \"customize\": - [\n {\n \"name\": \"customizeScript.sh\",\n \"scriptUri\": \"https://raw.githubusercontent.com/danielsollondon/azvmimagebuilder/master/quickquickstarts/customizeScript.sh\",\n - \ \"sha256Checksum\": \"2c6ff6902a4a52deee69e8db26d0036a53388651008aaf31795bb20dabd21fd8\",\n - \ \"type\": \"Shell\"\n }\n ],\n \"distribute\": [\n {\n \"artifactTags\": - {},\n \"excludeFromLatest\": false,\n \"galleryImageId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1\",\n - \ \"replicationRegions\": [\n \"westus\"\n ],\n \"runOutputName\": - \"image1\",\n \"type\": \"SharedImage\"\n }\n ],\n \"provisioningState\": - \"Succeeded\",\n \"buildTimeoutInMinutes\": 0,\n \"vmProfile\": {\n \"vmSize\": - \"\",\n \"osDiskSizeGB\": 0\n }\n },\n \"identity\": {\n \"type\": \"UserAssigned\",\n - \ \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1\": - {\n \"principalId\": \"4520346f-d936-4e92-841c-a1f60d8147c5\",\n \"clientId\": - \"452ad275-3ef7-42db-a6fd-caaaae8a2ba1\"\n }\n }\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template01\",\n - \"name\": \"template01\",\n \"type\": \"Microsoft.VirtualMachineImages/imageTemplates\",\n - \"location\": \"westus\",\n \"tags\": {}\n}" + string: "{\n \"name\": \"A07E7A67-0299-4838-AE10-6579E777FA9F\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-01-27T08:23:12.1528Z\",\n \"endTime\": + \"2021-01-27T08:23:46.5911107Z\"\n}" headers: cache-control: - no-cache content-length: - - '1789' + - '162' content-type: - application/json date: - - Tue, 10 Nov 2020 05:44:24 GMT + - Wed, 27 Jan 2021 08:24:16 GMT expires: - '-1' pragma: @@ -1168,49 +1156,60 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - image builder run + - image builder update Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template01/run?api-version=2020-02-14 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template01?api-version=2020-02-14 response: body: - string: '' + string: "{\n \"properties\": {\n \"source\": {\n \"offer\": \"UbuntuServer\",\n + \ \"publisher\": \"Canonical\",\n \"sku\": \"18.04-LTS\",\n \"type\": + \"PlatformImage\",\n \"version\": \"18.04.201808140\"\n },\n \"customize\": + [\n {\n \"name\": \"customizeScript.sh\",\n \"scriptUri\": \"https://raw.githubusercontent.com/danielsollondon/azvmimagebuilder/master/quickquickstarts/customizeScript.sh\",\n + \ \"sha256Checksum\": \"2c6ff6902a4a52deee69e8db26d0036a53388651008aaf31795bb20dabd21fd8\",\n + \ \"type\": \"Shell\"\n }\n ],\n \"distribute\": [\n {\n \"artifactTags\": + {},\n \"excludeFromLatest\": false,\n \"galleryImageId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1\",\n + \ \"replicationRegions\": [\n \"westus\"\n ],\n \"runOutputName\": + \"image1\",\n \"type\": \"SharedImage\"\n }\n ],\n \"provisioningState\": + \"Succeeded\",\n \"buildTimeoutInMinutes\": 0,\n \"vmProfile\": {\n \"vmSize\": + \"\",\n \"osDiskSizeGB\": 0\n }\n },\n \"identity\": {\n \"type\": \"UserAssigned\",\n + \ \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1\": + {\n \"principalId\": \"b02078bf-b7e0-4832-8ed9-ddeb9750f042\",\n \"clientId\": + \"e4532ebc-d0af-4884-893f-21371e7c1769\"\n }\n }\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template01\",\n + \"name\": \"template01\",\n \"type\": \"Microsoft.VirtualMachineImages/imageTemplates\",\n + \"location\": \"westus\",\n \"tags\": {}\n}" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/a078db25-2e6f-4d75-9db5-8bbf491d63fb?api-version=2020-02-14 cache-control: - no-cache content-length: - - '0' + - '1789' + content-type: + - application/json date: - - Tue, 10 Nov 2020 05:44:27 GMT + - Wed, 27 Jan 2021 08:24:16 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/a078db25-2e6f-4d75-9db5-8bbf491d63fb?api-version=2020-02-14 pragma: - no-cache server: - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1222,43 +1221,46 @@ interactions: - image builder run Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/a078db25-2e6f-4d75-9db5-8bbf491d63fb?api-version=2020-02-14 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template01/run?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"A078DB25-2E6F-4D75-9DB5-8BBF491D63FB\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2020-11-10T05:44:27.1965413Z\"\n}" + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/71dcccdb-eaeb-4969-8078-016aa0c7cbe8?api-version=2020-02-14 cache-control: - no-cache content-length: - - '122' - content-type: - - application/json + - '0' date: - - Tue, 10 Nov 2020 05:44:58 GMT + - Wed, 27 Jan 2021 08:24:19 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/71dcccdb-eaeb-4969-8078-016aa0c7cbe8?api-version=2020-02-14 pragma: - no-cache server: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1274,13 +1276,13 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/a078db25-2e6f-4d75-9db5-8bbf491d63fb?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/71dcccdb-eaeb-4969-8078-016aa0c7cbe8?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"A078DB25-2E6F-4D75-9DB5-8BBF491D63FB\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2020-11-10T05:44:27.1965413Z\"\n}" + string: "{\n \"name\": \"71DCCCDB-EAEB-4969-8078-016AA0C7CBE8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-01-27T08:24:19.3091281Z\"\n}" headers: cache-control: - no-cache @@ -1289,7 +1291,7 @@ interactions: content-type: - application/json date: - - Tue, 10 Nov 2020 05:45:29 GMT + - Wed, 27 Jan 2021 08:24:51 GMT expires: - '-1' pragma: @@ -1322,13 +1324,13 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/a078db25-2e6f-4d75-9db5-8bbf491d63fb?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/71dcccdb-eaeb-4969-8078-016aa0c7cbe8?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"A078DB25-2E6F-4D75-9DB5-8BBF491D63FB\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2020-11-10T05:44:27.1965413Z\"\n}" + string: "{\n \"name\": \"71DCCCDB-EAEB-4969-8078-016AA0C7CBE8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-01-27T08:24:19.3091281Z\"\n}" headers: cache-control: - no-cache @@ -1337,7 +1339,7 @@ interactions: content-type: - application/json date: - - Tue, 10 Nov 2020 05:46:00 GMT + - Wed, 27 Jan 2021 08:25:21 GMT expires: - '-1' pragma: @@ -1370,13 +1372,13 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/a078db25-2e6f-4d75-9db5-8bbf491d63fb?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/71dcccdb-eaeb-4969-8078-016aa0c7cbe8?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"A078DB25-2E6F-4D75-9DB5-8BBF491D63FB\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2020-11-10T05:44:27.1965413Z\"\n}" + string: "{\n \"name\": \"71DCCCDB-EAEB-4969-8078-016AA0C7CBE8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-01-27T08:24:19.3091281Z\"\n}" headers: cache-control: - no-cache @@ -1385,7 +1387,7 @@ interactions: content-type: - application/json date: - - Tue, 10 Nov 2020 05:46:30 GMT + - Wed, 27 Jan 2021 08:25:51 GMT expires: - '-1' pragma: @@ -1418,13 +1420,13 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/a078db25-2e6f-4d75-9db5-8bbf491d63fb?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/71dcccdb-eaeb-4969-8078-016aa0c7cbe8?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"A078DB25-2E6F-4D75-9DB5-8BBF491D63FB\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2020-11-10T05:44:27.1965413Z\"\n}" + string: "{\n \"name\": \"71DCCCDB-EAEB-4969-8078-016AA0C7CBE8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-01-27T08:24:19.3091281Z\"\n}" headers: cache-control: - no-cache @@ -1433,7 +1435,7 @@ interactions: content-type: - application/json date: - - Tue, 10 Nov 2020 05:47:01 GMT + - Wed, 27 Jan 2021 08:26:23 GMT expires: - '-1' pragma: @@ -1466,13 +1468,13 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/a078db25-2e6f-4d75-9db5-8bbf491d63fb?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/71dcccdb-eaeb-4969-8078-016aa0c7cbe8?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"A078DB25-2E6F-4D75-9DB5-8BBF491D63FB\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2020-11-10T05:44:27.1965413Z\"\n}" + string: "{\n \"name\": \"71DCCCDB-EAEB-4969-8078-016AA0C7CBE8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-01-27T08:24:19.3091281Z\"\n}" headers: cache-control: - no-cache @@ -1481,7 +1483,7 @@ interactions: content-type: - application/json date: - - Tue, 10 Nov 2020 05:47:31 GMT + - Wed, 27 Jan 2021 08:26:53 GMT expires: - '-1' pragma: @@ -1514,13 +1516,13 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/a078db25-2e6f-4d75-9db5-8bbf491d63fb?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/71dcccdb-eaeb-4969-8078-016aa0c7cbe8?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"A078DB25-2E6F-4D75-9DB5-8BBF491D63FB\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2020-11-10T05:44:27.1965413Z\"\n}" + string: "{\n \"name\": \"71DCCCDB-EAEB-4969-8078-016AA0C7CBE8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-01-27T08:24:19.3091281Z\"\n}" headers: cache-control: - no-cache @@ -1529,7 +1531,7 @@ interactions: content-type: - application/json date: - - Tue, 10 Nov 2020 05:48:02 GMT + - Wed, 27 Jan 2021 08:27:23 GMT expires: - '-1' pragma: @@ -1562,13 +1564,13 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/a078db25-2e6f-4d75-9db5-8bbf491d63fb?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/71dcccdb-eaeb-4969-8078-016aa0c7cbe8?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"A078DB25-2E6F-4D75-9DB5-8BBF491D63FB\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2020-11-10T05:44:27.1965413Z\"\n}" + string: "{\n \"name\": \"71DCCCDB-EAEB-4969-8078-016AA0C7CBE8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-01-27T08:24:19.3091281Z\"\n}" headers: cache-control: - no-cache @@ -1577,7 +1579,7 @@ interactions: content-type: - application/json date: - - Tue, 10 Nov 2020 05:48:32 GMT + - Wed, 27 Jan 2021 08:27:53 GMT expires: - '-1' pragma: @@ -1610,13 +1612,13 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/a078db25-2e6f-4d75-9db5-8bbf491d63fb?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/71dcccdb-eaeb-4969-8078-016aa0c7cbe8?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"A078DB25-2E6F-4D75-9DB5-8BBF491D63FB\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2020-11-10T05:44:27.1965413Z\"\n}" + string: "{\n \"name\": \"71DCCCDB-EAEB-4969-8078-016AA0C7CBE8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-01-27T08:24:19.3091281Z\"\n}" headers: cache-control: - no-cache @@ -1625,7 +1627,7 @@ interactions: content-type: - application/json date: - - Tue, 10 Nov 2020 05:49:03 GMT + - Wed, 27 Jan 2021 08:28:25 GMT expires: - '-1' pragma: @@ -1658,13 +1660,13 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/a078db25-2e6f-4d75-9db5-8bbf491d63fb?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/71dcccdb-eaeb-4969-8078-016aa0c7cbe8?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"A078DB25-2E6F-4D75-9DB5-8BBF491D63FB\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2020-11-10T05:44:27.1965413Z\"\n}" + string: "{\n \"name\": \"71DCCCDB-EAEB-4969-8078-016AA0C7CBE8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-01-27T08:24:19.3091281Z\"\n}" headers: cache-control: - no-cache @@ -1673,7 +1675,7 @@ interactions: content-type: - application/json date: - - Tue, 10 Nov 2020 05:49:34 GMT + - Wed, 27 Jan 2021 08:28:55 GMT expires: - '-1' pragma: @@ -1706,13 +1708,13 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/a078db25-2e6f-4d75-9db5-8bbf491d63fb?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/71dcccdb-eaeb-4969-8078-016aa0c7cbe8?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"A078DB25-2E6F-4D75-9DB5-8BBF491D63FB\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2020-11-10T05:44:27.1965413Z\"\n}" + string: "{\n \"name\": \"71DCCCDB-EAEB-4969-8078-016AA0C7CBE8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-01-27T08:24:19.3091281Z\"\n}" headers: cache-control: - no-cache @@ -1721,7 +1723,7 @@ interactions: content-type: - application/json date: - - Tue, 10 Nov 2020 05:50:04 GMT + - Wed, 27 Jan 2021 08:29:25 GMT expires: - '-1' pragma: @@ -1754,13 +1756,13 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/a078db25-2e6f-4d75-9db5-8bbf491d63fb?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/71dcccdb-eaeb-4969-8078-016aa0c7cbe8?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"A078DB25-2E6F-4D75-9DB5-8BBF491D63FB\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2020-11-10T05:44:27.1965413Z\"\n}" + string: "{\n \"name\": \"71DCCCDB-EAEB-4969-8078-016AA0C7CBE8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-01-27T08:24:19.3091281Z\"\n}" headers: cache-control: - no-cache @@ -1769,7 +1771,7 @@ interactions: content-type: - application/json date: - - Tue, 10 Nov 2020 05:50:34 GMT + - Wed, 27 Jan 2021 08:29:56 GMT expires: - '-1' pragma: @@ -1802,13 +1804,13 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/a078db25-2e6f-4d75-9db5-8bbf491d63fb?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/71dcccdb-eaeb-4969-8078-016aa0c7cbe8?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"A078DB25-2E6F-4D75-9DB5-8BBF491D63FB\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2020-11-10T05:44:27.1965413Z\"\n}" + string: "{\n \"name\": \"71DCCCDB-EAEB-4969-8078-016AA0C7CBE8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-01-27T08:24:19.3091281Z\"\n}" headers: cache-control: - no-cache @@ -1817,7 +1819,7 @@ interactions: content-type: - application/json date: - - Tue, 10 Nov 2020 05:51:05 GMT + - Wed, 27 Jan 2021 08:30:27 GMT expires: - '-1' pragma: @@ -1850,13 +1852,13 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/a078db25-2e6f-4d75-9db5-8bbf491d63fb?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/71dcccdb-eaeb-4969-8078-016aa0c7cbe8?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"A078DB25-2E6F-4D75-9DB5-8BBF491D63FB\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2020-11-10T05:44:27.1965413Z\"\n}" + string: "{\n \"name\": \"71DCCCDB-EAEB-4969-8078-016AA0C7CBE8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-01-27T08:24:19.3091281Z\"\n}" headers: cache-control: - no-cache @@ -1865,7 +1867,7 @@ interactions: content-type: - application/json date: - - Tue, 10 Nov 2020 05:51:37 GMT + - Wed, 27 Jan 2021 08:30:58 GMT expires: - '-1' pragma: @@ -1898,13 +1900,13 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/a078db25-2e6f-4d75-9db5-8bbf491d63fb?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/71dcccdb-eaeb-4969-8078-016aa0c7cbe8?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"A078DB25-2E6F-4D75-9DB5-8BBF491D63FB\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2020-11-10T05:44:27.1965413Z\"\n}" + string: "{\n \"name\": \"71DCCCDB-EAEB-4969-8078-016AA0C7CBE8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-01-27T08:24:19.3091281Z\"\n}" headers: cache-control: - no-cache @@ -1913,7 +1915,7 @@ interactions: content-type: - application/json date: - - Tue, 10 Nov 2020 05:52:07 GMT + - Wed, 27 Jan 2021 08:31:28 GMT expires: - '-1' pragma: @@ -1946,13 +1948,13 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/a078db25-2e6f-4d75-9db5-8bbf491d63fb?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/71dcccdb-eaeb-4969-8078-016aa0c7cbe8?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"A078DB25-2E6F-4D75-9DB5-8BBF491D63FB\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2020-11-10T05:44:27.1965413Z\"\n}" + string: "{\n \"name\": \"71DCCCDB-EAEB-4969-8078-016AA0C7CBE8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-01-27T08:24:19.3091281Z\"\n}" headers: cache-control: - no-cache @@ -1961,7 +1963,7 @@ interactions: content-type: - application/json date: - - Tue, 10 Nov 2020 05:52:38 GMT + - Wed, 27 Jan 2021 08:31:58 GMT expires: - '-1' pragma: @@ -1994,13 +1996,13 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/a078db25-2e6f-4d75-9db5-8bbf491d63fb?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/71dcccdb-eaeb-4969-8078-016aa0c7cbe8?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"A078DB25-2E6F-4D75-9DB5-8BBF491D63FB\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2020-11-10T05:44:27.1965413Z\"\n}" + string: "{\n \"name\": \"71DCCCDB-EAEB-4969-8078-016AA0C7CBE8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-01-27T08:24:19.3091281Z\"\n}" headers: cache-control: - no-cache @@ -2009,7 +2011,7 @@ interactions: content-type: - application/json date: - - Tue, 10 Nov 2020 05:53:08 GMT + - Wed, 27 Jan 2021 08:32:29 GMT expires: - '-1' pragma: @@ -2042,13 +2044,13 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/a078db25-2e6f-4d75-9db5-8bbf491d63fb?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/71dcccdb-eaeb-4969-8078-016aa0c7cbe8?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"A078DB25-2E6F-4D75-9DB5-8BBF491D63FB\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2020-11-10T05:44:27.1965413Z\"\n}" + string: "{\n \"name\": \"71DCCCDB-EAEB-4969-8078-016AA0C7CBE8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-01-27T08:24:19.3091281Z\"\n}" headers: cache-control: - no-cache @@ -2057,7 +2059,7 @@ interactions: content-type: - application/json date: - - Tue, 10 Nov 2020 05:53:39 GMT + - Wed, 27 Jan 2021 08:33:00 GMT expires: - '-1' pragma: @@ -2090,13 +2092,13 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/a078db25-2e6f-4d75-9db5-8bbf491d63fb?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/71dcccdb-eaeb-4969-8078-016aa0c7cbe8?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"A078DB25-2E6F-4D75-9DB5-8BBF491D63FB\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2020-11-10T05:44:27.1965413Z\"\n}" + string: "{\n \"name\": \"71DCCCDB-EAEB-4969-8078-016AA0C7CBE8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-01-27T08:24:19.3091281Z\"\n}" headers: cache-control: - no-cache @@ -2105,7 +2107,7 @@ interactions: content-type: - application/json date: - - Tue, 10 Nov 2020 05:54:09 GMT + - Wed, 27 Jan 2021 08:33:30 GMT expires: - '-1' pragma: @@ -2138,13 +2140,13 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/a078db25-2e6f-4d75-9db5-8bbf491d63fb?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/71dcccdb-eaeb-4969-8078-016aa0c7cbe8?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"A078DB25-2E6F-4D75-9DB5-8BBF491D63FB\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2020-11-10T05:44:27.1965413Z\"\n}" + string: "{\n \"name\": \"71DCCCDB-EAEB-4969-8078-016AA0C7CBE8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-01-27T08:24:19.3091281Z\"\n}" headers: cache-control: - no-cache @@ -2153,7 +2155,7 @@ interactions: content-type: - application/json date: - - Tue, 10 Nov 2020 05:54:41 GMT + - Wed, 27 Jan 2021 08:34:01 GMT expires: - '-1' pragma: @@ -2186,13 +2188,13 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/a078db25-2e6f-4d75-9db5-8bbf491d63fb?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/71dcccdb-eaeb-4969-8078-016aa0c7cbe8?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"A078DB25-2E6F-4D75-9DB5-8BBF491D63FB\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2020-11-10T05:44:27.1965413Z\"\n}" + string: "{\n \"name\": \"71DCCCDB-EAEB-4969-8078-016AA0C7CBE8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-01-27T08:24:19.3091281Z\"\n}" headers: cache-control: - no-cache @@ -2201,7 +2203,7 @@ interactions: content-type: - application/json date: - - Tue, 10 Nov 2020 05:55:11 GMT + - Wed, 27 Jan 2021 08:34:31 GMT expires: - '-1' pragma: @@ -2234,13 +2236,13 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/a078db25-2e6f-4d75-9db5-8bbf491d63fb?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/71dcccdb-eaeb-4969-8078-016aa0c7cbe8?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"A078DB25-2E6F-4D75-9DB5-8BBF491D63FB\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2020-11-10T05:44:27.1965413Z\"\n}" + string: "{\n \"name\": \"71DCCCDB-EAEB-4969-8078-016AA0C7CBE8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-01-27T08:24:19.3091281Z\"\n}" headers: cache-control: - no-cache @@ -2249,7 +2251,7 @@ interactions: content-type: - application/json date: - - Tue, 10 Nov 2020 05:55:41 GMT + - Wed, 27 Jan 2021 08:35:01 GMT expires: - '-1' pragma: @@ -2282,13 +2284,13 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/a078db25-2e6f-4d75-9db5-8bbf491d63fb?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/71dcccdb-eaeb-4969-8078-016aa0c7cbe8?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"A078DB25-2E6F-4D75-9DB5-8BBF491D63FB\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2020-11-10T05:44:27.1965413Z\"\n}" + string: "{\n \"name\": \"71DCCCDB-EAEB-4969-8078-016AA0C7CBE8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-01-27T08:24:19.3091281Z\"\n}" headers: cache-control: - no-cache @@ -2297,7 +2299,7 @@ interactions: content-type: - application/json date: - - Tue, 10 Nov 2020 05:56:12 GMT + - Wed, 27 Jan 2021 08:35:33 GMT expires: - '-1' pragma: @@ -2330,13 +2332,13 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/a078db25-2e6f-4d75-9db5-8bbf491d63fb?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/71dcccdb-eaeb-4969-8078-016aa0c7cbe8?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"A078DB25-2E6F-4D75-9DB5-8BBF491D63FB\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2020-11-10T05:44:27.1965413Z\"\n}" + string: "{\n \"name\": \"71DCCCDB-EAEB-4969-8078-016AA0C7CBE8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-01-27T08:24:19.3091281Z\"\n}" headers: cache-control: - no-cache @@ -2345,7 +2347,7 @@ interactions: content-type: - application/json date: - - Tue, 10 Nov 2020 05:56:42 GMT + - Wed, 27 Jan 2021 08:36:03 GMT expires: - '-1' pragma: @@ -2378,13 +2380,13 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/a078db25-2e6f-4d75-9db5-8bbf491d63fb?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/71dcccdb-eaeb-4969-8078-016aa0c7cbe8?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"A078DB25-2E6F-4D75-9DB5-8BBF491D63FB\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2020-11-10T05:44:27.1965413Z\"\n}" + string: "{\n \"name\": \"71DCCCDB-EAEB-4969-8078-016AA0C7CBE8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-01-27T08:24:19.3091281Z\"\n}" headers: cache-control: - no-cache @@ -2393,7 +2395,7 @@ interactions: content-type: - application/json date: - - Tue, 10 Nov 2020 05:57:13 GMT + - Wed, 27 Jan 2021 08:36:33 GMT expires: - '-1' pragma: @@ -2426,13 +2428,13 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/a078db25-2e6f-4d75-9db5-8bbf491d63fb?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/71dcccdb-eaeb-4969-8078-016aa0c7cbe8?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"A078DB25-2E6F-4D75-9DB5-8BBF491D63FB\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2020-11-10T05:44:27.1965413Z\"\n}" + string: "{\n \"name\": \"71DCCCDB-EAEB-4969-8078-016AA0C7CBE8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-01-27T08:24:19.3091281Z\"\n}" headers: cache-control: - no-cache @@ -2441,7 +2443,7 @@ interactions: content-type: - application/json date: - - Tue, 10 Nov 2020 05:57:44 GMT + - Wed, 27 Jan 2021 08:37:04 GMT expires: - '-1' pragma: @@ -2474,13 +2476,13 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/a078db25-2e6f-4d75-9db5-8bbf491d63fb?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/71dcccdb-eaeb-4969-8078-016aa0c7cbe8?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"A078DB25-2E6F-4D75-9DB5-8BBF491D63FB\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2020-11-10T05:44:27.1965413Z\"\n}" + string: "{\n \"name\": \"71DCCCDB-EAEB-4969-8078-016AA0C7CBE8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-01-27T08:24:19.3091281Z\"\n}" headers: cache-control: - no-cache @@ -2489,7 +2491,7 @@ interactions: content-type: - application/json date: - - Tue, 10 Nov 2020 05:58:15 GMT + - Wed, 27 Jan 2021 08:37:35 GMT expires: - '-1' pragma: @@ -2522,13 +2524,13 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/a078db25-2e6f-4d75-9db5-8bbf491d63fb?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/71dcccdb-eaeb-4969-8078-016aa0c7cbe8?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"A078DB25-2E6F-4D75-9DB5-8BBF491D63FB\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2020-11-10T05:44:27.1965413Z\"\n}" + string: "{\n \"name\": \"71DCCCDB-EAEB-4969-8078-016AA0C7CBE8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-01-27T08:24:19.3091281Z\"\n}" headers: cache-control: - no-cache @@ -2537,7 +2539,7 @@ interactions: content-type: - application/json date: - - Tue, 10 Nov 2020 05:58:45 GMT + - Wed, 27 Jan 2021 08:38:06 GMT expires: - '-1' pragma: @@ -2570,13 +2572,13 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/a078db25-2e6f-4d75-9db5-8bbf491d63fb?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/71dcccdb-eaeb-4969-8078-016aa0c7cbe8?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"A078DB25-2E6F-4D75-9DB5-8BBF491D63FB\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2020-11-10T05:44:27.1965413Z\"\n}" + string: "{\n \"name\": \"71DCCCDB-EAEB-4969-8078-016AA0C7CBE8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-01-27T08:24:19.3091281Z\"\n}" headers: cache-control: - no-cache @@ -2585,7 +2587,7 @@ interactions: content-type: - application/json date: - - Tue, 10 Nov 2020 05:59:15 GMT + - Wed, 27 Jan 2021 08:38:36 GMT expires: - '-1' pragma: @@ -2618,13 +2620,13 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/a078db25-2e6f-4d75-9db5-8bbf491d63fb?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/71dcccdb-eaeb-4969-8078-016aa0c7cbe8?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"A078DB25-2E6F-4D75-9DB5-8BBF491D63FB\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2020-11-10T05:44:27.1965413Z\"\n}" + string: "{\n \"name\": \"71DCCCDB-EAEB-4969-8078-016AA0C7CBE8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-01-27T08:24:19.3091281Z\"\n}" headers: cache-control: - no-cache @@ -2633,7 +2635,7 @@ interactions: content-type: - application/json date: - - Tue, 10 Nov 2020 05:59:46 GMT + - Wed, 27 Jan 2021 08:39:06 GMT expires: - '-1' pragma: @@ -2666,13 +2668,13 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/a078db25-2e6f-4d75-9db5-8bbf491d63fb?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/71dcccdb-eaeb-4969-8078-016aa0c7cbe8?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"A078DB25-2E6F-4D75-9DB5-8BBF491D63FB\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2020-11-10T05:44:27.1965413Z\"\n}" + string: "{\n \"name\": \"71DCCCDB-EAEB-4969-8078-016AA0C7CBE8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-01-27T08:24:19.3091281Z\"\n}" headers: cache-control: - no-cache @@ -2681,7 +2683,7 @@ interactions: content-type: - application/json date: - - Tue, 10 Nov 2020 06:00:17 GMT + - Wed, 27 Jan 2021 08:39:37 GMT expires: - '-1' pragma: @@ -2714,13 +2716,13 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/a078db25-2e6f-4d75-9db5-8bbf491d63fb?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/71dcccdb-eaeb-4969-8078-016aa0c7cbe8?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"A078DB25-2E6F-4D75-9DB5-8BBF491D63FB\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2020-11-10T05:44:27.1965413Z\"\n}" + string: "{\n \"name\": \"71DCCCDB-EAEB-4969-8078-016AA0C7CBE8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-01-27T08:24:19.3091281Z\"\n}" headers: cache-control: - no-cache @@ -2729,7 +2731,7 @@ interactions: content-type: - application/json date: - - Tue, 10 Nov 2020 06:00:48 GMT + - Wed, 27 Jan 2021 08:40:08 GMT expires: - '-1' pragma: @@ -2762,13 +2764,13 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/a078db25-2e6f-4d75-9db5-8bbf491d63fb?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/71dcccdb-eaeb-4969-8078-016aa0c7cbe8?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"A078DB25-2E6F-4D75-9DB5-8BBF491D63FB\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2020-11-10T05:44:27.1965413Z\"\n}" + string: "{\n \"name\": \"71DCCCDB-EAEB-4969-8078-016AA0C7CBE8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-01-27T08:24:19.3091281Z\"\n}" headers: cache-control: - no-cache @@ -2777,7 +2779,7 @@ interactions: content-type: - application/json date: - - Tue, 10 Nov 2020 06:01:18 GMT + - Wed, 27 Jan 2021 08:40:38 GMT expires: - '-1' pragma: @@ -2810,13 +2812,13 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/a078db25-2e6f-4d75-9db5-8bbf491d63fb?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/71dcccdb-eaeb-4969-8078-016aa0c7cbe8?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"A078DB25-2E6F-4D75-9DB5-8BBF491D63FB\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2020-11-10T05:44:27.1965413Z\"\n}" + string: "{\n \"name\": \"71DCCCDB-EAEB-4969-8078-016AA0C7CBE8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-01-27T08:24:19.3091281Z\"\n}" headers: cache-control: - no-cache @@ -2825,7 +2827,7 @@ interactions: content-type: - application/json date: - - Tue, 10 Nov 2020 06:01:48 GMT + - Wed, 27 Jan 2021 08:41:08 GMT expires: - '-1' pragma: @@ -2858,13 +2860,13 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/a078db25-2e6f-4d75-9db5-8bbf491d63fb?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/71dcccdb-eaeb-4969-8078-016aa0c7cbe8?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"A078DB25-2E6F-4D75-9DB5-8BBF491D63FB\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2020-11-10T05:44:27.1965413Z\"\n}" + string: "{\n \"name\": \"71DCCCDB-EAEB-4969-8078-016AA0C7CBE8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-01-27T08:24:19.3091281Z\"\n}" headers: cache-control: - no-cache @@ -2873,7 +2875,7 @@ interactions: content-type: - application/json date: - - Tue, 10 Nov 2020 06:02:19 GMT + - Wed, 27 Jan 2021 08:41:39 GMT expires: - '-1' pragma: @@ -2906,23 +2908,23 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/a078db25-2e6f-4d75-9db5-8bbf491d63fb?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/71dcccdb-eaeb-4969-8078-016aa0c7cbe8?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"A078DB25-2E6F-4D75-9DB5-8BBF491D63FB\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2020-11-10T05:44:27.1965413Z\",\n \"endTime\": - \"2020-11-10T06:02:46.891827Z\"\n}" + string: "{\n \"name\": \"71DCCCDB-EAEB-4969-8078-016AA0C7CBE8\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-01-27T08:24:19.3091281Z\",\n \"endTime\": + \"2021-01-27T08:41:48.5604907Z\"\n}" headers: cache-control: - no-cache content-length: - - '164' + - '165' content-type: - application/json date: - - Tue, 10 Nov 2020 06:02:49 GMT + - Wed, 27 Jan 2021 08:42:10 GMT expires: - '-1' pragma: @@ -2955,25 +2957,25 @@ interactions: - -n -g --output-name User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template01/runOutputs/image1?api-version=2020-02-14 response: body: - string: "{\n \"properties\": {\n \"artifactId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24490.10860\",\n + string: "{\n \"properties\": {\n \"artifactId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24593.9395\",\n \ \"provisioningState\": \"Succeeded\"\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template01/runOutputs/image1\",\n \"name\": \"image1\",\n \"type\": \"Microsoft.VirtualMachineImages/imageTemplates/runOutputs\"\n}" headers: cache-control: - no-cache content-length: - - '632' + - '631' content-type: - application/json date: - - Tue, 10 Nov 2020 06:02:52 GMT + - Wed, 27 Jan 2021 08:42:12 GMT expires: - '-1' pragma: @@ -3006,14 +3008,14 @@ interactions: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-11-10T05:41:21Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3022,7 +3024,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:02:53 GMT + - Wed, 27 Jan 2021 08:42:13 GMT expires: - '-1' pragma: @@ -3050,7 +3052,7 @@ interactions: ParameterSetName: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1?api-version=2020-09-30 response: @@ -3070,7 +3072,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:02:54 GMT + - Wed, 27 Jan 2021 08:42:14 GMT expires: - '-1' pragma: @@ -3087,7 +3089,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;599,Microsoft.Compute/GetGalleryImage30Min;2983 + - Microsoft.Compute/GetGalleryImage3Min;598,Microsoft.Compute/GetGalleryImage30Min;2948 status: code: 200 message: OK @@ -3105,21 +3107,21 @@ interactions: ParameterSetName: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24490.10860?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24593.9395?api-version=2020-09-30 response: body: - string: "{\r\n \"name\": \"0.24490.10860\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24490.10860\",\r\n + string: "{\r\n \"name\": \"0.24593.9395\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24593.9395\",\r\n \ \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": - \"westus\",\r\n \"tags\": {\r\n \"correlationId\": \"c04168f0-6de9-4901-a707-55fe94e0041a\"\r\n + \"westus\",\r\n \"tags\": {\r\n \"correlationId\": \"b097dfbe-78e0-4931-8423-c8d603efcbfb\"\r\n \ },\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n \ ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n - \ \"publishedDate\": \"2020-11-10T05:51:41.9797349+00:00\",\r\n \"storageAccountType\": + \ \"publishedDate\": \"2021-01-27T08:30:44.8682351+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IT_img_tmpl_sigvibcida4h5pxibfct7ej27xcz7mw_5e6ac647-894b-4fa1-a12b-c9e03c96bcff/providers/Microsoft.Compute/images/IntermediateSnapImg_c04168f0-6de9-4901-a707-55fe94e0041a_0\"\r\n + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IT_img_tmpl_sigdppjwvokhu22wxwvvnd7c6x4iwyy_ceddaebd-0e1f-455a-85b6-777ef5215d28/providers/Microsoft.Compute/images/IntermediateSnapImg_b097dfbe-78e0-4931-8423-c8d603efcbfb_0\"\r\n \ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" @@ -3127,11 +3129,11 @@ interactions: cache-control: - no-cache content-length: - - '1307' + - '1305' content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:02:54 GMT + - Wed, 27 Jan 2021 08:42:14 GMT expires: - '-1' pragma: @@ -3148,7 +3150,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1996,Microsoft.Compute/GetGalleryImageVersion30Min;9987 + - Microsoft.Compute/GetGalleryImageVersion3Min;1994,Microsoft.Compute/GetGalleryImageVersion30Min;9960 status: code: 200 message: OK @@ -3156,7 +3158,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -3166,10 +3168,7 @@ interactions: ParameterSetName: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.14.1 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 response: @@ -3183,7 +3182,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:02:54 GMT + - Wed, 27 Jan 2021 08:42:15 GMT expires: - '-1' pragma: @@ -3225,7 +3224,7 @@ interactions: {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic"}]}, "storageProfile": {"osDisk": {"createOption": "fromImage", "name": null, "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference": - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24490.10860"}}, + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24593.9395"}}, "osProfile": {"computerName": "custom-vm", "adminUsername": "azureuser", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj @@ -3241,32 +3240,32 @@ interactions: Connection: - keep-alive Content-Length: - - '3929' + - '3928' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/vm_deploy_49qk7VZP4MG9PyuLOnZp7lF9MDdyF7py","name":"vm_deploy_49qk7VZP4MG9PyuLOnZp7lF9MDdyF7py","type":"Microsoft.Resources/deployments","properties":{"templateHash":"10757778138486442037","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-11-10T06:02:58.6400364Z","duration":"PT1.7123501S","correlationId":"3fdffbaa-f02f-4dc2-a235-04a68cd483fe","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/virtualNetworks/custom-vmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"custom-vmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkSecurityGroups/custom-vmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"custom-vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/publicIPAddresses/custom-vmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"custom-vmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"custom-vmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"custom-vmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"custom-vm"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/vm_deploy_zWRUigcrZT10Y26hb1olo7YTLiJykqHU","name":"vm_deploy_zWRUigcrZT10Y26hb1olo7YTLiJykqHU","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7089577522300002048","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-01-27T08:42:19.2269771Z","duration":"PT2.490847S","correlationId":"0750ac92-680c-446c-8f8d-db473a442946","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/virtualNetworks/custom-vmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"custom-vmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkSecurityGroups/custom-vmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"custom-vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/publicIPAddresses/custom-vmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"custom-vmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"custom-vmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"custom-vmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"custom-vm"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/vm_deploy_49qk7VZP4MG9PyuLOnZp7lF9MDdyF7py/operationStatuses/08585966187085499562?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/vm_deploy_zWRUigcrZT10Y26hb1olo7YTLiJykqHU/operationStatuses/08585898699487415088?api-version=2020-10-01 cache-control: - no-cache content-length: - - '2815' + - '2813' content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:02:59 GMT + - Wed, 27 Jan 2021 08:42:19 GMT expires: - '-1' pragma: @@ -3276,7 +3275,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 201 message: Created @@ -3295,9 +3294,9 @@ interactions: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585966187085499562?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585898699487415088?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -3309,7 +3308,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:03:30 GMT + - Wed, 27 Jan 2021 08:42:50 GMT expires: - '-1' pragma: @@ -3338,9 +3337,9 @@ interactions: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585966187085499562?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585898699487415088?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -3352,7 +3351,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:04:00 GMT + - Wed, 27 Jan 2021 08:43:20 GMT expires: - '-1' pragma: @@ -3381,9 +3380,9 @@ interactions: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585966187085499562?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585898699487415088?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -3395,7 +3394,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:04:30 GMT + - Wed, 27 Jan 2021 08:43:52 GMT expires: - '-1' pragma: @@ -3424,9 +3423,9 @@ interactions: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585966187085499562?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585898699487415088?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -3438,7 +3437,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:05:02 GMT + - Wed, 27 Jan 2021 08:44:22 GMT expires: - '-1' pragma: @@ -3467,21 +3466,21 @@ interactions: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/vm_deploy_49qk7VZP4MG9PyuLOnZp7lF9MDdyF7py","name":"vm_deploy_49qk7VZP4MG9PyuLOnZp7lF9MDdyF7py","type":"Microsoft.Resources/deployments","properties":{"templateHash":"10757778138486442037","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-11-10T06:04:50.5015852Z","duration":"PT1M53.5738989S","correlationId":"3fdffbaa-f02f-4dc2-a235-04a68cd483fe","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/virtualNetworks/custom-vmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"custom-vmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkSecurityGroups/custom-vmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"custom-vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/publicIPAddresses/custom-vmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"custom-vmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"custom-vmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"custom-vmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"custom-vm"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkSecurityGroups/custom-vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/publicIPAddresses/custom-vmPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/virtualNetworks/custom-vmVNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/vm_deploy_zWRUigcrZT10Y26hb1olo7YTLiJykqHU","name":"vm_deploy_zWRUigcrZT10Y26hb1olo7YTLiJykqHU","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7089577522300002048","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-01-27T08:44:05.7001722Z","duration":"PT1M48.9640421S","correlationId":"0750ac92-680c-446c-8f8d-db473a442946","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/virtualNetworks/custom-vmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"custom-vmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkSecurityGroups/custom-vmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"custom-vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/publicIPAddresses/custom-vmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"custom-vmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"custom-vmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"custom-vmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"custom-vm"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkSecurityGroups/custom-vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/publicIPAddresses/custom-vmPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/virtualNetworks/custom-vmVNET"}]}}' headers: cache-control: - no-cache content-length: - - '3912' + - '3911' content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:05:02 GMT + - Wed, 27 Jan 2021 08:44:22 GMT expires: - '-1' pragma: @@ -3509,22 +3508,22 @@ interactions: ParameterSetName: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm?$expand=instanceView&api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"custom-vm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"1a1d226d-5fa8-42e1-8bfe-9f14201ec477\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"5d260516-209b-465b-8dcf-86f7ccf20bdb\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24490.10860\",\r\n - \ \"exactVersion\": \"0.24490.10860\"\r\n },\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"custom-vm_OsDisk_1_44166027960d44968bc34877aced0d6b\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24593.9395\",\r\n + \ \"exactVersion\": \"0.24593.9395\"\r\n },\r\n \"osDisk\": + {\r\n \"osType\": \"Linux\",\r\n \"name\": \"custom-vm_OsDisk_1_892df39fcb114ad38952b9e4e9d50497\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/disks/custom-vm_OsDisk_1_44166027960d44968bc34877aced0d6b\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/disks/custom-vm_OsDisk_1_892df39fcb114ad38952b9e4e9d50497\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"custom-vm\",\r\n \ \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": {\r\n @@ -3541,16 +3540,16 @@ interactions: \ {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \ \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet - populated.\",\r\n \"time\": \"2020-11-10T06:05:03+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2021-01-27T08:44:24+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"custom-vm_OsDisk_1_44166027960d44968bc34877aced0d6b\",\r\n \"statuses\": + \"custom-vm_OsDisk_1_892df39fcb114ad38952b9e4e9d50497\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-11-10T06:03:23.6937021+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-27T08:42:52.530288+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-11-10T06:04:49.5536004+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-27T08:44:04.2647631+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n \ }\r\n ]\r\n }\r\n }\r\n}" @@ -3558,11 +3557,11 @@ interactions: cache-control: - no-cache content-length: - - '3926' + - '3923' content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:05:03 GMT + - Wed, 27 Jan 2021 08:44:23 GMT expires: - '-1' pragma: @@ -3579,7 +3578,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31962 + - Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31928 status: code: 200 message: OK @@ -3587,7 +3586,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -3597,21 +3596,18 @@ interactions: ParameterSetName: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.14.1 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"custom-vmVMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic\",\r\n - \ \"etag\": \"W/\\\"8ae8f41c-c7a9-4418-83ba-a617bc0e3140\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"9c497c11-7b32-4392-b27c-db7e78db79aa\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"2bba767c-db9d-4382-9fef-db4fa6e9cd1c\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"5d54b37a-382e-46cc-90e5-fc3163ce3608\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigcustom-vm\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic/ipConfigurations/ipconfigcustom-vm\",\r\n - \ \"etag\": \"W/\\\"8ae8f41c-c7a9-4418-83ba-a617bc0e3140\\\"\",\r\n + \ \"etag\": \"W/\\\"9c497c11-7b32-4392-b27c-db7e78db79aa\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -3620,8 +3616,8 @@ interactions: \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": - \"abb24pk1oo5e3ltlaony2h4mbh.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-22-48-09-6B-AE\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"jh0dnq4dr3uudifw3zcgumyksa.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-22-48-02-C2-4F\",\r\n \"enableAcceleratedNetworking\": false,\r\n \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkSecurityGroups/custom-vmNSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -3635,9 +3631,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:05:04 GMT + - Wed, 27 Jan 2021 08:44:23 GMT etag: - - W/"8ae8f41c-c7a9-4418-83ba-a617bc0e3140" + - W/"9c497c11-7b32-4392-b27c-db7e78db79aa" expires: - '-1' pragma: @@ -3654,7 +3650,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c8d890d6-0083-446e-a867-1b7bc4644223 + - fc65ad3a-a15c-42e0-9f37-c0534da4d937 status: code: 200 message: OK @@ -3662,7 +3658,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -3672,19 +3668,16 @@ interactions: ParameterSetName: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.14.1 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/publicIPAddresses/custom-vmPublicIP?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"custom-vmPublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/publicIPAddresses/custom-vmPublicIP\",\r\n - \ \"etag\": \"W/\\\"06978cd3-c14d-40db-8d33-125136f65f7f\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"c2bcd5f4-0b1b-4092-b642-1ed7216abd7e\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"4aa09784-4518-4640-99a0-ef83c1dcba85\",\r\n - \ \"ipAddress\": \"138.91.169.62\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"483658f4-488d-4430-ab78-8d64c55438a3\",\r\n + \ \"ipAddress\": \"104.42.74.215\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic/ipConfigurations/ipconfigcustom-vm\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n @@ -3697,9 +3690,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:05:04 GMT + - Wed, 27 Jan 2021 08:44:24 GMT etag: - - W/"06978cd3-c14d-40db-8d33-125136f65f7f" + - W/"c2bcd5f4-0b1b-4092-b642-1ed7216abd7e" expires: - '-1' pragma: @@ -3716,7 +3709,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0351cd5c-fc0e-45d2-be76-ed1207d9b08e + - 2452f2c8-aefc-4e6f-a013-93097494e695 status: code: 200 message: OK @@ -3734,22 +3727,22 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm?api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"custom-vm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"1a1d226d-5fa8-42e1-8bfe-9f14201ec477\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"5d260516-209b-465b-8dcf-86f7ccf20bdb\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24490.10860\",\r\n - \ \"exactVersion\": \"0.24490.10860\"\r\n },\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"custom-vm_OsDisk_1_44166027960d44968bc34877aced0d6b\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24593.9395\",\r\n + \ \"exactVersion\": \"0.24593.9395\"\r\n },\r\n \"osDisk\": + {\r\n \"osType\": \"Linux\",\r\n \"name\": \"custom-vm_OsDisk_1_892df39fcb114ad38952b9e4e9d50497\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/disks/custom-vm_OsDisk_1_44166027960d44968bc34877aced0d6b\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/disks/custom-vm_OsDisk_1_892df39fcb114ad38952b9e4e9d50497\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"custom-vm\",\r\n \ \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": {\r\n @@ -3766,11 +3759,11 @@ interactions: cache-control: - no-cache content-length: - - '2714' + - '2712' content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:05:05 GMT + - Wed, 27 Jan 2021 08:44:25 GMT expires: - '-1' pragma: @@ -3787,7 +3780,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31961 + - Microsoft.Compute/LowCostGet3Min;3990,Microsoft.Compute/LowCostGet30Min;31927 status: code: 200 message: OK @@ -3806,14 +3799,14 @@ interactions: - -n -g --image-source --identity --shared-image-destinations --scripts User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-11-10T05:41:21Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3822,7 +3815,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:05:05 GMT + - Wed, 27 Jan 2021 08:44:26 GMT expires: - '-1' pragma: @@ -3851,7 +3844,7 @@ interactions: - -n -g --image-source --identity --shared-image-destinations --scripts User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -3911,7 +3904,8 @@ interactions: Pacific"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centraluseuap","name":"centraluseuap","displayName":"Central US EUAP","regionalDisplayName":"(US) Central US EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","pairedRegion":[{"name":"eastus2euap","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2euap"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2euap","name":"eastus2euap","displayName":"East US 2 EUAP","regionalDisplayName":"(US) East US 2 EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","pairedRegion":[{"name":"centraluseuap","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centraluseuap"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westcentralus","name":"westcentralus","displayName":"West - Central US","regionalDisplayName":"(US) West Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-110.234","latitude":"40.890","physicalLocation":"Wyoming","pairedRegion":[{"name":"westus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricawest","name":"southafricawest","displayName":"South + Central US","regionalDisplayName":"(US) West Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-110.234","latitude":"40.890","physicalLocation":"Wyoming","pairedRegion":[{"name":"westus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus3","name":"westus3","displayName":"West + US 3","regionalDisplayName":"(US) West US 3","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-112.074036","latitude":"33.448376","physicalLocation":"Phoenix","pairedRegion":[{"name":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricawest","name":"southafricawest","displayName":"South Africa West","regionalDisplayName":"(Africa) South Africa West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Africa","longitude":"18.843266","latitude":"-34.075691","physicalLocation":"Cape Town","pairedRegion":[{"name":"southafricanorth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricanorth"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral","name":"australiacentral","displayName":"Australia Central","regionalDisplayName":"(Asia Pacific) Australia Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia @@ -3943,11 +3937,11 @@ interactions: cache-control: - no-cache content-length: - - '25098' + - '25532' content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:05:06 GMT + - Wed, 27 Jan 2021 08:44:26 GMT expires: - '-1' pragma: @@ -3963,7 +3957,7 @@ interactions: message: OK - request: body: '{"location": "westus", "tags": {}, "properties": {"source": {"type": "SharedImageVersion", - "imageVersionId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24490.10860"}, + "imageVersionId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24593.9395"}, "customize": [{"name": "customizeScript.sh", "type": "Shell", "scriptUri": "https://raw.githubusercontent.com/danielsollondon/azvmimagebuilder/master/quickquickstarts/customizeScript.sh"}], "distribute": [{"runOutputName": "image1", "type": "SharedImage", "galleryImageId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1", @@ -3980,21 +3974,21 @@ interactions: Connection: - keep-alive Content-Length: - - '1158' + - '1157' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --image-source --identity --shared-image-destinations --scripts User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template02?api-version=2020-02-14 response: body: - string: "{\n \"properties\": {\n \"source\": {\n \"imageVersionId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24490.10860\",\n + string: "{\n \"properties\": {\n \"source\": {\n \"imageVersionId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24593.9395\",\n \ \"type\": \"SharedImageVersion\"\n },\n \"customize\": [\n {\n \"name\": \"customizeScript.sh\",\n \"scriptUri\": \"https://raw.githubusercontent.com/danielsollondon/azvmimagebuilder/master/quickquickstarts/customizeScript.sh\",\n \ \"type\": \"Shell\"\n }\n ],\n \"distribute\": [\n {\n \"artifactTags\": @@ -4009,15 +4003,15 @@ interactions: \"location\": \"westus\",\n \"tags\": {}\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/3c6afaeb-b6cf-43e6-a2c0-748ae219f05a?api-version=2020-02-14 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/acbf72ee-a87d-4d18-8413-72d559aeb4a1?api-version=2020-02-14 cache-control: - no-cache content-length: - - '1725' + - '1724' content-type: - application/json date: - - Tue, 10 Nov 2020 06:05:16 GMT + - Wed, 27 Jan 2021 08:44:35 GMT expires: - '-1' pragma: @@ -4029,7 +4023,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1195' status: code: 201 message: Created @@ -4048,14 +4042,62 @@ interactions: - -n -g --image-source --identity --shared-image-destinations --scripts User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/acbf72ee-a87d-4d18-8413-72d559aeb4a1?api-version=2020-02-14 + response: + body: + string: "{\n \"name\": \"ACBF72EE-A87D-4D18-8413-72D559AEB4A1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-01-27T08:44:34.9370538Z\"\n}" + headers: + cache-control: + - no-cache + content-length: + - '122' + content-type: + - application/json + date: + - Wed, 27 Jan 2021 08:45:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - image builder create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image-source --identity --shared-image-destinations --scripts + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/3c6afaeb-b6cf-43e6-a2c0-748ae219f05a?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/acbf72ee-a87d-4d18-8413-72d559aeb4a1?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"3C6AFAEB-B6CF-43E6-A2C0-748AE219F05A\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2020-11-10T06:05:15.1599216Z\",\n \"endTime\": - \"2020-11-10T06:05:46.1741169Z\"\n}" + string: "{\n \"name\": \"ACBF72EE-A87D-4D18-8413-72D559AEB4A1\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-01-27T08:44:34.9370538Z\",\n \"endTime\": + \"2021-01-27T08:45:08.4599351Z\"\n}" headers: cache-control: - no-cache @@ -4064,7 +4106,7 @@ interactions: content-type: - application/json date: - - Tue, 10 Nov 2020 06:05:47 GMT + - Wed, 27 Jan 2021 08:45:38 GMT expires: - '-1' pragma: @@ -4097,12 +4139,12 @@ interactions: - -n -g --image-source --identity --shared-image-destinations --scripts User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template02?api-version=2020-02-14 response: body: - string: "{\n \"properties\": {\n \"source\": {\n \"imageVersionId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24490.10860\",\n + string: "{\n \"properties\": {\n \"source\": {\n \"imageVersionId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24593.9395\",\n \ \"type\": \"SharedImageVersion\"\n },\n \"customize\": [\n {\n \"name\": \"customizeScript.sh\",\n \"scriptUri\": \"https://raw.githubusercontent.com/danielsollondon/azvmimagebuilder/master/quickquickstarts/customizeScript.sh\",\n \ \"sha256Checksum\": \"2c6ff6902a4a52deee69e8db26d0036a53388651008aaf31795bb20dabd21fd8\",\n @@ -4113,19 +4155,19 @@ interactions: \"Succeeded\",\n \"buildTimeoutInMinutes\": 0,\n \"vmProfile\": {\n \"vmSize\": \"\",\n \"osDiskSizeGB\": 0\n }\n },\n \"identity\": {\n \"type\": \"UserAssigned\",\n \ \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1\": - {\n \"principalId\": \"4520346f-d936-4e92-841c-a1f60d8147c5\",\n \"clientId\": - \"452ad275-3ef7-42db-a6fd-caaaae8a2ba1\"\n }\n }\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template02\",\n + {\n \"principalId\": \"b02078bf-b7e0-4832-8ed9-ddeb9750f042\",\n \"clientId\": + \"e4532ebc-d0af-4884-893f-21371e7c1769\"\n }\n }\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template02\",\n \"name\": \"template02\",\n \"type\": \"Microsoft.VirtualMachineImages/imageTemplates\",\n \"location\": \"westus\",\n \"tags\": {}\n}" headers: cache-control: - no-cache content-length: - - '1934' + - '1933' content-type: - application/json date: - - Tue, 10 Nov 2020 06:05:48 GMT + - Wed, 27 Jan 2021 08:45:38 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_specialized_image.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_specialized_image.yaml index 7c40454b6de..87cc390e161 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_specialized_image.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_specialized_image.yaml @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-12-19T06:33:09Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:33:11 GMT + - Wed, 27 Jan 2021 08:20:47 GMT expires: - '-1' pragma: @@ -62,7 +62,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01 response: @@ -70,11 +70,11 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"5e87627b-4ffa-4abf-8040-b1103c84a2fd-GALLERY_OBECQ2EAC2DS\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_PRE4ZGDLZ4Q2\"\r\n },\r\n \ \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/661996ac-08e6-4c7e-bffc-14ad13da4549?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/a94a98e0-fb6c-4e76-8afd-0e0ef72a726c?api-version=2019-12-01 cache-control: - no-cache content-length: @@ -82,7 +82,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:33:14 GMT + - Wed, 27 Jan 2021 08:20:53 GMT expires: - '-1' pragma: @@ -95,7 +95,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299 + - Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;297 x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -115,14 +115,14 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/661996ac-08e6-4c7e-bffc-14ad13da4549?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/a94a98e0-fb6c-4e76-8afd-0e0ef72a726c?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T06:33:13.9158931+00:00\",\r\n \"endTime\": - \"2020-12-19T06:33:14.1189879+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"661996ac-08e6-4c7e-bffc-14ad13da4549\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:20:52.1642821+00:00\",\r\n \"endTime\": + \"2021-01-27T08:20:52.3517811+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"a94a98e0-fb6c-4e76-8afd-0e0ef72a726c\"\r\n}" headers: cache-control: - no-cache @@ -131,7 +131,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:33:43 GMT + - Wed, 27 Jan 2021 08:21:23 GMT expires: - '-1' pragma: @@ -148,7 +148,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4198 + - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4162 status: code: 200 message: OK @@ -166,7 +166,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01 response: @@ -174,7 +174,7 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"5e87627b-4ffa-4abf-8040-b1103c84a2fd-GALLERY_OBECQ2EAC2DS\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_PRE4ZGDLZ4Q2\"\r\n },\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -184,7 +184,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:33:44 GMT + - Wed, 27 Jan 2021 08:21:23 GMT expires: - '-1' pragma: @@ -201,7 +201,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2496 + - Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2482 status: code: 200 message: OK @@ -219,15 +219,15 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type --os-state -p -f -s User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-12-19T06:33:09Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -236,7 +236,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:33:45 GMT + - Wed, 27 Jan 2021 08:21:25 GMT expires: - '-1' pragma: @@ -252,8 +252,8 @@ interactions: message: OK - request: body: '{"location": "westus", "tags": {}, "properties": {"osType": "Linux", "osState": - "Specialized", "identifier": {"publisher": "publisher1", "offer": "offer1", - "sku": "sku1"}, "disallowed": {}}}' + "Specialized", "hyperVGeneration": "V1", "identifier": {"publisher": "publisher1", + "offer": "offer1", "sku": "sku1"}, "disallowed": {}}}' headers: Accept: - application/json @@ -264,13 +264,13 @@ interactions: Connection: - keep-alive Content-Length: - - '190' + - '216' Content-Type: - application/json ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type --os-state -p -f -s User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -284,7 +284,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/6cf5ecd9-874b-4ee9-843b-0bfebf502c76?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/e8ded6bc-442c-49c5-8986-9e991fd7bb5a?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -292,7 +292,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:33:48 GMT + - Wed, 27 Jan 2021 08:21:29 GMT expires: - '-1' pragma: @@ -305,7 +305,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;749 + - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;747 x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -325,14 +325,14 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type --os-state -p -f -s User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/6cf5ecd9-874b-4ee9-843b-0bfebf502c76?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/e8ded6bc-442c-49c5-8986-9e991fd7bb5a?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T06:33:48.2596337+00:00\",\r\n \"endTime\": - \"2020-12-19T06:33:48.3690492+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"6cf5ecd9-874b-4ee9-843b-0bfebf502c76\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:21:28.8986941+00:00\",\r\n \"endTime\": + \"2021-01-27T08:21:29.0080639+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"e8ded6bc-442c-49c5-8986-9e991fd7bb5a\"\r\n}" headers: cache-control: - no-cache @@ -341,7 +341,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:34:17 GMT + - Wed, 27 Jan 2021 08:21:59 GMT expires: - '-1' pragma: @@ -358,7 +358,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4196 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4156 status: code: 200 message: OK @@ -376,7 +376,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type --os-state -p -f -s User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -396,7 +396,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:34:18 GMT + - Wed, 27 Jan 2021 08:21:59 GMT expires: - '-1' pragma: @@ -413,7 +413,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;596,Microsoft.Compute/GetGalleryImage30Min;2996 + - Microsoft.Compute/GetGalleryImage3Min;596,Microsoft.Compute/GetGalleryImage30Min;2982 status: code: 200 message: OK @@ -431,15 +431,15 @@ interactions: ParameterSetName: - -g -n --image --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-12-19T06:33:09Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -448,7 +448,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:34:19 GMT + - Wed, 27 Jan 2021 08:22:00 GMT expires: - '-1' pragma: @@ -527,35 +527,35 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sat, 19 Dec 2020 06:34:20 GMT + - Wed, 27 Jan 2021 08:22:01 GMT etag: - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" expires: - - Sat, 19 Dec 2020 06:39:20 GMT + - Wed, 27 Jan 2021 08:27:01 GMT source-age: - - '255' + - '126' strict-transport-security: - max-age=31536000 vary: - - Authorization,Accept-Encoding + - Authorization,Accept-Encoding, Accept-Encoding via: - - 1.1 varnish (Varnish/6.0), 1.1 varnish + - 1.1 varnish x-cache: - - MISS, HIT + - HIT x-cache-hits: - - 0, 2 + - '1' x-content-type-options: - nosniff x-fastly-request-id: - - 33a5b338e1dd9f5b492c84e6a36131a18e9ca884 + - f50d335e5918cbd4135cc2e858d5500e50940fbb x-frame-options: - deny x-github-request-id: - - 93C6:3C8C:469397:4F234E:5FDD936A + - 1AF8:6712:254F7:28ADA:600FA121 x-served-by: - - cache-mia11358-MIA + - cache-sin18022-SIN x-timer: - - S1608359660.458549,VS0,VE0 + - S1611735722.959111,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -565,7 +565,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -575,10 +575,7 @@ interactions: ParameterSetName: - -g -n --image --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 response: @@ -592,7 +589,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:34:20 GMT + - Wed, 27 Jan 2021 08:22:01 GMT expires: - '-1' pragma: @@ -650,18 +647,18 @@ interactions: ParameterSetName: - -g -n --image --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_a1iVwZpQDXZFV7D8GeV0vG5gDf4jq0Na","name":"vm_deploy_a1iVwZpQDXZFV7D8GeV0vG5gDf4jq0Na","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17174284964162844667","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-12-19T06:34:22.6046459Z","duration":"PT0.8330692S","correlationId":"edc9bf82-c2b7-4d06-9218-facb7254401c","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_hkTLhYWsAEnBs0kREahO3UMFSigVuDCh","name":"vm_deploy_hkTLhYWsAEnBs0kREahO3UMFSigVuDCh","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17080901306247016034","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-01-27T08:22:05.8034358Z","duration":"PT2.1448215S","correlationId":"47798421-fecb-4ab9-a9ee-c66e42d1cda6","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_a1iVwZpQDXZFV7D8GeV0vG5gDf4jq0Na/operationStatuses/08585932472237060517?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_hkTLhYWsAEnBs0kREahO3UMFSigVuDCh/operationStatuses/08585898711618190185?api-version=2020-10-01 cache-control: - no-cache content-length: @@ -669,7 +666,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:34:22 GMT + - Wed, 27 Jan 2021 08:22:05 GMT expires: - '-1' pragma: @@ -679,7 +676,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1196' status: code: 201 message: Created @@ -697,10 +694,53 @@ interactions: ParameterSetName: - -g -n --image --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585932472237060517?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585898711618190185?api-version=2020-10-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 27 Jan 2021 08:22:37 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --nsg-rule --admin-username --admin-password --authentication-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585898711618190185?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -712,7 +752,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:34:53 GMT + - Wed, 27 Jan 2021 08:23:07 GMT expires: - '-1' pragma: @@ -740,22 +780,22 @@ interactions: ParameterSetName: - -g -n --image --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_a1iVwZpQDXZFV7D8GeV0vG5gDf4jq0Na","name":"vm_deploy_a1iVwZpQDXZFV7D8GeV0vG5gDf4jq0Na","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17174284964162844667","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-12-19T06:34:53.2591857Z","duration":"PT31.487609S","correlationId":"edc9bf82-c2b7-4d06-9218-facb7254401c","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_hkTLhYWsAEnBs0kREahO3UMFSigVuDCh","name":"vm_deploy_hkTLhYWsAEnBs0kREahO3UMFSigVuDCh","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17080901306247016034","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-01-27T08:22:37.9449335Z","duration":"PT34.2863192S","correlationId":"47798421-fecb-4ab9-a9ee-c66e42d1cda6","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}' headers: cache-control: - no-cache content-length: - - '3846' + - '3847' content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:34:53 GMT + - Wed, 27 Jan 2021 08:23:07 GMT expires: - '-1' pragma: @@ -783,23 +823,23 @@ interactions: ParameterSetName: - -g -n --image --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"adc8c634-c26a-436b-bb56-fcbb33b1e6f8\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"d486366b-3a10-4452-89c6-35a47eab04b4\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202012111\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"vm1_disk1_1241bf480b65401a83251d99f28396e6\",\r\n + \"18.04.202101191\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"vm1_disk1_fafbc7c21ff54bd8ab9dd2d584a821c1\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_1241bf480b65401a83251d99f28396e6\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_fafbc7c21ff54bd8ab9dd2d584a821c1\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n \ \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": {\r\n @@ -808,21 +848,21 @@ interactions: \ }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": - {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n - \ {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n - \ \"level\": \"Warning\",\r\n \"displayStatus\": \"Not - Ready\",\r\n \"message\": \"VM status blob is found but not yet - populated.\",\r\n \"time\": \"2020-12-19T06:34:54+00:00\"\r\n }\r\n - \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"vm1_disk1_1241bf480b65401a83251d99f28396e6\",\r\n \"statuses\": - [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\": + \"vm1\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n + \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.53\",\r\n \"statuses\": + [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n + \ \"message\": \"Guest Agent is running\",\r\n \"time\": + \"2021-01-27T08:23:06+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_disk1_fafbc7c21ff54bd8ab9dd2d584a821c1\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-12-19T06:34:34.7403923+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-27T08:22:25.230146+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded/osProvisioningInProgress\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"OS provisioning - in progress\",\r\n \"time\": \"2020-12-19T06:34:52.6630598+00:00\"\r\n + in progress\",\r\n \"time\": \"2021-01-27T08:22:36.4802843+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n \ }\r\n ]\r\n }\r\n }\r\n}" @@ -830,11 +870,11 @@ interactions: cache-control: - no-cache content-length: - - '3195' + - '3280' content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:34:54 GMT + - Wed, 27 Jan 2021 08:23:08 GMT expires: - '-1' pragma: @@ -851,7 +891,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31996 + - Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31922 status: code: 200 message: OK @@ -859,7 +899,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -869,21 +909,18 @@ interactions: ParameterSetName: - -g -n --image --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"vm1VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\r\n - \ \"etag\": \"W/\\\"48ce60f2-c507-4fee-984a-cbb5d21c84c6\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"f003ea58-6835-465e-9cdf-e10be1f431b5\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"45caf2b1-5930-49ae-9837-5c117ca74769\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"2dc92ff3-5960-4d89-9d69-54e42c40a7c2\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm1\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\r\n - \ \"etag\": \"W/\\\"48ce60f2-c507-4fee-984a-cbb5d21c84c6\\\"\",\r\n + \ \"etag\": \"W/\\\"f003ea58-6835-465e-9cdf-e10be1f431b5\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -892,8 +929,8 @@ interactions: \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": - \"112gmj1xbe5eng4swtqx3kwqsd.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-22-48-06-A3-1E\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"qt232ezaxwjedgifv2w2l4kmyf.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-22-48-08-EA-46\",\r\n \"enableAcceleratedNetworking\": false,\r\n \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -907,9 +944,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:34:54 GMT + - Wed, 27 Jan 2021 08:23:09 GMT etag: - - W/"48ce60f2-c507-4fee-984a-cbb5d21c84c6" + - W/"f003ea58-6835-465e-9cdf-e10be1f431b5" expires: - '-1' pragma: @@ -926,7 +963,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 97dbd147-0344-443f-95e2-e2b8a039768c + - b670b168-4960-4e5a-bc71-4ed8333804b1 status: code: 200 message: OK @@ -934,7 +971,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -944,19 +981,16 @@ interactions: ParameterSetName: - -g -n --image --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"vm1PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\r\n - \ \"etag\": \"W/\\\"2fef64c2-8093-4a34-b78e-599576b59692\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"f5bc3bfb-64d2-48bc-ae48-d4d627f082e5\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"d7fcfa6d-084a-4821-903f-bb6a2d0d3c42\",\r\n - \ \"ipAddress\": \"40.112.162.217\",\r\n \"publicIPAddressVersion\": + \"Succeeded\",\r\n \"resourceGuid\": \"41cbab9d-1c2b-48d3-9abc-feb4a0148204\",\r\n + \ \"ipAddress\": \"138.91.184.182\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n @@ -969,9 +1003,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:34:54 GMT + - Wed, 27 Jan 2021 08:23:09 GMT etag: - - W/"2fef64c2-8093-4a34-b78e-599576b59692" + - W/"f5bc3bfb-64d2-48bc-ae48-d4d627f082e5" expires: - '-1' pragma: @@ -988,7 +1022,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f364e384-8240-4280-ba65-1a712a332149 + - c4efa4be-c364-4d19-904e-7a4197d60f5b status: code: 200 message: OK @@ -1006,23 +1040,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"adc8c634-c26a-436b-bb56-fcbb33b1e6f8\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"d486366b-3a10-4452-89c6-35a47eab04b4\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202012111\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"vm1_disk1_1241bf480b65401a83251d99f28396e6\",\r\n + \"18.04.202101191\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"vm1_disk1_fafbc7c21ff54bd8ab9dd2d584a821c1\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_1241bf480b65401a83251d99f28396e6\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_fafbc7c21ff54bd8ab9dd2d584a821c1\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n \ \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": {\r\n @@ -1040,7 +1074,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:34:55 GMT + - Wed, 27 Jan 2021 08:23:10 GMT expires: - '-1' pragma: @@ -1057,7 +1091,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31995 + - Microsoft.Compute/LowCostGet3Min;3990,Microsoft.Compute/LowCostGet30Min;31921 status: code: 200 message: OK @@ -1075,12 +1109,12 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/vm1_disk1_1241bf480b65401a83251d99f28396e6?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/vm1_disk1_fafbc7c21ff54bd8ab9dd2d584a821c1?api-version=2020-05-01 response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/vm1_disk1_1241bf480b65401a83251d99f28396e6'' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/vm1_disk1_fafbc7c21ff54bd8ab9dd2d584a821c1'' under resource group ''cli_test_test_specialized_image_000001'' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: @@ -1091,7 +1125,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:34:55 GMT + - Wed, 27 Jan 2021 08:23:11 GMT expires: - '-1' pragma: @@ -1119,24 +1153,24 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_1241bf480b65401a83251d99f28396e6?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_fafbc7c21ff54bd8ab9dd2d584a821c1?api-version=2020-06-30 response: body: - string: "{\r\n \"name\": \"vm1_disk1_1241bf480b65401a83251d99f28396e6\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_1241bf480b65401a83251d99f28396e6\",\r\n + string: "{\r\n \"name\": \"vm1_disk1_fafbc7c21ff54bd8ab9dd2d584a821c1\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_fafbc7c21ff54bd8ab9dd2d584a821c1\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n \ },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"FromImage\",\r\n \"imageReference\": {\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/canonical/ArtifactTypes/VMImage/Offers/ubuntuserver/Skus/18.04-lts/Versions/18.04.202012111\"\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/canonical/ArtifactTypes/VMImage/Offers/ubuntuserver/Skus/18.04-lts/Versions/18.04.202101191\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-12-19T06:34:33.4387356+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-27T08:22:23.7578757+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"1241bf48-0b65-401a-8325-1d99f28396e6\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"fafbc7c2-1ff5-4bd8-ab9d-d2d584a821c1\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -1146,7 +1180,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:34:56 GMT + - Wed, 27 Jan 2021 08:23:11 GMT expires: - '-1' pragma: @@ -1163,7 +1197,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4990,Microsoft.Compute/LowCostGet30Min;39937 + - Microsoft.Compute/LowCostGet3Min;4974,Microsoft.Compute/LowCostGet30Min;39784 status: code: 200 message: OK @@ -1181,15 +1215,15 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-12-19T06:33:09Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1198,7 +1232,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:34:56 GMT + - Wed, 27 Jan 2021 08:23:12 GMT expires: - '-1' pragma: @@ -1214,7 +1248,7 @@ interactions: message: OK - request: body: '{"location": "westus", "tags": {}, "sku": {"name": "Standard_LRS"}, "properties": - {"creationData": {"createOption": "Copy", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_1241bf480b65401a83251d99f28396e6"}}}' + {"creationData": {"createOption": "Copy", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_fafbc7c21ff54bd8ab9dd2d584a821c1"}}}' headers: Accept: - application/json @@ -1231,7 +1265,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 response: @@ -1239,13 +1273,13 @@ interactions: string: "{\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \ \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n - \ \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_1241bf480b65401a83251d99f28396e6\",\r\n - \ \"sourceUniqueId\": \"1241bf48-0b65-401a-8325-1d99f28396e6\"\r\n },\r\n + \ \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_fafbc7c21ff54bd8ab9dd2d584a821c1\",\r\n + \ \"sourceUniqueId\": \"fafbc7c2-1ff5-4bd8-ab9d-d2d584a821c1\"\r\n },\r\n \ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/d6428ca9-9e77-45a8-85a6-3acdbb2e525d?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1ed7953e-fc5a-476e-96c1-e6c4ba439a88?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1253,11 +1287,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:34:58 GMT + - Wed, 27 Jan 2021 08:23:17 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/d6428ca9-9e77-45a8-85a6-3acdbb2e525d?monitor=true&api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1ed7953e-fc5a-476e-96c1-e6c4ba439a88?monitor=true&api-version=2020-05-01 pragma: - no-cache server: @@ -1268,9 +1302,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7999 + - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;998,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7989 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -1288,27 +1322,27 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/d6428ca9-9e77-45a8-85a6-3acdbb2e525d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1ed7953e-fc5a-476e-96c1-e6c4ba439a88?api-version=2020-05-01 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T06:34:58.8463845+00:00\",\r\n \"endTime\": - \"2020-12-19T06:34:59.7526622+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-01-27T08:23:17.5565663+00:00\",\r\n \"endTime\": + \"2021-01-27T08:23:18.0721804+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\",\r\n \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \ \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_1241bf480b65401a83251d99f28396e6\",\r\n - \ \"sourceUniqueId\": \"1241bf48-0b65-401a-8325-1d99f28396e6\"\r\n },\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_fafbc7c21ff54bd8ab9dd2d584a821c1\",\r\n + \ \"sourceUniqueId\": \"fafbc7c2-1ff5-4bd8-ab9d-d2d584a821c1\"\r\n },\r\n \ \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-12-19T06:34:58.8619896+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-01-27T08:23:17.5565663+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"64fb39fe-43a3-432d-af93-edde099c9b74\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"b57ffd4e-da6d-4bf8-9614-0c405449031b\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"d6428ca9-9e77-45a8-85a6-3acdbb2e525d\"\r\n}" + \"1ed7953e-fc5a-476e-96c1-e6c4ba439a88\"\r\n}" headers: cache-control: - no-cache @@ -1317,7 +1351,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:35:00 GMT + - Wed, 27 Jan 2021 08:23:19 GMT expires: - '-1' pragma: @@ -1334,7 +1368,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49998,Microsoft.Compute/GetOperation30Min;399987 + - Microsoft.Compute/GetOperation3Min;49980,Microsoft.Compute/GetOperation30Min;399848 status: code: 200 message: OK @@ -1352,7 +1386,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 response: @@ -1362,12 +1396,12 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \ \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_1241bf480b65401a83251d99f28396e6\",\r\n - \ \"sourceUniqueId\": \"1241bf48-0b65-401a-8325-1d99f28396e6\"\r\n },\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_fafbc7c21ff54bd8ab9dd2d584a821c1\",\r\n + \ \"sourceUniqueId\": \"fafbc7c2-1ff5-4bd8-ab9d-d2d584a821c1\"\r\n },\r\n \ \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-12-19T06:34:58.8619896+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-01-27T08:23:17.5565663+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"64fb39fe-43a3-432d-af93-edde099c9b74\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"b57ffd4e-da6d-4bf8-9614-0c405449031b\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -1377,7 +1411,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:35:00 GMT + - Wed, 27 Jan 2021 08:23:19 GMT expires: - '-1' pragma: @@ -1394,7 +1428,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4993,Microsoft.Compute/LowCostGet30Min;39944 + - Microsoft.Compute/LowCostGet3Min;4972,Microsoft.Compute/LowCostGet30Min;39782 status: code: 200 message: OK @@ -1412,15 +1446,15 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-12-19T06:33:09Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1429,7 +1463,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:35:01 GMT + - Wed, 27 Jan 2021 08:23:20 GMT expires: - '-1' pragma: @@ -1463,9 +1497,9 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0\",\r\n @@ -1474,7 +1508,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-12-19T06:35:04.0253078+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-01-27T08:23:25.6800879+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"hostCaching\": \"ReadWrite\",\r\n \ \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -1482,7 +1516,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8abe9c7a-17cb-4b42-98ee-885e5081a217?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/e415368f-e52b-49d3-948d-240dd04ac774?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -1490,7 +1524,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:35:04 GMT + - Wed, 27 Jan 2021 08:23:26 GMT expires: - '-1' pragma: @@ -1503,9 +1537,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1199 + - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;373,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1196 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -1523,13 +1557,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8abe9c7a-17cb-4b42-98ee-885e5081a217?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/e415368f-e52b-49d3-948d-240dd04ac774?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T06:35:04.0253078+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"8abe9c7a-17cb-4b42-98ee-885e5081a217\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:23:25.6800879+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e415368f-e52b-49d3-948d-240dd04ac774\"\r\n}" headers: cache-control: - no-cache @@ -1538,7 +1572,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:36:04 GMT + - Wed, 27 Jan 2021 08:24:27 GMT expires: - '-1' pragma: @@ -1555,7 +1589,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4194 + - Microsoft.Compute/GetOperationStatus3Min;1181,Microsoft.Compute/GetOperationStatus30Min;4142 status: code: 200 message: OK @@ -1573,13 +1607,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8abe9c7a-17cb-4b42-98ee-885e5081a217?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/e415368f-e52b-49d3-948d-240dd04ac774?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T06:35:04.0253078+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"8abe9c7a-17cb-4b42-98ee-885e5081a217\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:23:25.6800879+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e415368f-e52b-49d3-948d-240dd04ac774\"\r\n}" headers: cache-control: - no-cache @@ -1588,7 +1622,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:37:04 GMT + - Wed, 27 Jan 2021 08:25:27 GMT expires: - '-1' pragma: @@ -1605,7 +1639,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4193 + - Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4136 status: code: 200 message: OK @@ -1623,13 +1657,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8abe9c7a-17cb-4b42-98ee-885e5081a217?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/e415368f-e52b-49d3-948d-240dd04ac774?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T06:35:04.0253078+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"8abe9c7a-17cb-4b42-98ee-885e5081a217\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:23:25.6800879+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e415368f-e52b-49d3-948d-240dd04ac774\"\r\n}" headers: cache-control: - no-cache @@ -1638,7 +1672,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:38:05 GMT + - Wed, 27 Jan 2021 08:26:28 GMT expires: - '-1' pragma: @@ -1655,7 +1689,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4191 + - Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4131 status: code: 200 message: OK @@ -1673,13 +1707,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8abe9c7a-17cb-4b42-98ee-885e5081a217?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/e415368f-e52b-49d3-948d-240dd04ac774?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T06:35:04.0253078+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"8abe9c7a-17cb-4b42-98ee-885e5081a217\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:23:25.6800879+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e415368f-e52b-49d3-948d-240dd04ac774\"\r\n}" headers: cache-control: - no-cache @@ -1688,7 +1722,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:39:04 GMT + - Wed, 27 Jan 2021 08:27:27 GMT expires: - '-1' pragma: @@ -1705,7 +1739,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4189 + - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;4127 status: code: 200 message: OK @@ -1723,13 +1757,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8abe9c7a-17cb-4b42-98ee-885e5081a217?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/e415368f-e52b-49d3-948d-240dd04ac774?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T06:35:04.0253078+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"8abe9c7a-17cb-4b42-98ee-885e5081a217\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:23:25.6800879+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e415368f-e52b-49d3-948d-240dd04ac774\"\r\n}" headers: cache-control: - no-cache @@ -1738,7 +1772,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:40:05 GMT + - Wed, 27 Jan 2021 08:28:27 GMT expires: - '-1' pragma: @@ -1755,7 +1789,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4187 + - Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;4123 status: code: 200 message: OK @@ -1773,13 +1807,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8abe9c7a-17cb-4b42-98ee-885e5081a217?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/e415368f-e52b-49d3-948d-240dd04ac774?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T06:35:04.0253078+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"8abe9c7a-17cb-4b42-98ee-885e5081a217\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:23:25.6800879+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e415368f-e52b-49d3-948d-240dd04ac774\"\r\n}" headers: cache-control: - no-cache @@ -1788,7 +1822,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:41:05 GMT + - Wed, 27 Jan 2021 08:29:29 GMT expires: - '-1' pragma: @@ -1805,7 +1839,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4185 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4119 status: code: 200 message: OK @@ -1823,13 +1857,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8abe9c7a-17cb-4b42-98ee-885e5081a217?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/e415368f-e52b-49d3-948d-240dd04ac774?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T06:35:04.0253078+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"8abe9c7a-17cb-4b42-98ee-885e5081a217\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:23:25.6800879+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e415368f-e52b-49d3-948d-240dd04ac774\"\r\n}" headers: cache-control: - no-cache @@ -1838,7 +1872,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:42:06 GMT + - Wed, 27 Jan 2021 08:30:29 GMT expires: - '-1' pragma: @@ -1855,7 +1889,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4183 + - Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;4116 status: code: 200 message: OK @@ -1873,13 +1907,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8abe9c7a-17cb-4b42-98ee-885e5081a217?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/e415368f-e52b-49d3-948d-240dd04ac774?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T06:35:04.0253078+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"8abe9c7a-17cb-4b42-98ee-885e5081a217\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:23:25.6800879+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e415368f-e52b-49d3-948d-240dd04ac774\"\r\n}" headers: cache-control: - no-cache @@ -1888,7 +1922,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:43:06 GMT + - Wed, 27 Jan 2021 08:31:30 GMT expires: - '-1' pragma: @@ -1905,7 +1939,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4181 + - Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4111 status: code: 200 message: OK @@ -1923,14 +1957,14 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8abe9c7a-17cb-4b42-98ee-885e5081a217?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/e415368f-e52b-49d3-948d-240dd04ac774?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-12-19T06:35:04.0253078+00:00\",\r\n \"endTime\": - \"2020-12-19T06:44:06.0572796+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"8abe9c7a-17cb-4b42-98ee-885e5081a217\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:23:25.6800879+00:00\",\r\n \"endTime\": + \"2021-01-27T08:32:26.2121573+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"e415368f-e52b-49d3-948d-240dd04ac774\"\r\n}" headers: cache-control: - no-cache @@ -1939,7 +1973,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:44:06 GMT + - Wed, 27 Jan 2021 08:32:30 GMT expires: - '-1' pragma: @@ -1956,7 +1990,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4179 + - Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;4105 status: code: 200 message: OK @@ -1974,9 +2008,9 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0\",\r\n @@ -1985,7 +2019,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-12-19T06:35:04.0253078+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-01-27T08:23:25.6800879+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": \"ReadWrite\",\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -1999,7 +2033,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:44:06 GMT + - Wed, 27 Jan 2021 08:32:30 GMT expires: - '-1' pragma: @@ -2016,7 +2050,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9996 + - Microsoft.Compute/GetGalleryImageVersion3Min;1993,Microsoft.Compute/GetGalleryImageVersion30Min;9971 status: code: 200 message: OK @@ -2034,15 +2068,15 @@ interactions: ParameterSetName: - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-12-19T06:33:09Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2051,7 +2085,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:44:07 GMT + - Wed, 27 Jan 2021 08:32:31 GMT expires: - '-1' pragma: @@ -2079,7 +2113,7 @@ interactions: ParameterSetName: - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -2099,7 +2133,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:44:07 GMT + - Wed, 27 Jan 2021 08:32:32 GMT expires: - '-1' pragma: @@ -2116,7 +2150,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;596,Microsoft.Compute/GetGalleryImage30Min;2990 + - Microsoft.Compute/GetGalleryImage3Min;588,Microsoft.Compute/GetGalleryImage30Min;2949 status: code: 200 message: OK @@ -2134,9 +2168,9 @@ interactions: ParameterSetName: - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0\",\r\n @@ -2145,7 +2179,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-12-19T06:35:04.0253078+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-01-27T08:23:25.6800879+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": \"ReadWrite\",\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2159,7 +2193,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:44:07 GMT + - Wed, 27 Jan 2021 08:32:32 GMT expires: - '-1' pragma: @@ -2176,7 +2210,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1998,Microsoft.Compute/GetGalleryImageVersion30Min;9995 + - Microsoft.Compute/GetGalleryImageVersion3Min;1992,Microsoft.Compute/GetGalleryImageVersion30Min;9970 status: code: 200 message: OK @@ -2184,7 +2218,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -2194,24 +2228,21 @@ interactions: ParameterSetName: - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vm1VNET\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\r\n - \ \"etag\": \"W/\\\"8e8c0578-b3d9-46eb-89e0-c6c49e7d1f63\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"2d1dccad-8cf6-471e-a1b6-cc1aacbc2c68\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"2766f8de-0977-463e-9bd2-b4e17eaad093\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"13def984-bd20-4192-9905-af2dc5f94cc5\",\r\n \ \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n \ ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"vm1Subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\r\n - \ \"etag\": \"W/\\\"8e8c0578-b3d9-46eb-89e0-c6c49e7d1f63\\\"\",\r\n + \ \"etag\": \"W/\\\"2d1dccad-8cf6-471e-a1b6-cc1aacbc2c68\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n @@ -2227,7 +2258,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:44:08 GMT + - Wed, 27 Jan 2021 08:32:33 GMT expires: - '-1' pragma: @@ -2244,7 +2275,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 40fa7dc6-f6a8-4055-bb13-e4fc0fc68e13 + - 8d5095bf-6595-40a5-990f-e3d90eb94307 status: code: 200 message: OK @@ -2288,18 +2319,18 @@ interactions: ParameterSetName: - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_sNuxQDV0tMu5H2MUy39vaOKXWejw7zQZ","name":"vm_deploy_sNuxQDV0tMu5H2MUy39vaOKXWejw7zQZ","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12931512304474564248","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-12-19T06:44:11.0787555Z","duration":"PT1.1080237S","correlationId":"7f4fa93d-bd0e-4f22-bda1-689572f012e6","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_I6zuBGbIvxzttoMtz2cloxp68j226qIN","name":"vm_deploy_I6zuBGbIvxzttoMtz2cloxp68j226qIN","type":"Microsoft.Resources/deployments","properties":{"templateHash":"18211211642065295799","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-01-27T08:32:37.8754614Z","duration":"PT2.7105561S","correlationId":"626abc0d-eb78-49de-9909-d374ed26d1b2","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_sNuxQDV0tMu5H2MUy39vaOKXWejw7zQZ/operationStatuses/08585932466355068977?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_I6zuBGbIvxzttoMtz2cloxp68j226qIN/operationStatuses/08585898705303127351?api-version=2020-10-01 cache-control: - no-cache content-length: @@ -2307,7 +2338,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:44:10 GMT + - Wed, 27 Jan 2021 08:32:38 GMT expires: - '-1' pragma: @@ -2335,10 +2366,53 @@ interactions: ParameterSetName: - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585898705303127351?api-version=2020-10-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 27 Jan 2021 08:33:09 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585932466355068977?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585898705303127351?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -2350,7 +2424,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:44:42 GMT + - Wed, 27 Jan 2021 08:33:39 GMT expires: - '-1' pragma: @@ -2378,13 +2452,13 @@ interactions: ParameterSetName: - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_sNuxQDV0tMu5H2MUy39vaOKXWejw7zQZ","name":"vm_deploy_sNuxQDV0tMu5H2MUy39vaOKXWejw7zQZ","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12931512304474564248","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-12-19T06:44:33.5665145Z","duration":"PT23.5957827S","correlationId":"7f4fa93d-bd0e-4f22-bda1-689572f012e6","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_I6zuBGbIvxzttoMtz2cloxp68j226qIN","name":"vm_deploy_I6zuBGbIvxzttoMtz2cloxp68j226qIN","type":"Microsoft.Resources/deployments","properties":{"templateHash":"18211211642065295799","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-01-27T08:33:22.6889159Z","duration":"PT47.5240106S","correlationId":"626abc0d-eb78-49de-9909-d374ed26d1b2","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"}]}}' headers: cache-control: - no-cache @@ -2393,7 +2467,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:44:42 GMT + - Wed, 27 Jan 2021 08:33:39 GMT expires: - '-1' pragma: @@ -2421,22 +2495,22 @@ interactions: ParameterSetName: - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2?$expand=instanceView&api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"vm2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"8254cf8d-a5d4-41c7-8702-2e7cebf5421e\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"4b608cf2-e515-46bf-856a-d8e96051f2e4\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0\",\r\n \ \"exactVersion\": \"1.0.0\"\r\n },\r\n \"osDisk\": {\r\n - \ \"osType\": \"Linux\",\r\n \"name\": \"vm2_OsDisk_1_6cd672451e444b86b3d15f481078f8e4\",\r\n + \ \"osType\": \"Linux\",\r\n \"name\": \"vm2_OsDisk_1_5e8900703401413faab60f68d75201af\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm2_OsDisk_1_6cd672451e444b86b3d15f481078f8e4\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm2_OsDisk_1_5e8900703401413faab60f68d75201af\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\"}]},\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": @@ -2444,18 +2518,18 @@ interactions: \ {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \ \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet - populated.\",\r\n \"time\": \"2020-12-19T06:44:43+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2021-01-27T08:33:42+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"vm2_OsDisk_1_6cd672451e444b86b3d15f481078f8e4\",\r\n \"statuses\": + \"vm2_OsDisk_1_5e8900703401413faab60f68d75201af\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-12-19T06:44:23.4376619+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-27T08:33:06.2628777+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"OSState/specialized\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM specialized\"\r\n \ },\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-12-19T06:44:31.1411758+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-01-27T08:33:19.4347796+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n \ }\r\n ]\r\n }\r\n }\r\n}" @@ -2467,7 +2541,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:44:42 GMT + - Wed, 27 Jan 2021 08:33:42 GMT expires: - '-1' pragma: @@ -2484,7 +2558,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3974,Microsoft.Compute/LowCostGet30Min;31943 + - Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31905 status: code: 200 message: OK @@ -2492,7 +2566,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -2502,21 +2576,18 @@ interactions: ParameterSetName: - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"vm2VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\",\r\n - \ \"etag\": \"W/\\\"cdece484-8c59-4fb2-b474-7eea821cc7bc\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"06255786-598c-4d60-8e6b-5b7dd8622885\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"4b8f46b2-58c1-4f08-87fb-b43065b9d2eb\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"d4b222ea-894a-4ce7-ab9e-ddb34557b6f9\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm2\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2\",\r\n - \ \"etag\": \"W/\\\"cdece484-8c59-4fb2-b474-7eea821cc7bc\\\"\",\r\n + \ \"etag\": \"W/\\\"06255786-598c-4d60-8e6b-5b7dd8622885\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": @@ -2525,8 +2596,8 @@ interactions: \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": - \"112gmj1xbe5eng4swtqx3kwqsd.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-22-48-06-90-40\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"qt232ezaxwjedgifv2w2l4kmyf.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-37-49-07\",\r\n \"enableAcceleratedNetworking\": false,\r\n \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -2540,9 +2611,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:44:43 GMT + - Wed, 27 Jan 2021 08:33:42 GMT etag: - - W/"cdece484-8c59-4fb2-b474-7eea821cc7bc" + - W/"06255786-598c-4d60-8e6b-5b7dd8622885" expires: - '-1' pragma: @@ -2559,7 +2630,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cc10fd23-6e61-4f8c-8718-ba004bb844a5 + - dcb54d39-61a7-4135-a5f4-8cc0accd8420 status: code: 200 message: OK @@ -2567,7 +2638,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -2577,19 +2648,16 @@ interactions: ParameterSetName: - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"vm2PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\",\r\n - \ \"etag\": \"W/\\\"6e990aa1-dd08-4e55-86eb-616ce1997a2c\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"058ac2a8-f34f-4957-9ae3-aa28dcdd8c19\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"74784c6c-efd5-4127-82f2-9ec1f0f8884e\",\r\n - \ \"ipAddress\": \"40.112.179.68\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"68040440-4a87-4334-a080-0ef8cbf60d49\",\r\n + \ \"ipAddress\": \"13.64.112.227\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n @@ -2602,9 +2670,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:44:43 GMT + - Wed, 27 Jan 2021 08:33:43 GMT etag: - - W/"6e990aa1-dd08-4e55-86eb-616ce1997a2c" + - W/"058ac2a8-f34f-4957-9ae3-aa28dcdd8c19" expires: - '-1' pragma: @@ -2621,7 +2689,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a2480365-3b49-49d8-9676-6f02cde3ac94 + - 869ab232-d3df-4bf9-b867-b619848a5a87 status: code: 200 message: OK @@ -2639,15 +2707,15 @@ interactions: ParameterSetName: - -g -n --image --specialized --admin-username --admin-password --authentication-type User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-12-19T06:33:09Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2656,7 +2724,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:44:43 GMT + - Wed, 27 Jan 2021 08:33:43 GMT expires: - '-1' pragma: @@ -2684,7 +2752,7 @@ interactions: ParameterSetName: - -g -n --image --specialized --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -2704,7 +2772,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:44:44 GMT + - Wed, 27 Jan 2021 08:33:43 GMT expires: - '-1' pragma: @@ -2721,7 +2789,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;594,Microsoft.Compute/GetGalleryImage30Min;2988 + - Microsoft.Compute/GetGalleryImage3Min;583,Microsoft.Compute/GetGalleryImage30Min;2944 status: code: 200 message: OK @@ -2739,9 +2807,9 @@ interactions: ParameterSetName: - -g -n --image --specialized --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.16.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0\",\r\n @@ -2750,7 +2818,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-12-19T06:35:04.0253078+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-01-27T08:23:25.6800879+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": \"ReadWrite\",\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2764,7 +2832,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:44:44 GMT + - Wed, 27 Jan 2021 08:33:44 GMT expires: - '-1' pragma: @@ -2781,7 +2849,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1995,Microsoft.Compute/GetGalleryImageVersion30Min;9992 + - Microsoft.Compute/GetGalleryImageVersion3Min;1990,Microsoft.Compute/GetGalleryImageVersion30Min;9963 status: code: 200 message: OK @@ -2789,7 +2857,7 @@ interactions: body: null headers: Accept: - - application/json + - application/json, text/json Accept-Encoding: - gzip, deflate CommandName: @@ -2799,24 +2867,21 @@ interactions: ParameterSetName: - -g -n --image --specialized --admin-username --admin-password --authentication-type User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 - accept-language: - - en-US + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vm1VNET\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\r\n - \ \"etag\": \"W/\\\"05528d0a-490a-4676-97e7-7cbff8745d89\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"ddc5417a-2104-4caf-b503-bc553f788f2a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"2766f8de-0977-463e-9bd2-b4e17eaad093\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"13def984-bd20-4192-9905-af2dc5f94cc5\",\r\n \ \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n \ ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"vm1Subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\r\n - \ \"etag\": \"W/\\\"05528d0a-490a-4676-97e7-7cbff8745d89\\\"\",\r\n + \ \"etag\": \"W/\\\"ddc5417a-2104-4caf-b503-bc553f788f2a\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n @@ -2833,7 +2898,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:44:45 GMT + - Wed, 27 Jan 2021 08:33:44 GMT expires: - '-1' pragma: @@ -2850,7 +2915,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 16d1ef7f-390d-4c2a-bc94-f0014a0a51c5 + - cd14373c-959a-4f62-ad13-cc43c8a8484b status: code: 200 message: OK @@ -2875,8 +2940,8 @@ interactions: true, "upgradePolicy": {"mode": "manual"}, "virtualMachineProfile": {"storageProfile": {"osDisk": {"createOption": "FromImage", "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0"}}, - "networkProfile": {"networkInterfaceConfigurations": [{"name": "vmss18a43Nic", - "properties": {"primary": "true", "ipConfigurations": [{"name": "vmss18a43IPConfig", + "networkProfile": {"networkInterfaceConfigurations": [{"name": "vmss1aa3cNic", + "properties": {"primary": "true", "ipConfigurations": [{"name": "vmss1aa3cIPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"}, "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}], "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}}, @@ -2900,18 +2965,18 @@ interactions: ParameterSetName: - -g -n --image --specialized --admin-username --admin-password --authentication-type User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_2oywz1m2IaABRQcGC28jjdKflzznjSlq","name":"vmss_deploy_2oywz1m2IaABRQcGC28jjdKflzznjSlq","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7250567091129289817","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-12-19T06:44:47.9218106Z","duration":"PT1.0213739S","correlationId":"50406201-2c1f-47f6-bc09-a9d3d3a03821","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_VA9zcK63HDXF3fyfA24qQoK4yUAqAlnH","name":"vmss_deploy_VA9zcK63HDXF3fyfA24qQoK4yUAqAlnH","type":"Microsoft.Resources/deployments","properties":{"templateHash":"1346825392048452957","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-01-27T08:33:50.3796186Z","duration":"PT3.3536153S","correlationId":"3779c32e-fa2e-42be-a3eb-d8c82b540f28","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_2oywz1m2IaABRQcGC28jjdKflzznjSlq/operationStatuses/08585932465985771885?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_VA9zcK63HDXF3fyfA24qQoK4yUAqAlnH/operationStatuses/08585898704584516256?api-version=2020-10-01 cache-control: - no-cache content-length: @@ -2919,7 +2984,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:44:47 GMT + - Wed, 27 Jan 2021 08:33:51 GMT expires: - '-1' pragma: @@ -2929,7 +2994,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' status: code: 201 message: Created @@ -2947,10 +3012,53 @@ interactions: ParameterSetName: - -g -n --image --specialized --admin-username --admin-password --authentication-type User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585898704584516256?api-version=2020-10-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 27 Jan 2021 08:34:23 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --specialized --admin-username --admin-password --authentication-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585932465985771885?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585898704584516256?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -2962,7 +3070,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:45:18 GMT + - Wed, 27 Jan 2021 08:34:54 GMT expires: - '-1' pragma: @@ -2990,10 +3098,10 @@ interactions: ParameterSetName: - -g -n --image --specialized --admin-username --admin-password --authentication-type User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585932465985771885?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585898704584516256?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -3005,7 +3113,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:45:48 GMT + - Wed, 27 Jan 2021 08:35:24 GMT expires: - '-1' pragma: @@ -3033,22 +3141,22 @@ interactions: ParameterSetName: - -g -n --image --specialized --admin-username --admin-password --authentication-type User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_2oywz1m2IaABRQcGC28jjdKflzznjSlq","name":"vmss_deploy_2oywz1m2IaABRQcGC28jjdKflzznjSlq","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7250567091129289817","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-12-19T06:45:26.033697Z","duration":"PT39.1332603S","correlationId":"50406201-2c1f-47f6-bc09-a9d3d3a03821","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"storageProfile":{"osDisk":{"createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss18a43Nic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss18a43IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"68e7720b-c393-40f4-8f5f-434dd08385f8"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_VA9zcK63HDXF3fyfA24qQoK4yUAqAlnH","name":"vmss_deploy_VA9zcK63HDXF3fyfA24qQoK4yUAqAlnH","type":"Microsoft.Resources/deployments","properties":{"templateHash":"1346825392048452957","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-01-27T08:35:11.726671Z","duration":"PT1M24.7006677S","correlationId":"3779c32e-fa2e-42be-a3eb-d8c82b540f28","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"storageProfile":{"osDisk":{"createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss1aa3cNic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss1aa3cIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"6efc399c-19b5-4ec2-9c08-56f24334b770"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"}]}}' headers: cache-control: - no-cache content-length: - - '4509' + - '4511' content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:45:48 GMT + - Wed, 27 Jan 2021 08:35:25 GMT expires: - '-1' pragma: @@ -3076,15 +3184,15 @@ interactions: ParameterSetName: - -g -n --specialized User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-12-19T06:33:09Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3093,7 +3201,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:45:49 GMT + - Wed, 27 Jan 2021 08:35:26 GMT expires: - '-1' pragma: @@ -3121,15 +3229,15 @@ interactions: ParameterSetName: - -g -n --specialized User-Agent: - - python/3.8.6 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.16.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-12-19T06:33:09Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3138,7 +3246,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 19 Dec 2020 06:45:50 GMT + - Wed, 27 Jan 2021 08:35:26 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_disk_max_shares_etc.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_disk_max_shares_etc.yaml index 645bdab08ce..4e813a9b536 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_disk_max_shares_etc.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_disk_max_shares_etc.yaml @@ -14,14 +14,14 @@ interactions: - -g -n --size-gb --sku --disk-iops-read-only --disk-mbps-read-only User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-11-10T06:53:46Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:53:49 GMT + - Wed, 27 Jan 2021 08:20:47 GMT expires: - '-1' pragma: @@ -64,7 +64,7 @@ interactions: ParameterSetName: - -g -n --size-gb --sku --disk-iops-read-only --disk-mbps-read-only User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-06-30 response: @@ -78,7 +78,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/ff763615-60cc-4c7d-8843-991c0bdb7cd4?api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/26a08cc1-4385-43d4-9c12-5fd26ee8f73c?api-version=2020-06-30 cache-control: - no-cache content-length: @@ -86,11 +86,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:53:53 GMT + - Wed, 27 Jan 2021 08:20:52 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/ff763615-60cc-4c7d-8843-991c0bdb7cd4?monitor=true&api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/26a08cc1-4385-43d4-9c12-5fd26ee8f73c?monitor=true&api-version=2020-06-30 pragma: - no-cache server: @@ -101,9 +101,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7989 + - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7981 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 202 message: Accepted @@ -121,124 +121,36 @@ interactions: ParameterSetName: - -g -n --size-gb --sku --disk-iops-read-only --disk-mbps-read-only User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/ff763615-60cc-4c7d-8843-991c0bdb7cd4?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/26a08cc1-4385-43d4-9c12-5fd26ee8f73c?api-version=2020-06-30 response: body: - string: "{\r\n \"startTime\": \"2020-11-10T06:53:54.4740269+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"ff763615-60cc-4c7d-8843-991c0bdb7cd4\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 10 Nov 2020 06:53:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49983,Microsoft.Compute/GetOperation30Min;399940 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - disk create - Connection: - - keep-alive - ParameterSetName: - - -g -n --size-gb --sku --disk-iops-read-only --disk-mbps-read-only - User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/ff763615-60cc-4c7d-8843-991c0bdb7cd4?api-version=2020-06-30 - response: - body: - string: "{\r\n \"startTime\": \"2020-11-10T06:53:54.4740269+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"ff763615-60cc-4c7d-8843-991c0bdb7cd4\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 10 Nov 2020 06:54:06 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49977,Microsoft.Compute/GetOperation30Min;399933 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - disk create - Connection: - - keep-alive - ParameterSetName: - - -g -n --size-gb --sku --disk-iops-read-only --disk-mbps-read-only - User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/ff763615-60cc-4c7d-8843-991c0bdb7cd4?api-version=2020-06-30 - response: - body: - string: "{\r\n \"startTime\": \"2020-11-10T06:53:54.4740269+00:00\",\r\n \"endTime\": - \"2020-11-10T06:54:21.9440126+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"properties\": {\r\n \"output\": {\"name\":\"d1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1\",\"type\":\"Microsoft.Compute/disks\",\"location\":\"westus\",\"tags\":{},\"sku\":{\"name\":\"UltraSSD_LRS\",\"tier\":\"Ultra\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\",\"logicalSectorSize\":4096},\"diskSizeGB\":10,\"diskIOPSReadWrite\":100,\"diskMBpsReadWrite\":13,\"readOnly\":false,\"diskIOPSReadOnly\":200,\"diskMBpsReadOnly\":30,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"maxShares\":1,\"timeCreated\":\"2020-11-10T06:53:54.4896546+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":10737418240,\"uniqueId\":\"0f041b69-63dd-430e-b631-d78b5fc21263\",\"networkAccessPolicy\":\"AllowAll\"}}\r\n - \ },\r\n \"name\": \"ff763615-60cc-4c7d-8843-991c0bdb7cd4\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:20:52.8949725+00:00\",\r\n \"endTime\": + \"2021-01-27T08:20:53.9262429+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d1\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1\",\r\n + \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"UltraSSD_LRS\",\r\n \"tier\": + \"Ultra\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": + \"Empty\",\r\n \"logicalSectorSize\": 4096\r\n },\r\n \"diskSizeGB\": + 10,\r\n \"diskIOPSReadWrite\": 100,\r\n \"diskMBpsReadWrite\": 13,\r\n + \ \"readOnly\": false,\r\n \"diskIOPSReadOnly\": 200,\r\n \"diskMBpsReadOnly\": + 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n + \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-01-27T08:20:52.8949725+00:00\",\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"d7b065fe-4558-4566-9ddc-89d7c85a574f\",\r\n + \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": + \"26a08cc1-4385-43d4-9c12-5fd26ee8f73c\"\r\n}" headers: cache-control: - no-cache content-length: - - '1026' + - '1229' content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:54:37 GMT + - Wed, 27 Jan 2021 08:20:55 GMT expires: - '-1' pragma: @@ -255,7 +167,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49974,Microsoft.Compute/GetOperation30Min;399930 + - Microsoft.Compute/GetOperation3Min;49992,Microsoft.Compute/GetOperation30Min;399864 status: code: 200 message: OK @@ -273,7 +185,7 @@ interactions: ParameterSetName: - -g -n --size-gb --sku --disk-iops-read-only --disk-mbps-read-only User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-06-30 response: @@ -286,9 +198,9 @@ interactions: 10,\r\n \"diskIOPSReadWrite\": 100,\r\n \"diskMBpsReadWrite\": 13,\r\n \ \"readOnly\": false,\r\n \"diskIOPSReadOnly\": 200,\r\n \"diskMBpsReadOnly\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2020-11-10T06:53:54.4896546+00:00\",\r\n + \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-01-27T08:20:52.8949725+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"0f041b69-63dd-430e-b631-d78b5fc21263\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"d7b065fe-4558-4566-9ddc-89d7c85a574f\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -298,7 +210,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:54:37 GMT + - Wed, 27 Jan 2021 08:20:55 GMT expires: - '-1' pragma: @@ -315,7 +227,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4983,Microsoft.Compute/LowCostGet30Min;39921 + - Microsoft.Compute/LowCostGet3Min;4987,Microsoft.Compute/LowCostGet30Min;39809 status: code: 200 message: OK @@ -333,7 +245,7 @@ interactions: ParameterSetName: - -g -n --disk-iops-read-only --disk-mbps-read-only User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-06-30 response: @@ -346,9 +258,9 @@ interactions: 10,\r\n \"diskIOPSReadWrite\": 100,\r\n \"diskMBpsReadWrite\": 13,\r\n \ \"readOnly\": false,\r\n \"diskIOPSReadOnly\": 200,\r\n \"diskMBpsReadOnly\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2020-11-10T06:53:54.4896546+00:00\",\r\n + \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-01-27T08:20:52.8949725+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"0f041b69-63dd-430e-b631-d78b5fc21263\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"d7b065fe-4558-4566-9ddc-89d7c85a574f\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -358,7 +270,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:54:38 GMT + - Wed, 27 Jan 2021 08:20:56 GMT expires: - '-1' pragma: @@ -375,7 +287,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4982,Microsoft.Compute/LowCostGet30Min;39920 + - Microsoft.Compute/LowCostGet3Min;4986,Microsoft.Compute/LowCostGet30Min;39808 status: code: 200 message: OK @@ -401,7 +313,7 @@ interactions: ParameterSetName: - -g -n --disk-iops-read-only --disk-mbps-read-only User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-06-30 response: @@ -417,7 +329,7 @@ interactions: \ \"faultDomain\": 0,\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/ec01d761-8ade-44d0-8952-30acda89a28c?api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/48e9c2d0-d449-48ec-aaca-c25d931ca766?api-version=2020-06-30 cache-control: - no-cache content-length: @@ -425,11 +337,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:54:39 GMT + - Wed, 27 Jan 2021 08:20:57 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/ec01d761-8ade-44d0-8952-30acda89a28c?monitor=true&api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/48e9c2d0-d449-48ec-aaca-c25d931ca766?monitor=true&api-version=2020-06-30 pragma: - no-cache server: @@ -440,7 +352,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7988 + - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7980 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -460,13 +372,13 @@ interactions: ParameterSetName: - -g -n --disk-iops-read-only --disk-mbps-read-only User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/ec01d761-8ade-44d0-8952-30acda89a28c?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/48e9c2d0-d449-48ec-aaca-c25d931ca766?api-version=2020-06-30 response: body: - string: "{\r\n \"startTime\": \"2020-11-10T06:54:40.1010963+00:00\",\r\n \"endTime\": - \"2020-11-10T06:54:40.2417291+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-01-27T08:20:58.0200347+00:00\",\r\n \"endTime\": + \"2021-01-27T08:20:58.1762437+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n @@ -476,11 +388,11 @@ interactions: 10,\r\n \"diskIOPSReadWrite\": 100,\r\n \"diskMBpsReadWrite\": 13,\r\n \ \"readOnly\": false,\r\n \"diskIOPSReadOnly\": 250,\r\n \"diskMBpsReadOnly\": 40,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2020-11-10T06:53:54.4896546+00:00\",\r\n + \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-01-27T08:20:52.8949725+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"0f041b69-63dd-430e-b631-d78b5fc21263\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"d7b065fe-4558-4566-9ddc-89d7c85a574f\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"ec01d761-8ade-44d0-8952-30acda89a28c\"\r\n}" + \"48e9c2d0-d449-48ec-aaca-c25d931ca766\"\r\n}" headers: cache-control: - no-cache @@ -489,7 +401,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:54:42 GMT + - Wed, 27 Jan 2021 08:20:59 GMT expires: - '-1' pragma: @@ -506,7 +418,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49973,Microsoft.Compute/GetOperation30Min;399929 + - Microsoft.Compute/GetOperation3Min;49990,Microsoft.Compute/GetOperation30Min;399862 status: code: 200 message: OK @@ -524,7 +436,7 @@ interactions: ParameterSetName: - -g -n --disk-iops-read-only --disk-mbps-read-only User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-06-30 response: @@ -537,9 +449,9 @@ interactions: 10,\r\n \"diskIOPSReadWrite\": 100,\r\n \"diskMBpsReadWrite\": 13,\r\n \ \"readOnly\": false,\r\n \"diskIOPSReadOnly\": 250,\r\n \"diskMBpsReadOnly\": 40,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2020-11-10T06:53:54.4896546+00:00\",\r\n + \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-01-27T08:20:52.8949725+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"0f041b69-63dd-430e-b631-d78b5fc21263\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"d7b065fe-4558-4566-9ddc-89d7c85a574f\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -549,7 +461,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:54:42 GMT + - Wed, 27 Jan 2021 08:21:00 GMT expires: - '-1' pragma: @@ -566,7 +478,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4980,Microsoft.Compute/LowCostGet30Min;39918 + - Microsoft.Compute/LowCostGet3Min;4989,Microsoft.Compute/LowCostGet30Min;39806 status: code: 200 message: OK @@ -585,14 +497,14 @@ interactions: - -g -n --image-reference User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-11-10T06:53:46Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -601,7 +513,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:54:42 GMT + - Wed, 27 Jan 2021 08:21:00 GMT expires: - '-1' pragma: @@ -634,7 +546,7 @@ interactions: ParameterSetName: - -g -n --image-reference User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d2?api-version=2020-06-30 response: @@ -648,7 +560,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/efbf0efb-5e4a-440c-b8d8-b7b910ce4b7f?api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/d045c180-36da-4c86-bdeb-b1315fd7b572?api-version=2020-06-30 cache-control: - no-cache content-length: @@ -656,11 +568,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:54:47 GMT + - Wed, 27 Jan 2021 08:21:05 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/efbf0efb-5e4a-440c-b8d8-b7b910ce4b7f?monitor=true&api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/d045c180-36da-4c86-bdeb-b1315fd7b572?monitor=true&api-version=2020-06-30 pragma: - no-cache server: @@ -671,9 +583,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;996,Microsoft.Compute/CreateUpdateDisks30Min;7987 + - Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7979 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 202 message: Accepted @@ -691,13 +603,13 @@ interactions: ParameterSetName: - -g -n --image-reference User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/efbf0efb-5e4a-440c-b8d8-b7b910ce4b7f?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/d045c180-36da-4c86-bdeb-b1315fd7b572?api-version=2020-06-30 response: body: - string: "{\r\n \"startTime\": \"2020-11-10T06:54:47.3826702+00:00\",\r\n \"endTime\": - \"2020-11-10T06:54:48.0389276+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-01-27T08:21:05.2237819+00:00\",\r\n \"endTime\": + \"2021-01-27T08:21:06.0206479+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d2\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n @@ -707,11 +619,11 @@ interactions: \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202002180\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-11-10T06:54:47.4139211+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-27T08:21:05.2550259+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"04d68631-c844-4e7d-9c7e-83ba61d7abc8\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"53b9a6fa-4aa6-418d-bb75-f116de69fd30\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"efbf0efb-5e4a-440c-b8d8-b7b910ce4b7f\"\r\n}" + \ },\r\n \"name\": \"d045c180-36da-4c86-bdeb-b1315fd7b572\"\r\n}" headers: cache-control: - no-cache @@ -720,7 +632,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:54:49 GMT + - Wed, 27 Jan 2021 08:21:07 GMT expires: - '-1' pragma: @@ -737,7 +649,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49971,Microsoft.Compute/GetOperation30Min;399927 + - Microsoft.Compute/GetOperation3Min;49988,Microsoft.Compute/GetOperation30Min;399860 status: code: 200 message: OK @@ -755,7 +667,7 @@ interactions: ParameterSetName: - -g -n --image-reference User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d2?api-version=2020-06-30 response: @@ -768,9 +680,9 @@ interactions: \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202002180\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-11-10T06:54:47.4139211+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-27T08:21:05.2550259+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"04d68631-c844-4e7d-9c7e-83ba61d7abc8\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"53b9a6fa-4aa6-418d-bb75-f116de69fd30\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}" headers: cache-control: @@ -780,7 +692,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:54:49 GMT + - Wed, 27 Jan 2021 08:21:07 GMT expires: - '-1' pragma: @@ -797,7 +709,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4978,Microsoft.Compute/LowCostGet30Min;39916 + - Microsoft.Compute/LowCostGet3Min;4986,Microsoft.Compute/LowCostGet30Min;39803 status: code: 200 message: OK @@ -816,14 +728,14 @@ interactions: - -g -n --image-reference User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-11-10T06:53:46Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -832,7 +744,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:54:50 GMT + - Wed, 27 Jan 2021 08:21:08 GMT expires: - '-1' pragma: @@ -860,7 +772,7 @@ interactions: ParameterSetName: - -g -n --image-reference User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202002180?api-version=2020-06-01 response: @@ -880,7 +792,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:54:51 GMT + - Wed, 27 Jan 2021 08:21:09 GMT expires: - '-1' pragma: @@ -918,7 +830,7 @@ interactions: ParameterSetName: - -g -n --image-reference User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d3?api-version=2020-06-30 response: @@ -932,7 +844,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/61c9994b-4621-45d8-a541-ca19e63c6b36?api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/a069bf6c-288c-421d-99ea-3ed7b46c62dd?api-version=2020-06-30 cache-control: - no-cache content-length: @@ -940,11 +852,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:54:57 GMT + - Wed, 27 Jan 2021 08:21:14 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/61c9994b-4621-45d8-a541-ca19e63c6b36?monitor=true&api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/a069bf6c-288c-421d-99ea-3ed7b46c62dd?monitor=true&api-version=2020-06-30 pragma: - no-cache server: @@ -955,9 +867,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;995,Microsoft.Compute/CreateUpdateDisks30Min;7986 + - Microsoft.Compute/CreateUpdateDisks3Min;996,Microsoft.Compute/CreateUpdateDisks30Min;7978 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -975,13 +887,13 @@ interactions: ParameterSetName: - -g -n --image-reference User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/61c9994b-4621-45d8-a541-ca19e63c6b36?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/a069bf6c-288c-421d-99ea-3ed7b46c62dd?api-version=2020-06-30 response: body: - string: "{\r\n \"startTime\": \"2020-11-10T06:54:57.8676032+00:00\",\r\n \"endTime\": - \"2020-11-10T06:54:58.3207787+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-01-27T08:21:14.6144435+00:00\",\r\n \"endTime\": + \"2021-01-27T08:21:15.0831811+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d3\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n @@ -991,11 +903,11 @@ interactions: \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202002180\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-11-10T06:54:57.8832328+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-27T08:21:14.6144435+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"6e86b857-ed33-43b9-8da8-c88dc036d988\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"38d7314e-b1bb-4e37-bda2-bac742501102\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"61c9994b-4621-45d8-a541-ca19e63c6b36\"\r\n}" + \ },\r\n \"name\": \"a069bf6c-288c-421d-99ea-3ed7b46c62dd\"\r\n}" headers: cache-control: - no-cache @@ -1004,7 +916,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:55:00 GMT + - Wed, 27 Jan 2021 08:21:17 GMT expires: - '-1' pragma: @@ -1021,7 +933,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49971,Microsoft.Compute/GetOperation30Min;399943 + - Microsoft.Compute/GetOperation3Min;49986,Microsoft.Compute/GetOperation30Min;399858 status: code: 200 message: OK @@ -1039,7 +951,7 @@ interactions: ParameterSetName: - -g -n --image-reference User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d3?api-version=2020-06-30 response: @@ -1052,9 +964,9 @@ interactions: \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202002180\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-11-10T06:54:57.8832328+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-27T08:21:14.6144435+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"6e86b857-ed33-43b9-8da8-c88dc036d988\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"38d7314e-b1bb-4e37-bda2-bac742501102\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}" headers: cache-control: @@ -1064,7 +976,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:55:00 GMT + - Wed, 27 Jan 2021 08:21:17 GMT expires: - '-1' pragma: @@ -1081,7 +993,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4977,Microsoft.Compute/LowCostGet30Min;39927 + - Microsoft.Compute/LowCostGet3Min;4982,Microsoft.Compute/LowCostGet30Min;39799 status: code: 200 message: OK @@ -1100,14 +1012,14 @@ interactions: - -g --gallery-name User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-11-10T06:53:46Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1116,7 +1028,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:55:02 GMT + - Wed, 27 Jan 2021 08:21:17 GMT expires: - '-1' pragma: @@ -1148,7 +1060,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002?api-version=2019-12-01 response: @@ -1156,11 +1068,11 @@ interactions: string: "{\r\n \"name\": \"g1000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-G1G6FCEAHDMTOIPLO5X2\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-G1JPFNIGQULXBYPDBQSQ\"\r\n },\r\n \ \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/48736282-4a77-465b-94a6-920bfef1d47e?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/64a2c0f2-0864-4f27-9017-c4be0195c73d?api-version=2019-12-01 cache-control: - no-cache content-length: @@ -1168,7 +1080,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:55:08 GMT + - Wed, 27 Jan 2021 08:21:23 GMT expires: - '-1' pragma: @@ -1181,7 +1093,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;298 + - Microsoft.Compute/CreateUpdateGallery3Min;48,Microsoft.Compute/CreateUpdateGallery30Min;296 x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -1201,23 +1113,23 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/48736282-4a77-465b-94a6-920bfef1d47e?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/64a2c0f2-0864-4f27-9017-c4be0195c73d?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-11-10T06:55:08.1634053+00:00\",\r\n \"endTime\": - \"2020-11-10T06:55:08.272784+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"48736282-4a77-465b-94a6-920bfef1d47e\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:21:22.2111953+00:00\",\r\n \"endTime\": + \"2021-01-27T08:21:22.3361648+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"64a2c0f2-0864-4f27-9017-c4be0195c73d\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:55:39 GMT + - Wed, 27 Jan 2021 08:21:53 GMT expires: - '-1' pragma: @@ -1234,7 +1146,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4183 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4157 status: code: 200 message: OK @@ -1252,7 +1164,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002?api-version=2019-12-01 response: @@ -1260,7 +1172,7 @@ interactions: string: "{\r\n \"name\": \"g1000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-G1G6FCEAHDMTOIPLO5X2\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-G1JPFNIGQULXBYPDBQSQ\"\r\n },\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -1270,7 +1182,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:55:39 GMT + - Wed, 27 Jan 2021 08:21:53 GMT expires: - '-1' pragma: @@ -1287,7 +1199,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2485 + - Microsoft.Compute/GetGallery3Min;342,Microsoft.Compute/GetGallery30Min;2478 status: code: 200 message: OK @@ -1307,14 +1219,14 @@ interactions: --hyper-v-generation User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-11-10T06:53:46Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1323,7 +1235,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:55:40 GMT + - Wed, 27 Jan 2021 08:21:54 GMT expires: - '-1' pragma: @@ -1339,9 +1251,10 @@ interactions: message: OK - request: body: '{"location": "westus", "tags": {}, "properties": {"osType": "Linux", "osState": - "Generalized", "features": [{"name": "IsSecureBootSupported", "value": "false"}, - {"name": "IsMeasuredBootSupported", "value": "false"}], "identifier": {"publisher": - "publisher1", "offer": "offer1", "sku": "sku1"}, "disallowed": {}}}' + "Generalized", "hyperVGeneration": "V2", "features": [{"name": "IsSecureBootSupported", + "value": "false"}, {"name": "IsMeasuredBootSupported", "value": "false"}], "identifier": + {"publisher": "publisher1", "offer": "offer1", "sku": "sku1"}, "disallowed": + {}}}' headers: Accept: - application/json @@ -1352,30 +1265,30 @@ interactions: Connection: - keep-alive Content-Length: - - '312' + - '338' Content-Type: - application/json ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s --features --hyper-v-generation User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"image\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image\",\r\n \ \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \ \"features\": [\r\n {\r\n \"name\": \"IsSecureBootSupported\",\r\n - \ \"value\": \"false\"\r\n },\r\n {\r\n \"name\": \"IsMeasuredBootSupported\",\r\n - \ \"value\": \"false\"\r\n }\r\n ],\r\n \"osType\": \"Linux\",\r\n + \ \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"IsMeasuredBootSupported\",\r\n + \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osType\": \"Linux\",\r\n \ \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"publisher1\",\r\n \"offer\": \"offer1\",\r\n \"sku\": \"sku1\"\r\n \ },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/23f9eac7-4522-4fc8-ac27-1cb4a1ae87c3?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d9f09be6-e07c-40fa-8d9d-326686b376b9?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -1383,7 +1296,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:55:44 GMT + - Wed, 27 Jan 2021 08:21:59 GMT expires: - '-1' pragma: @@ -1396,9 +1309,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;747 + - Microsoft.Compute/CreateUpdateGalleryImage3Min;148,Microsoft.Compute/CreateUpdateGalleryImage30Min;746 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -1417,14 +1330,14 @@ interactions: - -g --gallery-name --gallery-image-definition --os-type -p -f -s --features --hyper-v-generation User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/23f9eac7-4522-4fc8-ac27-1cb4a1ae87c3?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d9f09be6-e07c-40fa-8d9d-326686b376b9?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-11-10T06:55:43.5540823+00:00\",\r\n \"endTime\": - \"2020-11-10T06:55:43.6478213+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"23f9eac7-4522-4fc8-ac27-1cb4a1ae87c3\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:21:59.5393598+00:00\",\r\n \"endTime\": + \"2021-01-27T08:21:59.6330938+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"d9f09be6-e07c-40fa-8d9d-326686b376b9\"\r\n}" headers: cache-control: - no-cache @@ -1433,7 +1346,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:56:14 GMT + - Wed, 27 Jan 2021 08:22:30 GMT expires: - '-1' pragma: @@ -1450,7 +1363,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4181 + - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;4151 status: code: 200 message: OK @@ -1469,17 +1382,17 @@ interactions: - -g --gallery-name --gallery-image-definition --os-type -p -f -s --features --hyper-v-generation User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"image\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image\",\r\n \ \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \ \"features\": [\r\n {\r\n \"name\": \"IsSecureBootSupported\",\r\n - \ \"value\": \"false\"\r\n },\r\n {\r\n \"name\": \"IsMeasuredBootSupported\",\r\n - \ \"value\": \"false\"\r\n }\r\n ],\r\n \"osType\": \"Linux\",\r\n + \ \"value\": \"False\"\r\n },\r\n {\r\n \"name\": \"IsMeasuredBootSupported\",\r\n + \ \"value\": \"False\"\r\n }\r\n ],\r\n \"osType\": \"Linux\",\r\n \ \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"publisher1\",\r\n \"offer\": \"offer1\",\r\n \"sku\": \"sku1\"\r\n \ },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" @@ -1491,7 +1404,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:56:15 GMT + - Wed, 27 Jan 2021 08:22:31 GMT expires: - '-1' pragma: @@ -1508,7 +1421,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;596,Microsoft.Compute/GetGalleryImage30Min;2983 + - Microsoft.Compute/GetGalleryImage3Min;591,Microsoft.Compute/GetGalleryImage30Min;2977 status: code: 200 message: OK @@ -1527,14 +1440,14 @@ interactions: - -g -n --size-gb User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-11-10T06:53:46Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1543,7 +1456,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:56:15 GMT + - Wed, 27 Jan 2021 08:22:32 GMT expires: - '-1' pragma: @@ -1576,7 +1489,7 @@ interactions: ParameterSetName: - -g -n --size-gb User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk?api-version=2020-06-30 response: @@ -1585,22 +1498,22 @@ interactions: {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": - true,\r\n \"tier\": \"P3\"\r\n }\r\n}" + true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4fbef514-6474-46db-820a-7b11f7f4e14f?api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/31c876f8-4b3c-4bc3-a844-0d2e766338a7?api-version=2020-06-30 cache-control: - no-cache content-length: - - '301' + - '282' content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:56:20 GMT + - Wed, 27 Jan 2021 08:22:36 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4fbef514-6474-46db-820a-7b11f7f4e14f?monitor=true&api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/31c876f8-4b3c-4bc3-a844-0d2e766338a7?monitor=true&api-version=2020-06-30 pragma: - no-cache server: @@ -1611,9 +1524,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;995,Microsoft.Compute/CreateUpdateDisks30Min;7989 + - Microsoft.Compute/CreateUpdateDisks3Min;995,Microsoft.Compute/CreateUpdateDisks30Min;7977 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' status: code: 202 message: Accepted @@ -1631,13 +1544,13 @@ interactions: ParameterSetName: - -g -n --size-gb User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4fbef514-6474-46db-820a-7b11f7f4e14f?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/31c876f8-4b3c-4bc3-a844-0d2e766338a7?api-version=2020-06-30 response: body: - string: "{\r\n \"startTime\": \"2020-11-10T06:56:21.2481471+00:00\",\r\n \"endTime\": - \"2020-11-10T06:56:21.435681+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-01-27T08:22:36.227731+00:00\",\r\n \"endTime\": + \"2021-01-27T08:22:36.415238+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"disk\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n @@ -1646,19 +1559,19 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2020-11-10T06:56:21.2481471+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-01-27T08:22:36.227731+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"7301c944-f018-421d-bb62-0c6a35058f9d\",\r\n \"networkAccessPolicy\": - \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"4fbef514-6474-46db-820a-7b11f7f4e14f\"\r\n}" + \ \"uniqueId\": \"b0d6affa-aeeb-4a8e-a5a7-945941801832\",\r\n \"networkAccessPolicy\": + \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"31c876f8-4b3c-4bc3-a844-0d2e766338a7\"\r\n}" headers: cache-control: - no-cache content-length: - - '1114' + - '1112' content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:56:22 GMT + - Wed, 27 Jan 2021 08:22:38 GMT expires: - '-1' pragma: @@ -1675,7 +1588,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49977,Microsoft.Compute/GetOperation30Min;399941 + - Microsoft.Compute/GetOperation3Min;49983,Microsoft.Compute/GetOperation30Min;399854 status: code: 200 message: OK @@ -1693,7 +1606,7 @@ interactions: ParameterSetName: - -g -n --size-gb User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk?api-version=2020-06-30 response: @@ -1705,19 +1618,19 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2020-11-10T06:56:21.2481471+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-01-27T08:22:36.227731+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"7301c944-f018-421d-bb62-0c6a35058f9d\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"b0d6affa-aeeb-4a8e-a5a7-945941801832\",\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '890' + - '889' content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:56:23 GMT + - Wed, 27 Jan 2021 08:22:38 GMT expires: - '-1' pragma: @@ -1734,7 +1647,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4983,Microsoft.Compute/LowCostGet30Min;39924 + - Microsoft.Compute/LowCostGet3Min;4982,Microsoft.Compute/LowCostGet30Min;39793 status: code: 200 message: OK @@ -1752,7 +1665,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/disk?api-version=2020-05-01 response: @@ -1768,7 +1681,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:56:24 GMT + - Wed, 27 Jan 2021 08:22:39 GMT expires: - '-1' pragma: @@ -1796,7 +1709,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk?api-version=2020-06-30 response: @@ -1808,19 +1721,19 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2020-11-10T06:56:21.2481471+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-01-27T08:22:36.227731+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"7301c944-f018-421d-bb62-0c6a35058f9d\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"b0d6affa-aeeb-4a8e-a5a7-945941801832\",\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '890' + - '889' content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:56:24 GMT + - Wed, 27 Jan 2021 08:22:39 GMT expires: - '-1' pragma: @@ -1837,7 +1750,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4982,Microsoft.Compute/LowCostGet30Min;39923 + - Microsoft.Compute/LowCostGet3Min;4981,Microsoft.Compute/LowCostGet30Min;39792 status: code: 200 message: OK @@ -1856,14 +1769,14 @@ interactions: - -g -n --source User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-11-10T06:53:46Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1872,7 +1785,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:56:24 GMT + - Wed, 27 Jan 2021 08:22:40 GMT expires: - '-1' pragma: @@ -1905,7 +1818,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 response: @@ -1913,12 +1826,12 @@ interactions: string: "{\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \ \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk\",\r\n - \ \"sourceUniqueId\": \"7301c944-f018-421d-bb62-0c6a35058f9d\"\r\n },\r\n + \ \"sourceUniqueId\": \"b0d6affa-aeeb-4a8e-a5a7-945941801832\"\r\n },\r\n \ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/070860cd-e82d-4a43-81b2-289370f91287?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/127d6114-1682-4387-8de5-7d6cbfb7946b?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1926,11 +1839,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:56:29 GMT + - Wed, 27 Jan 2021 08:22:44 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/070860cd-e82d-4a43-81b2-289370f91287?monitor=true&api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/127d6114-1682-4387-8de5-7d6cbfb7946b?monitor=true&api-version=2020-05-01 pragma: - no-cache server: @@ -1941,7 +1854,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7997 + - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7990 x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -1961,26 +1874,26 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/070860cd-e82d-4a43-81b2-289370f91287?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/127d6114-1682-4387-8de5-7d6cbfb7946b?api-version=2020-05-01 response: body: - string: "{\r\n \"startTime\": \"2020-11-10T06:56:30.4522373+00:00\",\r\n \"endTime\": - \"2020-11-10T06:56:31.0772974+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-01-27T08:22:44.7902573+00:00\",\r\n \"endTime\": + \"2021-01-27T08:22:45.5090187+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1\",\r\n \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk\",\r\n - \ \"sourceUniqueId\": \"7301c944-f018-421d-bb62-0c6a35058f9d\"\r\n },\r\n + \ \"sourceUniqueId\": \"b0d6affa-aeeb-4a8e-a5a7-945941801832\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-11-10T06:56:30.4522373+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-01-27T08:22:44.8058834+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"210b2a98-0052-41c0-aa4c-dba044c0cd22\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"1266e83f-deb8-475f-9007-8acb1621a82b\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"070860cd-e82d-4a43-81b2-289370f91287\"\r\n}" + \"127d6114-1682-4387-8de5-7d6cbfb7946b\"\r\n}" headers: cache-control: - no-cache @@ -1989,7 +1902,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:56:32 GMT + - Wed, 27 Jan 2021 08:22:46 GMT expires: - '-1' pragma: @@ -2006,7 +1919,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49981,Microsoft.Compute/GetOperation30Min;399939 + - Microsoft.Compute/GetOperation3Min;49981,Microsoft.Compute/GetOperation30Min;399852 status: code: 200 message: OK @@ -2024,7 +1937,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 response: @@ -2034,11 +1947,11 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk\",\r\n - \ \"sourceUniqueId\": \"7301c944-f018-421d-bb62-0c6a35058f9d\"\r\n },\r\n + \ \"sourceUniqueId\": \"b0d6affa-aeeb-4a8e-a5a7-945941801832\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-11-10T06:56:30.4522373+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-01-27T08:22:44.8058834+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"210b2a98-0052-41c0-aa4c-dba044c0cd22\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"1266e83f-deb8-475f-9007-8acb1621a82b\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -2048,7 +1961,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:56:32 GMT + - Wed, 27 Jan 2021 08:22:46 GMT expires: - '-1' pragma: @@ -2065,7 +1978,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4980,Microsoft.Compute/LowCostGet30Min;39921 + - Microsoft.Compute/LowCostGet3Min;4979,Microsoft.Compute/LowCostGet30Min;39790 status: code: 200 message: OK @@ -2084,14 +1997,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-11-10T06:53:46Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2100,7 +2013,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:56:33 GMT + - Wed, 27 Jan 2021 08:22:48 GMT expires: - '-1' pragma: @@ -2134,9 +2047,9 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0\",\r\n @@ -2145,7 +2058,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-11-10T06:56:38.6323096+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-01-27T08:22:53.586332+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"hostCaching\": \"ReadWrite\",\r\n \ \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2153,15 +2066,15 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/17d2d751-bc9b-4803-9462-b04d4d45b065?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/0b39c2a7-3240-43f8-923d-d5ecbe2ce979?api-version=2020-09-30 cache-control: - no-cache content-length: - - '1139' + - '1138' content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:56:40 GMT + - Wed, 27 Jan 2021 08:22:54 GMT expires: - '-1' pragma: @@ -2174,9 +2087,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1199 + - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1197 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1196' status: code: 201 message: Created @@ -2194,22 +2107,22 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/17d2d751-bc9b-4803-9462-b04d4d45b065?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/0b39c2a7-3240-43f8-923d-d5ecbe2ce979?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-11-10T06:56:38.6323096+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"17d2d751-bc9b-4803-9462-b04d4d45b065\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:22:53.586332+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"0b39c2a7-3240-43f8-923d-d5ecbe2ce979\"\r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:57:40 GMT + - Wed, 27 Jan 2021 08:23:54 GMT expires: - '-1' pragma: @@ -2226,7 +2139,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4179 + - Microsoft.Compute/GetOperationStatus3Min;1181,Microsoft.Compute/GetOperationStatus30Min;4145 status: code: 200 message: OK @@ -2244,22 +2157,22 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/17d2d751-bc9b-4803-9462-b04d4d45b065?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/0b39c2a7-3240-43f8-923d-d5ecbe2ce979?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-11-10T06:56:38.6323096+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"17d2d751-bc9b-4803-9462-b04d4d45b065\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:22:53.586332+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"0b39c2a7-3240-43f8-923d-d5ecbe2ce979\"\r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:58:44 GMT + - Wed, 27 Jan 2021 08:24:54 GMT expires: - '-1' pragma: @@ -2276,7 +2189,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4177 + - Microsoft.Compute/GetOperationStatus3Min;1182,Microsoft.Compute/GetOperationStatus30Min;4139 status: code: 200 message: OK @@ -2294,22 +2207,22 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/17d2d751-bc9b-4803-9462-b04d4d45b065?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/0b39c2a7-3240-43f8-923d-d5ecbe2ce979?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-11-10T06:56:38.6323096+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"17d2d751-bc9b-4803-9462-b04d4d45b065\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:22:53.586332+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"0b39c2a7-3240-43f8-923d-d5ecbe2ce979\"\r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 06:59:44 GMT + - Wed, 27 Jan 2021 08:25:54 GMT expires: - '-1' pragma: @@ -2326,7 +2239,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4175 + - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;4133 status: code: 200 message: OK @@ -2344,22 +2257,22 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/17d2d751-bc9b-4803-9462-b04d4d45b065?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/0b39c2a7-3240-43f8-923d-d5ecbe2ce979?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-11-10T06:56:38.6323096+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"17d2d751-bc9b-4803-9462-b04d4d45b065\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:22:53.586332+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"0b39c2a7-3240-43f8-923d-d5ecbe2ce979\"\r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 07:00:46 GMT + - Wed, 27 Jan 2021 08:26:56 GMT expires: - '-1' pragma: @@ -2376,7 +2289,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4180 + - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;4129 status: code: 200 message: OK @@ -2394,22 +2307,22 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/17d2d751-bc9b-4803-9462-b04d4d45b065?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/0b39c2a7-3240-43f8-923d-d5ecbe2ce979?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-11-10T06:56:38.6323096+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"17d2d751-bc9b-4803-9462-b04d4d45b065\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:22:53.586332+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"0b39c2a7-3240-43f8-923d-d5ecbe2ce979\"\r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 07:01:46 GMT + - Wed, 27 Jan 2021 08:27:56 GMT expires: - '-1' pragma: @@ -2426,7 +2339,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4178 + - Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;4125 status: code: 200 message: OK @@ -2444,22 +2357,22 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/17d2d751-bc9b-4803-9462-b04d4d45b065?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/0b39c2a7-3240-43f8-923d-d5ecbe2ce979?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-11-10T06:56:38.6323096+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"17d2d751-bc9b-4803-9462-b04d4d45b065\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:22:53.586332+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"0b39c2a7-3240-43f8-923d-d5ecbe2ce979\"\r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 07:02:47 GMT + - Wed, 27 Jan 2021 08:28:56 GMT expires: - '-1' pragma: @@ -2476,7 +2389,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4177 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4121 status: code: 200 message: OK @@ -2494,23 +2407,23 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/17d2d751-bc9b-4803-9462-b04d4d45b065?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/0b39c2a7-3240-43f8-923d-d5ecbe2ce979?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-11-10T06:56:38.6323096+00:00\",\r\n \"endTime\": - \"2020-11-10T07:03:24.1653278+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"17d2d751-bc9b-4803-9462-b04d4d45b065\"\r\n}" + string: "{\r\n \"startTime\": \"2021-01-27T08:22:53.586332+00:00\",\r\n \"endTime\": + \"2021-01-27T08:29:39.0712585+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"0b39c2a7-3240-43f8-923d-d5ecbe2ce979\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 07:03:47 GMT + - Wed, 27 Jan 2021 08:29:57 GMT expires: - '-1' pragma: @@ -2527,7 +2440,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4175 + - Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;4116 status: code: 200 message: OK @@ -2545,9 +2458,9 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0\",\r\n @@ -2556,7 +2469,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-11-10T06:56:38.6323096+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-01-27T08:22:53.586332+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 10,\r\n \"hostCaching\": \"ReadWrite\",\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2566,11 +2479,11 @@ interactions: cache-control: - no-cache content-length: - - '1165' + - '1164' content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 07:03:48 GMT + - Wed, 27 Jan 2021 08:29:58 GMT expires: - '-1' pragma: @@ -2587,7 +2500,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1998,Microsoft.Compute/GetGalleryImageVersion30Min;9995 + - Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9978 status: code: 200 message: OK @@ -2606,14 +2519,14 @@ interactions: - -g -n --gallery-image-reference User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.14.1 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-11-10T06:53:46Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2622,7 +2535,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 07:03:48 GMT + - Wed, 27 Jan 2021 08:29:58 GMT expires: - '-1' pragma: @@ -2656,21 +2569,21 @@ interactions: ParameterSetName: - -g -n --gallery-image-reference User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d4?api-version=2020-06-30 response: body: string: "{\r\n \"name\": \"d4\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\"\r\n },\r\n \"properties\": - {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": + {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V2\",\r\n \"creationData\": {\r\n \"createOption\": \"FromImage\",\r\n \"galleryImageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0\"\r\n \ }\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/2099c0e2-28a2-4f7a-b14c-32c78cf7653f?api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/c87e4875-d6b6-4464-9580-b93e12af8947?api-version=2020-06-30 cache-control: - no-cache content-length: @@ -2678,11 +2591,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 07:03:54 GMT + - Wed, 27 Jan 2021 08:30:02 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/2099c0e2-28a2-4f7a-b14c-32c78cf7653f?monitor=true&api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/c87e4875-d6b6-4464-9580-b93e12af8947?monitor=true&api-version=2020-06-30 pragma: - no-cache server: @@ -2693,9 +2606,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7988 + - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7976 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1196' status: code: 202 message: Accepted @@ -2713,37 +2626,37 @@ interactions: ParameterSetName: - -g -n --gallery-image-reference User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/2099c0e2-28a2-4f7a-b14c-32c78cf7653f?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/c87e4875-d6b6-4464-9580-b93e12af8947?api-version=2020-06-30 response: body: - string: "{\r\n \"startTime\": \"2020-11-10T07:03:53.9228519+00:00\",\r\n \"endTime\": - \"2020-11-10T07:03:54.5791051+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-01-27T08:30:03.5665719+00:00\",\r\n \"endTime\": + \"2021-01-27T08:30:04.582173+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d4\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n - \ \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": + \ \"hyperVGeneration\": \"V2\",\r\n \"creationData\": {\r\n \"createOption\": \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0\"\r\n \ },\r\n \"galleryImageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-11-10T07:03:53.9540965+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-27T08:30:03.5977705+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"3589db8d-1917-4791-a17d-e5bfa0817f35\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"9d714e1b-da26-4655-8248-c0182ae0973e\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"2099c0e2-28a2-4f7a-b14c-32c78cf7653f\"\r\n}" + \ },\r\n \"name\": \"c87e4875-d6b6-4464-9580-b93e12af8947\"\r\n}" headers: cache-control: - no-cache content-length: - - '1745' + - '1744' content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 07:03:56 GMT + - Wed, 27 Jan 2021 08:30:05 GMT expires: - '-1' pragma: @@ -2760,7 +2673,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399935 + - Microsoft.Compute/GetOperation3Min;49980,Microsoft.Compute/GetOperation30Min;399803 status: code: 200 message: OK @@ -2778,7 +2691,7 @@ interactions: ParameterSetName: - -g -n --gallery-image-reference User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d4?api-version=2020-06-30 response: @@ -2787,14 +2700,14 @@ interactions: \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n - \ \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\": + \ \"hyperVGeneration\": \"V2\",\r\n \"creationData\": {\r\n \"createOption\": \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0\"\r\n \ },\r\n \"galleryImageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-11-10T07:03:53.9540965+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-27T08:30:03.5977705+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"3589db8d-1917-4791-a17d-e5bfa0817f35\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"9d714e1b-da26-4655-8248-c0182ae0973e\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: @@ -2804,7 +2717,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 07:03:56 GMT + - Wed, 27 Jan 2021 08:30:05 GMT expires: - '-1' pragma: @@ -2821,7 +2734,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4994,Microsoft.Compute/LowCostGet30Min;39925 + - Microsoft.Compute/LowCostGet3Min;4996,Microsoft.Compute/LowCostGet30Min;39763 status: code: 200 message: OK @@ -2845,7 +2758,7 @@ interactions: ParameterSetName: - -g -n --size-gb --max-shares -l User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6?api-version=2020-06-30 response: @@ -2858,7 +2771,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/a1e5e28a-8bf1-4f57-aab9-a6b5817b820a?api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/040f312a-603a-41fa-8624-f61cf9805333?api-version=2020-06-30 cache-control: - no-cache content-length: @@ -2866,11 +2779,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 07:04:02 GMT + - Wed, 27 Jan 2021 08:30:10 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/a1e5e28a-8bf1-4f57-aab9-a6b5817b820a?monitor=true&api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/040f312a-603a-41fa-8624-f61cf9805333?monitor=true&api-version=2020-06-30 pragma: - no-cache server: @@ -2881,9 +2794,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999 + - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7995 x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1198' status: code: 202 message: Accepted @@ -2901,13 +2814,13 @@ interactions: ParameterSetName: - -g -n --size-gb --max-shares -l User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/a1e5e28a-8bf1-4f57-aab9-a6b5817b820a?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/040f312a-603a-41fa-8624-f61cf9805333?api-version=2020-06-30 response: body: - string: "{\r\n \"startTime\": \"2020-11-10T07:04:02.8933294+00:00\",\r\n \"endTime\": - \"2020-11-10T07:04:03.2333072+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-01-27T08:30:11.4298912+00:00\",\r\n \"endTime\": + \"2021-01-27T08:30:11.6149352+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"centraluseuap\",\r\n @@ -2916,11 +2829,11 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 256,\r\n \ \"diskIOPSReadWrite\": 1100,\r\n \"diskMBpsReadWrite\": 125,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"maxShares\": - 2,\r\n \"timeCreated\": \"2020-11-10T07:04:02.9533325+00:00\",\r\n \"provisioningState\": + 2,\r\n \"timeCreated\": \"2021-01-27T08:30:11.4348991+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 274877906944,\r\n \"uniqueId\": \"13b1c5fa-d9b5-4ff3-998b-904ab4bfa285\",\r\n + 274877906944,\r\n \"uniqueId\": \"f447de4d-100d-4b8e-bf79-baa3df010a59\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"a1e5e28a-8bf1-4f57-aab9-a6b5817b820a\"\r\n}" + \ },\r\n \"name\": \"040f312a-603a-41fa-8624-f61cf9805333\"\r\n}" headers: cache-control: - no-cache @@ -2929,7 +2842,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 07:04:04 GMT + - Wed, 27 Jan 2021 08:30:13 GMT expires: - '-1' pragma: @@ -2946,7 +2859,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399999 + - Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399961 status: code: 200 message: OK @@ -2964,7 +2877,7 @@ interactions: ParameterSetName: - -g -n --size-gb --max-shares -l User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6?api-version=2020-06-30 response: @@ -2976,9 +2889,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 256,\r\n \ \"diskIOPSReadWrite\": 1100,\r\n \"diskMBpsReadWrite\": 125,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"maxShares\": - 2,\r\n \"timeCreated\": \"2020-11-10T07:04:02.9533325+00:00\",\r\n \"provisioningState\": + 2,\r\n \"timeCreated\": \"2021-01-27T08:30:11.4348991+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 274877906944,\r\n \"uniqueId\": \"13b1c5fa-d9b5-4ff3-998b-904ab4bfa285\",\r\n + 274877906944,\r\n \"uniqueId\": \"f447de4d-100d-4b8e-bf79-baa3df010a59\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}" headers: cache-control: @@ -2988,7 +2901,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 07:04:04 GMT + - Wed, 27 Jan 2021 08:30:13 GMT expires: - '-1' pragma: @@ -3005,7 +2918,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4999,Microsoft.Compute/LowCostGet30Min;39999 + - Microsoft.Compute/LowCostGet3Min;14995,Microsoft.Compute/LowCostGet30Min;119939 status: code: 200 message: OK @@ -3023,7 +2936,7 @@ interactions: ParameterSetName: - -g -n --max-shares User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6?api-version=2020-06-30 response: @@ -3035,9 +2948,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 256,\r\n \ \"diskIOPSReadWrite\": 1100,\r\n \"diskMBpsReadWrite\": 125,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"maxShares\": - 2,\r\n \"timeCreated\": \"2020-11-10T07:04:02.9533325+00:00\",\r\n \"provisioningState\": + 2,\r\n \"timeCreated\": \"2021-01-27T08:30:11.4348991+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 274877906944,\r\n \"uniqueId\": \"13b1c5fa-d9b5-4ff3-998b-904ab4bfa285\",\r\n + 274877906944,\r\n \"uniqueId\": \"f447de4d-100d-4b8e-bf79-baa3df010a59\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}" headers: cache-control: @@ -3047,7 +2960,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 07:04:07 GMT + - Wed, 27 Jan 2021 08:30:15 GMT expires: - '-1' pragma: @@ -3064,7 +2977,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4998,Microsoft.Compute/LowCostGet30Min;39998 + - Microsoft.Compute/LowCostGet3Min;14994,Microsoft.Compute/LowCostGet30Min;119938 status: code: 200 message: OK @@ -3090,7 +3003,7 @@ interactions: ParameterSetName: - -g -n --max-shares User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6?api-version=2020-06-30 response: @@ -3104,7 +3017,7 @@ interactions: \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/40c6f08c-8928-48f1-8bbf-f3266aaf95db?api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/a6f075c9-dea0-4c32-a8bd-13eaeb6f1e3a?api-version=2020-06-30 cache-control: - no-cache content-length: @@ -3112,11 +3025,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 07:04:08 GMT + - Wed, 27 Jan 2021 08:30:16 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/40c6f08c-8928-48f1-8bbf-f3266aaf95db?monitor=true&api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/a6f075c9-dea0-4c32-a8bd-13eaeb6f1e3a?monitor=true&api-version=2020-06-30 pragma: - no-cache server: @@ -3127,9 +3040,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7998 + - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7994 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' status: code: 202 message: Accepted @@ -3147,13 +3060,13 @@ interactions: ParameterSetName: - -g -n --max-shares User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/40c6f08c-8928-48f1-8bbf-f3266aaf95db?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/a6f075c9-dea0-4c32-a8bd-13eaeb6f1e3a?api-version=2020-06-30 response: body: - string: "{\r\n \"startTime\": \"2020-11-10T07:04:09.5647209+00:00\",\r\n \"endTime\": - \"2020-11-10T07:04:09.820479+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-01-27T08:30:17.0960301+00:00\",\r\n \"endTime\": + \"2021-01-27T08:30:17.3110253+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"centraluseuap\",\r\n @@ -3162,20 +3075,20 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 256,\r\n \ \"diskIOPSReadWrite\": 1100,\r\n \"diskMBpsReadWrite\": 125,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"maxShares\": - 1,\r\n \"timeCreated\": \"2020-11-10T07:04:02.9533325+00:00\",\r\n \"provisioningState\": + 1,\r\n \"timeCreated\": \"2021-01-27T08:30:11.4348991+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 274877906944,\r\n \"uniqueId\": \"13b1c5fa-d9b5-4ff3-998b-904ab4bfa285\",\r\n + 274877906944,\r\n \"uniqueId\": \"f447de4d-100d-4b8e-bf79-baa3df010a59\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"40c6f08c-8928-48f1-8bbf-f3266aaf95db\"\r\n}" + \ },\r\n \"name\": \"a6f075c9-dea0-4c32-a8bd-13eaeb6f1e3a\"\r\n}" headers: cache-control: - no-cache content-length: - - '1143' + - '1144' content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 07:04:11 GMT + - Wed, 27 Jan 2021 08:30:18 GMT expires: - '-1' pragma: @@ -3192,7 +3105,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399997 + - Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399959 status: code: 200 message: OK @@ -3210,7 +3123,7 @@ interactions: ParameterSetName: - -g -n --max-shares User-Agent: - - AZURECLI/2.14.1 azsdk-python-azure-mgmt-compute/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6?api-version=2020-06-30 response: @@ -3222,9 +3135,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 256,\r\n \ \"diskIOPSReadWrite\": 1100,\r\n \"diskMBpsReadWrite\": 125,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"maxShares\": - 1,\r\n \"timeCreated\": \"2020-11-10T07:04:02.9533325+00:00\",\r\n \"provisioningState\": + 1,\r\n \"timeCreated\": \"2021-01-27T08:30:11.4348991+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 274877906944,\r\n \"uniqueId\": \"13b1c5fa-d9b5-4ff3-998b-904ab4bfa285\",\r\n + 274877906944,\r\n \"uniqueId\": \"f447de4d-100d-4b8e-bf79-baa3df010a59\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}" headers: cache-control: @@ -3234,7 +3147,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 10 Nov 2020 07:04:11 GMT + - Wed, 27 Jan 2021 08:30:19 GMT expires: - '-1' pragma: @@ -3251,7 +3164,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4996,Microsoft.Compute/LowCostGet30Min;39996 + - Microsoft.Compute/LowCostGet3Min;14992,Microsoft.Compute/LowCostGet30Min;119936 status: code: 200 message: OK From b5ca3f3dba3f8e05f9a8eabdc957369334131366 Mon Sep 17 00:00:00 2001 From: Feiyue Yu Date: Fri, 29 Jan 2021 20:47:46 +0800 Subject: [PATCH 03/18] test --- .../vm/tests/latest/test_vm_commands.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py index 6b2a6245e90..8e0a14ae416 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py @@ -3839,6 +3839,19 @@ def test_gallery_e2e(self, resource_group, resource_group_location): self.cmd('sig image-definition delete -g {rg} --gallery-name {gallery} --gallery-image-definition {image}') self.cmd('sig delete -g {rg} --gallery-name {gallery}') + @ResourceGroupPreparer(name_prefix='cli_test_gallery_image_version_vhd') + def test_gallery_image_version_vhd(self, resource_group): + self.kwargs.update({ + 'gallery': self.create_random_name(prefix='gallery_', length=20), + }) + + self.cmd('vm create -g {rg} -n vm1 --image centos --use-unmanaged-disk --nsg-rule NONE --generate-ssh-key') + vhd_uri = self.cmd('vm show -g {rg} -n vm1').get_output_in_json()['storageProfile']['osDisk']['vhd']['uri'] + self.cmd('sig create -g {rg} --gallery-name {gallery}') + self.cmd('sig image-definition create -g {rg} --gallery-name {gallery} --gallery-image-definition image1 --os-type linux -p publisher1 -f offer1 -s sku1') + + + @ResourceGroupPreparer(name_prefix='cli_test_gallery_specialized_', location='eastus2') def test_gallery_specialized(self, resource_group): self.kwargs.update({ From b7b867eeecdcfd0dda6e66fb21a8860e8ef7c886 Mon Sep 17 00:00:00 2001 From: Feiyue Yu Date: Mon, 1 Feb 2021 15:44:42 +0800 Subject: [PATCH 04/18] add test --- .../command_modules/vm/tests/latest/test_vm_commands.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py index 8e0a14ae416..684da5a0163 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py @@ -3847,10 +3847,14 @@ def test_gallery_image_version_vhd(self, resource_group): self.cmd('vm create -g {rg} -n vm1 --image centos --use-unmanaged-disk --nsg-rule NONE --generate-ssh-key') vhd_uri = self.cmd('vm show -g {rg} -n vm1').get_output_in_json()['storageProfile']['osDisk']['vhd']['uri'] + storage_account = vhd_uri.split('.')[0].split('/')[-1] + self.kwargs.update({ + 'vhd': vhd_uri, + 'stac': storage_account + }) self.cmd('sig create -g {rg} --gallery-name {gallery}') self.cmd('sig image-definition create -g {rg} --gallery-name {gallery} --gallery-image-definition image1 --os-type linux -p publisher1 -f offer1 -s sku1') - - + self.cmd('sig image-version create -g {rg} --gallery-name {gallery} --gallery-image-definition image1 --gallery-image-version 1.0.0 --vhd {vhd} --vhd-storage-account {stac} --replica-count 1') @ResourceGroupPreparer(name_prefix='cli_test_gallery_specialized_', location='eastus2') def test_gallery_specialized(self, resource_group): From 958d945fc75b024f9502516d635c461390364d3c Mon Sep 17 00:00:00 2001 From: Feiyue Yu Date: Mon, 1 Feb 2021 16:10:45 +0800 Subject: [PATCH 05/18] src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_specialized_image.yaml --- .../recordings/test_specialized_image.yaml | 647 ++++++++++-------- 1 file changed, 370 insertions(+), 277 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_specialized_image.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_specialized_image.yaml index 87cc390e161..bfdf2554ecf 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_specialized_image.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_specialized_image.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-01T07:52:01Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:20:47 GMT + - Mon, 01 Feb 2021 07:52:06 GMT expires: - '-1' pragma: @@ -62,7 +62,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01 response: @@ -70,11 +70,11 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_PRE4ZGDLZ4Q2\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_3PJULOAKHK3X\"\r\n },\r\n \ \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/a94a98e0-fb6c-4e76-8afd-0e0ef72a726c?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/15fd4ea3-3738-43a7-bfe6-daee515017af?api-version=2019-12-01 cache-control: - no-cache content-length: @@ -82,7 +82,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:20:53 GMT + - Mon, 01 Feb 2021 07:52:12 GMT expires: - '-1' pragma: @@ -95,7 +95,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;297 + - Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299 x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -115,14 +115,14 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/a94a98e0-fb6c-4e76-8afd-0e0ef72a726c?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/15fd4ea3-3738-43a7-bfe6-daee515017af?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-27T08:20:52.1642821+00:00\",\r\n \"endTime\": - \"2021-01-27T08:20:52.3517811+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"a94a98e0-fb6c-4e76-8afd-0e0ef72a726c\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-01T07:52:11.1017846+00:00\",\r\n \"endTime\": + \"2021-02-01T07:52:12.0236851+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"15fd4ea3-3738-43a7-bfe6-daee515017af\"\r\n}" headers: cache-control: - no-cache @@ -131,7 +131,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:21:23 GMT + - Mon, 01 Feb 2021 07:52:42 GMT expires: - '-1' pragma: @@ -148,7 +148,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4162 + - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4198 status: code: 200 message: OK @@ -166,7 +166,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01 response: @@ -174,7 +174,7 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_PRE4ZGDLZ4Q2\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_3PJULOAKHK3X\"\r\n },\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -184,7 +184,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:21:23 GMT + - Mon, 01 Feb 2021 07:52:43 GMT expires: - '-1' pragma: @@ -201,7 +201,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2482 + - Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2496 status: code: 200 message: OK @@ -227,7 +227,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-01T07:52:01Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -236,7 +236,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:21:25 GMT + - Mon, 01 Feb 2021 07:52:43 GMT expires: - '-1' pragma: @@ -270,7 +270,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type --os-state -p -f -s User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -284,7 +284,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/e8ded6bc-442c-49c5-8986-9e991fd7bb5a?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8916cee2-b595-459b-8798-c246cec5864d?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -292,7 +292,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:21:29 GMT + - Mon, 01 Feb 2021 07:52:49 GMT expires: - '-1' pragma: @@ -305,9 +305,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;747 + - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;749 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -325,14 +325,14 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type --os-state -p -f -s User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/e8ded6bc-442c-49c5-8986-9e991fd7bb5a?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8916cee2-b595-459b-8798-c246cec5864d?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-27T08:21:28.8986941+00:00\",\r\n \"endTime\": - \"2021-01-27T08:21:29.0080639+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"e8ded6bc-442c-49c5-8986-9e991fd7bb5a\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-01T07:52:48.6499045+00:00\",\r\n \"endTime\": + \"2021-02-01T07:52:48.7905306+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"8916cee2-b595-459b-8798-c246cec5864d\"\r\n}" headers: cache-control: - no-cache @@ -341,7 +341,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:21:59 GMT + - Mon, 01 Feb 2021 07:53:19 GMT expires: - '-1' pragma: @@ -358,7 +358,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4156 + - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4196 status: code: 200 message: OK @@ -376,7 +376,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type --os-state -p -f -s User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -396,7 +396,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:21:59 GMT + - Mon, 01 Feb 2021 07:53:19 GMT expires: - '-1' pragma: @@ -413,7 +413,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;596,Microsoft.Compute/GetGalleryImage30Min;2982 + - Microsoft.Compute/GetGalleryImage3Min;596,Microsoft.Compute/GetGalleryImage30Min;2996 status: code: 200 message: OK @@ -439,7 +439,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-01T07:52:01Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -448,7 +448,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:00 GMT + - Mon, 01 Feb 2021 07:53:20 GMT expires: - '-1' pragma: @@ -527,13 +527,13 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:01 GMT + - Mon, 01 Feb 2021 07:53:21 GMT etag: - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" expires: - - Wed, 27 Jan 2021 08:27:01 GMT + - Mon, 01 Feb 2021 07:58:21 GMT source-age: - - '126' + - '74' strict-transport-security: - max-age=31536000 vary: @@ -547,15 +547,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - f50d335e5918cbd4135cc2e858d5500e50940fbb + - ca8560cf9a866456cd2947688e7115655c4a5de2 x-frame-options: - deny x-github-request-id: - - 1AF8:6712:254F7:28ADA:600FA121 + - 6048:4C45:17B9A7:1975E1:601758EF x-served-by: - - cache-sin18022-SIN + - cache-sin18044-SIN x-timer: - - S1611735722.959111,VS0,VE1 + - S1612166002.677781,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -589,7 +589,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:01 GMT + - Mon, 01 Feb 2021 07:53:21 GMT expires: - '-1' pragma: @@ -655,10 +655,10 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_hkTLhYWsAEnBs0kREahO3UMFSigVuDCh","name":"vm_deploy_hkTLhYWsAEnBs0kREahO3UMFSigVuDCh","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17080901306247016034","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-01-27T08:22:05.8034358Z","duration":"PT2.1448215S","correlationId":"47798421-fecb-4ab9-a9ee-c66e42d1cda6","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_1tFBI6FSLMkmsJnPJQkSZ4IgieDkTHHM","name":"vm_deploy_1tFBI6FSLMkmsJnPJQkSZ4IgieDkTHHM","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15300353475315788589","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-02-01T07:53:26.2686958Z","duration":"PT2.5602709S","correlationId":"28fb6802-07fe-4e7e-ab87-e4f00eca78b1","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_hkTLhYWsAEnBs0kREahO3UMFSigVuDCh/operationStatuses/08585898711618190185?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_1tFBI6FSLMkmsJnPJQkSZ4IgieDkTHHM/operationStatuses/08585894408817692121?api-version=2020-10-01 cache-control: - no-cache content-length: @@ -666,7 +666,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:05 GMT + - Mon, 01 Feb 2021 07:53:26 GMT expires: - '-1' pragma: @@ -676,7 +676,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -697,7 +697,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585898711618190185?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585894408817692121?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -709,7 +709,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:37 GMT + - Mon, 01 Feb 2021 07:53:58 GMT expires: - '-1' pragma: @@ -740,7 +740,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585898711618190185?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585894408817692121?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -752,7 +752,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:23:07 GMT + - Mon, 01 Feb 2021 07:54:28 GMT expires: - '-1' pragma: @@ -786,7 +786,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_hkTLhYWsAEnBs0kREahO3UMFSigVuDCh","name":"vm_deploy_hkTLhYWsAEnBs0kREahO3UMFSigVuDCh","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17080901306247016034","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-01-27T08:22:37.9449335Z","duration":"PT34.2863192S","correlationId":"47798421-fecb-4ab9-a9ee-c66e42d1cda6","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_1tFBI6FSLMkmsJnPJQkSZ4IgieDkTHHM","name":"vm_deploy_1tFBI6FSLMkmsJnPJQkSZ4IgieDkTHHM","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15300353475315788589","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-02-01T07:54:20.0848364Z","duration":"PT56.3764115S","correlationId":"28fb6802-07fe-4e7e-ab87-e4f00eca78b1","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}' headers: cache-control: - no-cache @@ -795,7 +795,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:23:07 GMT + - Mon, 01 Feb 2021 07:54:28 GMT expires: - '-1' pragma: @@ -823,23 +823,23 @@ interactions: ParameterSetName: - -g -n --image --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"d486366b-3a10-4452-89c6-35a47eab04b4\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"c1b16ef8-3cd5-4b5a-b294-2e71e6f57567\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202101191\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"vm1_disk1_fafbc7c21ff54bd8ab9dd2d584a821c1\",\r\n + \"Linux\",\r\n \"name\": \"vm1_disk1_3255c6f887894e098b6c03aec2580f6c\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_fafbc7c21ff54bd8ab9dd2d584a821c1\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_3255c6f887894e098b6c03aec2580f6c\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n \ \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": {\r\n @@ -854,15 +854,15 @@ interactions: [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \ \"message\": \"Guest Agent is running\",\r\n \"time\": - \"2021-01-27T08:23:06+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_disk1_fafbc7c21ff54bd8ab9dd2d584a821c1\",\r\n + \"2021-02-01T07:54:27+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_disk1_3255c6f887894e098b6c03aec2580f6c\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-01-27T08:22:25.230146+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-02-01T07:54:00.619684+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded/osProvisioningInProgress\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"OS provisioning - in progress\",\r\n \"time\": \"2021-01-27T08:22:36.4802843+00:00\"\r\n + in progress\",\r\n \"time\": \"2021-02-01T07:54:16.526551+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n \ }\r\n ]\r\n }\r\n }\r\n}" @@ -870,11 +870,11 @@ interactions: cache-control: - no-cache content-length: - - '3280' + - '3279' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:23:08 GMT + - Mon, 01 Feb 2021 07:54:30 GMT expires: - '-1' pragma: @@ -891,7 +891,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31922 + - Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31927 status: code: 200 message: OK @@ -915,12 +915,12 @@ interactions: response: body: string: "{\r\n \"name\": \"vm1VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\r\n - \ \"etag\": \"W/\\\"f003ea58-6835-465e-9cdf-e10be1f431b5\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"6322460f-07d2-4f7c-84ee-0bb2d5ee72e1\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"2dc92ff3-5960-4d89-9d69-54e42c40a7c2\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"7b325e6c-dc8d-4b78-b289-a624b9361045\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm1\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\r\n - \ \"etag\": \"W/\\\"f003ea58-6835-465e-9cdf-e10be1f431b5\\\"\",\r\n + \ \"etag\": \"W/\\\"6322460f-07d2-4f7c-84ee-0bb2d5ee72e1\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -929,8 +929,8 @@ interactions: \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": - \"qt232ezaxwjedgifv2w2l4kmyf.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-22-48-08-EA-46\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"4d2ainw3sekubgqhny3cnl2dkb.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-22-48-06-B4-2A\",\r\n \"enableAcceleratedNetworking\": false,\r\n \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -944,9 +944,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:23:09 GMT + - Mon, 01 Feb 2021 07:54:31 GMT etag: - - W/"f003ea58-6835-465e-9cdf-e10be1f431b5" + - W/"6322460f-07d2-4f7c-84ee-0bb2d5ee72e1" expires: - '-1' pragma: @@ -963,7 +963,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b670b168-4960-4e5a-bc71-4ed8333804b1 + - be008978-d788-4b00-a713-e1e9d8abaabb status: code: 200 message: OK @@ -987,10 +987,10 @@ interactions: response: body: string: "{\r\n \"name\": \"vm1PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\r\n - \ \"etag\": \"W/\\\"f5bc3bfb-64d2-48bc-ae48-d4d627f082e5\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"aedf78b0-bb84-4caf-873e-7756c764f847\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"41cbab9d-1c2b-48d3-9abc-feb4a0148204\",\r\n - \ \"ipAddress\": \"138.91.184.182\",\r\n \"publicIPAddressVersion\": + \"Succeeded\",\r\n \"resourceGuid\": \"e425bb00-b222-4683-b2ba-3e3295734b02\",\r\n + \ \"ipAddress\": \"40.112.215.188\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n @@ -1003,9 +1003,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:23:09 GMT + - Mon, 01 Feb 2021 07:54:31 GMT etag: - - W/"f5bc3bfb-64d2-48bc-ae48-d4d627f082e5" + - W/"aedf78b0-bb84-4caf-873e-7756c764f847" expires: - '-1' pragma: @@ -1022,7 +1022,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c4efa4be-c364-4d19-904e-7a4197d60f5b + - 54c65f28-bca0-49d0-b0cc-53aba5a30928 status: code: 200 message: OK @@ -1040,23 +1040,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"d486366b-3a10-4452-89c6-35a47eab04b4\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"c1b16ef8-3cd5-4b5a-b294-2e71e6f57567\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202101191\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"vm1_disk1_fafbc7c21ff54bd8ab9dd2d584a821c1\",\r\n + \"Linux\",\r\n \"name\": \"vm1_disk1_3255c6f887894e098b6c03aec2580f6c\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_fafbc7c21ff54bd8ab9dd2d584a821c1\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_3255c6f887894e098b6c03aec2580f6c\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n \ \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": {\r\n @@ -1074,7 +1074,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:23:10 GMT + - Mon, 01 Feb 2021 07:54:32 GMT expires: - '-1' pragma: @@ -1091,7 +1091,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3990,Microsoft.Compute/LowCostGet30Min;31921 + - Microsoft.Compute/LowCostGet3Min;3988,Microsoft.Compute/LowCostGet30Min;31924 status: code: 200 message: OK @@ -1109,12 +1109,12 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/vm1_disk1_fafbc7c21ff54bd8ab9dd2d584a821c1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/vm1_disk1_3255c6f887894e098b6c03aec2580f6c?api-version=2020-05-01 response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/vm1_disk1_fafbc7c21ff54bd8ab9dd2d584a821c1'' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/vm1_disk1_3255c6f887894e098b6c03aec2580f6c'' under resource group ''cli_test_test_specialized_image_000001'' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: @@ -1125,7 +1125,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:23:11 GMT + - Mon, 01 Feb 2021 07:54:32 GMT expires: - '-1' pragma: @@ -1153,13 +1153,13 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_fafbc7c21ff54bd8ab9dd2d584a821c1?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_3255c6f887894e098b6c03aec2580f6c?api-version=2020-09-30 response: body: - string: "{\r\n \"name\": \"vm1_disk1_fafbc7c21ff54bd8ab9dd2d584a821c1\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_fafbc7c21ff54bd8ab9dd2d584a821c1\",\r\n + string: "{\r\n \"name\": \"vm1_disk1_3255c6f887894e098b6c03aec2580f6c\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_3255c6f887894e098b6c03aec2580f6c\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n @@ -1168,9 +1168,9 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/canonical/ArtifactTypes/VMImage/Offers/ubuntuserver/Skus/18.04-lts/Versions/18.04.202101191\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-27T08:22:23.7578757+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-02-01T07:53:59.2690166+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"fafbc7c2-1ff5-4bd8-ab9d-d2d584a821c1\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"3255c6f8-8789-4e09-8b6c-03aec2580f6c\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -1180,7 +1180,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:23:11 GMT + - Mon, 01 Feb 2021 07:54:32 GMT expires: - '-1' pragma: @@ -1197,7 +1197,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4974,Microsoft.Compute/LowCostGet30Min;39784 + - Microsoft.Compute/LowCostGet3Min;4998,Microsoft.Compute/LowCostGet30Min;39963 status: code: 200 message: OK @@ -1223,7 +1223,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-01T07:52:01Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1232,7 +1232,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:23:12 GMT + - Mon, 01 Feb 2021 07:54:33 GMT expires: - '-1' pragma: @@ -1248,7 +1248,7 @@ interactions: message: OK - request: body: '{"location": "westus", "tags": {}, "sku": {"name": "Standard_LRS"}, "properties": - {"creationData": {"createOption": "Copy", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_fafbc7c21ff54bd8ab9dd2d584a821c1"}}}' + {"creationData": {"createOption": "Copy", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_3255c6f887894e098b6c03aec2580f6c"}}}' headers: Accept: - application/json @@ -1265,7 +1265,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 response: @@ -1273,13 +1273,13 @@ interactions: string: "{\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \ \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n - \ \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_fafbc7c21ff54bd8ab9dd2d584a821c1\",\r\n - \ \"sourceUniqueId\": \"fafbc7c2-1ff5-4bd8-ab9d-d2d584a821c1\"\r\n },\r\n + \ \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_3255c6f887894e098b6c03aec2580f6c\",\r\n + \ \"sourceUniqueId\": \"3255c6f8-8789-4e09-8b6c-03aec2580f6c\"\r\n },\r\n \ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1ed7953e-fc5a-476e-96c1-e6c4ba439a88?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/2ecb8615-1155-4d55-94a2-1af42da3b9ee?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1287,11 +1287,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:23:17 GMT + - Mon, 01 Feb 2021 07:54:38 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1ed7953e-fc5a-476e-96c1-e6c4ba439a88?monitor=true&api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/2ecb8615-1155-4d55-94a2-1af42da3b9ee?monitor=true&api-version=2020-05-01 pragma: - no-cache server: @@ -1302,9 +1302,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;998,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7989 + - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7999 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 202 message: Accepted @@ -1322,27 +1322,27 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1ed7953e-fc5a-476e-96c1-e6c4ba439a88?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/2ecb8615-1155-4d55-94a2-1af42da3b9ee?api-version=2020-05-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-27T08:23:17.5565663+00:00\",\r\n \"endTime\": - \"2021-01-27T08:23:18.0721804+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-02-01T07:54:38.9880163+00:00\",\r\n \"endTime\": + \"2021-02-01T07:54:39.7380222+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\",\r\n \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \ \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_fafbc7c21ff54bd8ab9dd2d584a821c1\",\r\n - \ \"sourceUniqueId\": \"fafbc7c2-1ff5-4bd8-ab9d-d2d584a821c1\"\r\n },\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_3255c6f887894e098b6c03aec2580f6c\",\r\n + \ \"sourceUniqueId\": \"3255c6f8-8789-4e09-8b6c-03aec2580f6c\"\r\n },\r\n \ \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-01-27T08:23:17.5565663+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-02-01T07:54:39.0036471+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"b57ffd4e-da6d-4bf8-9614-0c405449031b\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"05a75fd9-79d5-44b0-ba4a-f3c6384140f8\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"1ed7953e-fc5a-476e-96c1-e6c4ba439a88\"\r\n}" + \"2ecb8615-1155-4d55-94a2-1af42da3b9ee\"\r\n}" headers: cache-control: - no-cache @@ -1351,7 +1351,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:23:19 GMT + - Mon, 01 Feb 2021 07:54:41 GMT expires: - '-1' pragma: @@ -1368,7 +1368,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49980,Microsoft.Compute/GetOperation30Min;399848 + - Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399990 status: code: 200 message: OK @@ -1386,7 +1386,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 response: @@ -1396,12 +1396,12 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \ \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_fafbc7c21ff54bd8ab9dd2d584a821c1\",\r\n - \ \"sourceUniqueId\": \"fafbc7c2-1ff5-4bd8-ab9d-d2d584a821c1\"\r\n },\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_3255c6f887894e098b6c03aec2580f6c\",\r\n + \ \"sourceUniqueId\": \"3255c6f8-8789-4e09-8b6c-03aec2580f6c\"\r\n },\r\n \ \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-01-27T08:23:17.5565663+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-02-01T07:54:39.0036471+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"b57ffd4e-da6d-4bf8-9614-0c405449031b\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"05a75fd9-79d5-44b0-ba4a-f3c6384140f8\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -1411,7 +1411,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:23:19 GMT + - Mon, 01 Feb 2021 07:54:41 GMT expires: - '-1' pragma: @@ -1428,7 +1428,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4972,Microsoft.Compute/LowCostGet30Min;39782 + - Microsoft.Compute/LowCostGet3Min;4997,Microsoft.Compute/LowCostGet30Min;39962 status: code: 200 message: OK @@ -1454,7 +1454,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-01T07:52:01Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1463,7 +1463,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:23:20 GMT + - Mon, 01 Feb 2021 07:54:42 GMT expires: - '-1' pragma: @@ -1497,7 +1497,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2020-09-30 response: @@ -1508,7 +1508,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-01-27T08:23:25.6800879+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-01T07:54:47.1538115+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"hostCaching\": \"ReadWrite\",\r\n \ \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -1516,7 +1516,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/e415368f-e52b-49d3-948d-240dd04ac774?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/6b286fad-bbe7-4e43-a212-8e2a9a5e48fa?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -1524,7 +1524,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:23:26 GMT + - Mon, 01 Feb 2021 07:54:47 GMT expires: - '-1' pragma: @@ -1537,9 +1537,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;373,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1196 + - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1199 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -1557,13 +1557,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/e415368f-e52b-49d3-948d-240dd04ac774?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/6b286fad-bbe7-4e43-a212-8e2a9a5e48fa?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-27T08:23:25.6800879+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"e415368f-e52b-49d3-948d-240dd04ac774\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-01T07:54:47.1381598+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"6b286fad-bbe7-4e43-a212-8e2a9a5e48fa\"\r\n}" headers: cache-control: - no-cache @@ -1572,7 +1572,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:24:27 GMT + - Mon, 01 Feb 2021 07:55:47 GMT expires: - '-1' pragma: @@ -1589,7 +1589,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1181,Microsoft.Compute/GetOperationStatus30Min;4142 + - Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4191 status: code: 200 message: OK @@ -1607,13 +1607,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/e415368f-e52b-49d3-948d-240dd04ac774?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/6b286fad-bbe7-4e43-a212-8e2a9a5e48fa?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-27T08:23:25.6800879+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"e415368f-e52b-49d3-948d-240dd04ac774\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-01T07:54:47.1381598+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"6b286fad-bbe7-4e43-a212-8e2a9a5e48fa\"\r\n}" headers: cache-control: - no-cache @@ -1622,7 +1622,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:25:27 GMT + - Mon, 01 Feb 2021 07:56:48 GMT expires: - '-1' pragma: @@ -1639,7 +1639,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4136 + - Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4189 status: code: 200 message: OK @@ -1657,13 +1657,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/e415368f-e52b-49d3-948d-240dd04ac774?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/6b286fad-bbe7-4e43-a212-8e2a9a5e48fa?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-27T08:23:25.6800879+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"e415368f-e52b-49d3-948d-240dd04ac774\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-01T07:54:47.1381598+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"6b286fad-bbe7-4e43-a212-8e2a9a5e48fa\"\r\n}" headers: cache-control: - no-cache @@ -1672,7 +1672,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:26:28 GMT + - Mon, 01 Feb 2021 07:57:48 GMT expires: - '-1' pragma: @@ -1689,7 +1689,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4131 + - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4185 status: code: 200 message: OK @@ -1707,13 +1707,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/e415368f-e52b-49d3-948d-240dd04ac774?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/6b286fad-bbe7-4e43-a212-8e2a9a5e48fa?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-27T08:23:25.6800879+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"e415368f-e52b-49d3-948d-240dd04ac774\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-01T07:54:47.1381598+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"6b286fad-bbe7-4e43-a212-8e2a9a5e48fa\"\r\n}" headers: cache-control: - no-cache @@ -1722,7 +1722,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:27:27 GMT + - Mon, 01 Feb 2021 07:58:49 GMT expires: - '-1' pragma: @@ -1739,7 +1739,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;4127 + - Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4183 status: code: 200 message: OK @@ -1757,13 +1757,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/e415368f-e52b-49d3-948d-240dd04ac774?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/6b286fad-bbe7-4e43-a212-8e2a9a5e48fa?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-27T08:23:25.6800879+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"e415368f-e52b-49d3-948d-240dd04ac774\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-01T07:54:47.1381598+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"6b286fad-bbe7-4e43-a212-8e2a9a5e48fa\"\r\n}" headers: cache-control: - no-cache @@ -1772,7 +1772,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:28:27 GMT + - Mon, 01 Feb 2021 07:59:49 GMT expires: - '-1' pragma: @@ -1789,7 +1789,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;4123 + - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4181 status: code: 200 message: OK @@ -1807,13 +1807,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/e415368f-e52b-49d3-948d-240dd04ac774?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/6b286fad-bbe7-4e43-a212-8e2a9a5e48fa?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-27T08:23:25.6800879+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"e415368f-e52b-49d3-948d-240dd04ac774\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-01T07:54:47.1381598+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"6b286fad-bbe7-4e43-a212-8e2a9a5e48fa\"\r\n}" headers: cache-control: - no-cache @@ -1822,7 +1822,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:29:29 GMT + - Mon, 01 Feb 2021 08:00:50 GMT expires: - '-1' pragma: @@ -1839,7 +1839,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4119 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4179 status: code: 200 message: OK @@ -1857,13 +1857,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/e415368f-e52b-49d3-948d-240dd04ac774?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/6b286fad-bbe7-4e43-a212-8e2a9a5e48fa?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-27T08:23:25.6800879+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"e415368f-e52b-49d3-948d-240dd04ac774\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-01T07:54:47.1381598+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"6b286fad-bbe7-4e43-a212-8e2a9a5e48fa\"\r\n}" headers: cache-control: - no-cache @@ -1872,7 +1872,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:30:29 GMT + - Mon, 01 Feb 2021 08:01:50 GMT expires: - '-1' pragma: @@ -1889,7 +1889,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;4116 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4177 status: code: 200 message: OK @@ -1907,13 +1907,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/e415368f-e52b-49d3-948d-240dd04ac774?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/6b286fad-bbe7-4e43-a212-8e2a9a5e48fa?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-27T08:23:25.6800879+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"e415368f-e52b-49d3-948d-240dd04ac774\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-01T07:54:47.1381598+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"6b286fad-bbe7-4e43-a212-8e2a9a5e48fa\"\r\n}" headers: cache-control: - no-cache @@ -1922,7 +1922,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:31:30 GMT + - Mon, 01 Feb 2021 08:02:51 GMT expires: - '-1' pragma: @@ -1939,7 +1939,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4111 + - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4173 status: code: 200 message: OK @@ -1957,23 +1957,73 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/e415368f-e52b-49d3-948d-240dd04ac774?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/6b286fad-bbe7-4e43-a212-8e2a9a5e48fa?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-27T08:23:25.6800879+00:00\",\r\n \"endTime\": - \"2021-01-27T08:32:26.2121573+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"e415368f-e52b-49d3-948d-240dd04ac774\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-01T07:54:47.1381598+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"6b286fad-bbe7-4e43-a212-8e2a9a5e48fa\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 01 Feb 2021 08:03:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4169 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot + User-Agent: + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/6b286fad-bbe7-4e43-a212-8e2a9a5e48fa?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-01T07:54:47.1381598+00:00\",\r\n \"endTime\": + \"2021-02-01T08:04:32.720655+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"6b286fad-bbe7-4e43-a212-8e2a9a5e48fa\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '183' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:32:30 GMT + - Mon, 01 Feb 2021 08:04:52 GMT expires: - '-1' pragma: @@ -1990,7 +2040,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;4105 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4166 status: code: 200 message: OK @@ -2008,7 +2058,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2020-09-30 response: @@ -2019,7 +2069,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-01-27T08:23:25.6800879+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-01T07:54:47.1538115+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": \"ReadWrite\",\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2033,7 +2083,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:32:30 GMT + - Mon, 01 Feb 2021 08:04:53 GMT expires: - '-1' pragma: @@ -2050,7 +2100,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1993,Microsoft.Compute/GetGalleryImageVersion30Min;9971 + - Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9996 status: code: 200 message: OK @@ -2076,7 +2126,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-01T07:52:01Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2085,7 +2135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:32:31 GMT + - Mon, 01 Feb 2021 08:04:53 GMT expires: - '-1' pragma: @@ -2113,7 +2163,7 @@ interactions: ParameterSetName: - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -2133,7 +2183,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:32:32 GMT + - Mon, 01 Feb 2021 08:04:54 GMT expires: - '-1' pragma: @@ -2150,7 +2200,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;588,Microsoft.Compute/GetGalleryImage30Min;2949 + - Microsoft.Compute/GetGalleryImage3Min;588,Microsoft.Compute/GetGalleryImage30Min;2977 status: code: 200 message: OK @@ -2168,7 +2218,7 @@ interactions: ParameterSetName: - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2020-09-30 response: @@ -2179,7 +2229,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-01-27T08:23:25.6800879+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-01T07:54:47.1538115+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": \"ReadWrite\",\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2193,7 +2243,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:32:32 GMT + - Mon, 01 Feb 2021 08:04:54 GMT expires: - '-1' pragma: @@ -2210,7 +2260,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1992,Microsoft.Compute/GetGalleryImageVersion30Min;9970 + - Microsoft.Compute/GetGalleryImageVersion3Min;1998,Microsoft.Compute/GetGalleryImageVersion30Min;9995 status: code: 200 message: OK @@ -2235,14 +2285,14 @@ interactions: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vm1VNET\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\r\n - \ \"etag\": \"W/\\\"2d1dccad-8cf6-471e-a1b6-cc1aacbc2c68\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"8f40f830-dbf9-4196-b056-c62abef84933\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"13def984-bd20-4192-9905-af2dc5f94cc5\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"3604f8f0-91dd-4015-9a07-6e3a26af8351\",\r\n \ \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n \ ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"vm1Subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\r\n - \ \"etag\": \"W/\\\"2d1dccad-8cf6-471e-a1b6-cc1aacbc2c68\\\"\",\r\n + \ \"etag\": \"W/\\\"8f40f830-dbf9-4196-b056-c62abef84933\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n @@ -2258,7 +2308,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:32:33 GMT + - Mon, 01 Feb 2021 08:04:55 GMT expires: - '-1' pragma: @@ -2275,7 +2325,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8d5095bf-6595-40a5-990f-e3d90eb94307 + - 529c8ca8-2394-4834-808a-e426010b6db8 status: code: 200 message: OK @@ -2327,10 +2377,10 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_I6zuBGbIvxzttoMtz2cloxp68j226qIN","name":"vm_deploy_I6zuBGbIvxzttoMtz2cloxp68j226qIN","type":"Microsoft.Resources/deployments","properties":{"templateHash":"18211211642065295799","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-01-27T08:32:37.8754614Z","duration":"PT2.7105561S","correlationId":"626abc0d-eb78-49de-9909-d374ed26d1b2","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_bazaMlQELe8pq14Jr1hQzzUucfT8qIYW","name":"vm_deploy_bazaMlQELe8pq14Jr1hQzzUucfT8qIYW","type":"Microsoft.Resources/deployments","properties":{"templateHash":"11025665471289941538","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-02-01T08:05:01.1410382Z","duration":"PT3.3474699S","correlationId":"1f5d7470-28a1-4b38-ae63-a69a64919499","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_I6zuBGbIvxzttoMtz2cloxp68j226qIN/operationStatuses/08585898705303127351?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_bazaMlQELe8pq14Jr1hQzzUucfT8qIYW/operationStatuses/08585894401876840650?api-version=2020-10-01 cache-control: - no-cache content-length: @@ -2338,7 +2388,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:32:38 GMT + - Mon, 01 Feb 2021 08:05:01 GMT expires: - '-1' pragma: @@ -2348,7 +2398,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1194' status: code: 201 message: Created @@ -2369,7 +2419,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585898705303127351?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585894401876840650?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -2381,7 +2431,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:33:09 GMT + - Mon, 01 Feb 2021 08:05:32 GMT expires: - '-1' pragma: @@ -2412,7 +2462,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585898705303127351?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585894401876840650?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -2424,7 +2474,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:33:39 GMT + - Mon, 01 Feb 2021 08:06:03 GMT expires: - '-1' pragma: @@ -2458,7 +2508,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_I6zuBGbIvxzttoMtz2cloxp68j226qIN","name":"vm_deploy_I6zuBGbIvxzttoMtz2cloxp68j226qIN","type":"Microsoft.Resources/deployments","properties":{"templateHash":"18211211642065295799","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-01-27T08:33:22.6889159Z","duration":"PT47.5240106S","correlationId":"626abc0d-eb78-49de-9909-d374ed26d1b2","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_bazaMlQELe8pq14Jr1hQzzUucfT8qIYW","name":"vm_deploy_bazaMlQELe8pq14Jr1hQzzUucfT8qIYW","type":"Microsoft.Resources/deployments","properties":{"templateHash":"11025665471289941538","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-02-01T08:05:40.9469359Z","duration":"PT43.1533676S","correlationId":"1f5d7470-28a1-4b38-ae63-a69a64919499","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"}]}}' headers: cache-control: - no-cache @@ -2467,7 +2517,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:33:39 GMT + - Mon, 01 Feb 2021 08:06:03 GMT expires: - '-1' pragma: @@ -2495,22 +2545,22 @@ interactions: ParameterSetName: - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2?$expand=instanceView&api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"vm2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"4b608cf2-e515-46bf-856a-d8e96051f2e4\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"b65a1a71-f6f3-4dc0-934b-225e338c3836\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0\",\r\n \ \"exactVersion\": \"1.0.0\"\r\n },\r\n \"osDisk\": {\r\n - \ \"osType\": \"Linux\",\r\n \"name\": \"vm2_OsDisk_1_5e8900703401413faab60f68d75201af\",\r\n + \ \"osType\": \"Linux\",\r\n \"name\": \"vm2_OsDisk_1_79db6ca052fb469891f87d46c3f7df92\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm2_OsDisk_1_5e8900703401413faab60f68d75201af\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm2_OsDisk_1_79db6ca052fb469891f87d46c3f7df92\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\"}]},\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": @@ -2518,18 +2568,18 @@ interactions: \ {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \ \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet - populated.\",\r\n \"time\": \"2021-01-27T08:33:42+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2021-02-01T08:06:05+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"vm2_OsDisk_1_5e8900703401413faab60f68d75201af\",\r\n \"statuses\": + \"vm2_OsDisk_1_79db6ca052fb469891f87d46c3f7df92\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-01-27T08:33:06.2628777+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-02-01T08:05:29.6321426+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"OSState/specialized\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM specialized\"\r\n \ },\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-01-27T08:33:19.4347796+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-02-01T08:05:39.2731888+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n \ }\r\n ]\r\n }\r\n }\r\n}" @@ -2541,7 +2591,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:33:42 GMT + - Mon, 01 Feb 2021 08:06:05 GMT expires: - '-1' pragma: @@ -2558,7 +2608,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31905 + - Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31953 status: code: 200 message: OK @@ -2582,12 +2632,12 @@ interactions: response: body: string: "{\r\n \"name\": \"vm2VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\",\r\n - \ \"etag\": \"W/\\\"06255786-598c-4d60-8e6b-5b7dd8622885\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"f8bb1299-03ae-4c6c-bc9d-a4cf54e0826e\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"d4b222ea-894a-4ce7-ab9e-ddb34557b6f9\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"f698e889-61d4-4da1-9135-838422b060c3\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm2\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2\",\r\n - \ \"etag\": \"W/\\\"06255786-598c-4d60-8e6b-5b7dd8622885\\\"\",\r\n + \ \"etag\": \"W/\\\"f8bb1299-03ae-4c6c-bc9d-a4cf54e0826e\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": @@ -2596,8 +2646,8 @@ interactions: \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": - \"qt232ezaxwjedgifv2w2l4kmyf.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-37-49-07\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"4d2ainw3sekubgqhny3cnl2dkb.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-22-48-03-B9-D7\",\r\n \"enableAcceleratedNetworking\": false,\r\n \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -2611,9 +2661,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:33:42 GMT + - Mon, 01 Feb 2021 08:06:05 GMT etag: - - W/"06255786-598c-4d60-8e6b-5b7dd8622885" + - W/"f8bb1299-03ae-4c6c-bc9d-a4cf54e0826e" expires: - '-1' pragma: @@ -2630,7 +2680,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - dcb54d39-61a7-4135-a5f4-8cc0accd8420 + - 778d7c7b-99b5-4b49-8f19-c0fb2798f423 status: code: 200 message: OK @@ -2654,10 +2704,10 @@ interactions: response: body: string: "{\r\n \"name\": \"vm2PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\",\r\n - \ \"etag\": \"W/\\\"058ac2a8-f34f-4957-9ae3-aa28dcdd8c19\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"3f5051bd-eb94-4c0f-9ba4-c67425472d61\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"68040440-4a87-4334-a080-0ef8cbf60d49\",\r\n - \ \"ipAddress\": \"13.64.112.227\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"939b11c9-38c0-45e5-86cf-8bdc616ac0cf\",\r\n + \ \"ipAddress\": \"52.160.101.89\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n @@ -2670,9 +2720,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:33:43 GMT + - Mon, 01 Feb 2021 08:06:06 GMT etag: - - W/"058ac2a8-f34f-4957-9ae3-aa28dcdd8c19" + - W/"3f5051bd-eb94-4c0f-9ba4-c67425472d61" expires: - '-1' pragma: @@ -2689,7 +2739,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 869ab232-d3df-4bf9-b867-b619848a5a87 + - 9e20f87d-bccf-41e2-8cb0-71cfad593a61 status: code: 200 message: OK @@ -2715,7 +2765,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-01T07:52:01Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2724,7 +2774,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:33:43 GMT + - Mon, 01 Feb 2021 08:06:06 GMT expires: - '-1' pragma: @@ -2752,7 +2802,7 @@ interactions: ParameterSetName: - -g -n --image --specialized --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -2772,7 +2822,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:33:43 GMT + - Mon, 01 Feb 2021 08:06:06 GMT expires: - '-1' pragma: @@ -2789,7 +2839,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;583,Microsoft.Compute/GetGalleryImage30Min;2944 + - Microsoft.Compute/GetGalleryImage3Min;594,Microsoft.Compute/GetGalleryImage30Min;2974 status: code: 200 message: OK @@ -2807,7 +2857,7 @@ interactions: ParameterSetName: - -g -n --image --specialized --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2020-09-30 response: @@ -2818,7 +2868,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-01-27T08:23:25.6800879+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-01T07:54:47.1538115+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": \"ReadWrite\",\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2832,7 +2882,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:33:44 GMT + - Mon, 01 Feb 2021 08:06:07 GMT expires: - '-1' pragma: @@ -2849,7 +2899,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1990,Microsoft.Compute/GetGalleryImageVersion30Min;9963 + - Microsoft.Compute/GetGalleryImageVersion3Min;1995,Microsoft.Compute/GetGalleryImageVersion30Min;9992 status: code: 200 message: OK @@ -2874,14 +2924,14 @@ interactions: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vm1VNET\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\r\n - \ \"etag\": \"W/\\\"ddc5417a-2104-4caf-b503-bc553f788f2a\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"bdd55a91-4b2c-4c9f-9ea5-5af1f2ca9221\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"13def984-bd20-4192-9905-af2dc5f94cc5\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"3604f8f0-91dd-4015-9a07-6e3a26af8351\",\r\n \ \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n \ ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"vm1Subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\r\n - \ \"etag\": \"W/\\\"ddc5417a-2104-4caf-b503-bc553f788f2a\\\"\",\r\n + \ \"etag\": \"W/\\\"bdd55a91-4b2c-4c9f-9ea5-5af1f2ca9221\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n @@ -2898,7 +2948,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:33:44 GMT + - Mon, 01 Feb 2021 08:06:08 GMT expires: - '-1' pragma: @@ -2915,7 +2965,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cd14373c-959a-4f62-ad13-cc43c8a8484b + - 026e0743-85f9-4d98-a7e4-c539fe70a463 status: code: 200 message: OK @@ -2940,8 +2990,8 @@ interactions: true, "upgradePolicy": {"mode": "manual"}, "virtualMachineProfile": {"storageProfile": {"osDisk": {"createOption": "FromImage", "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0"}}, - "networkProfile": {"networkInterfaceConfigurations": [{"name": "vmss1aa3cNic", - "properties": {"primary": "true", "ipConfigurations": [{"name": "vmss1aa3cIPConfig", + "networkProfile": {"networkInterfaceConfigurations": [{"name": "vmss19da7Nic", + "properties": {"primary": "true", "ipConfigurations": [{"name": "vmss19da7IPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"}, "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}], "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}}, @@ -2973,18 +3023,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_VA9zcK63HDXF3fyfA24qQoK4yUAqAlnH","name":"vmss_deploy_VA9zcK63HDXF3fyfA24qQoK4yUAqAlnH","type":"Microsoft.Resources/deployments","properties":{"templateHash":"1346825392048452957","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-01-27T08:33:50.3796186Z","duration":"PT3.3536153S","correlationId":"3779c32e-fa2e-42be-a3eb-d8c82b540f28","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_qb7zu8xjzETGaZrd08yr3Ndej4Mvq6kt","name":"vmss_deploy_qb7zu8xjzETGaZrd08yr3Ndej4Mvq6kt","type":"Microsoft.Resources/deployments","properties":{"templateHash":"13999187811660569549","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-02-01T08:06:12.9719092Z","duration":"PT2.6161506S","correlationId":"2c7d1570-2c17-4e5c-b913-b13989097332","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_VA9zcK63HDXF3fyfA24qQoK4yUAqAlnH/operationStatuses/08585898704584516256?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_qb7zu8xjzETGaZrd08yr3Ndej4Mvq6kt/operationStatuses/08585894401151219318?api-version=2020-10-01 cache-control: - no-cache content-length: - - '2105' + - '2106' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:33:51 GMT + - Mon, 01 Feb 2021 08:06:15 GMT expires: - '-1' pragma: @@ -2994,7 +3044,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1193' status: code: 201 message: Created @@ -3015,7 +3065,50 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585898704584516256?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585894401151219318?api-version=2020-10-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 01 Feb 2021 08:06:45 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --specialized --admin-username --admin-password --authentication-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585894401151219318?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -3027,7 +3120,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:34:23 GMT + - Mon, 01 Feb 2021 08:07:17 GMT expires: - '-1' pragma: @@ -3058,7 +3151,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585898704584516256?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585894401151219318?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -3070,7 +3163,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:34:54 GMT + - Mon, 01 Feb 2021 08:07:47 GMT expires: - '-1' pragma: @@ -3101,7 +3194,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585898704584516256?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585894401151219318?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -3113,7 +3206,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:35:24 GMT + - Mon, 01 Feb 2021 08:08:18 GMT expires: - '-1' pragma: @@ -3147,16 +3240,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_VA9zcK63HDXF3fyfA24qQoK4yUAqAlnH","name":"vmss_deploy_VA9zcK63HDXF3fyfA24qQoK4yUAqAlnH","type":"Microsoft.Resources/deployments","properties":{"templateHash":"1346825392048452957","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-01-27T08:35:11.726671Z","duration":"PT1M24.7006677S","correlationId":"3779c32e-fa2e-42be-a3eb-d8c82b540f28","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"storageProfile":{"osDisk":{"createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss1aa3cNic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss1aa3cIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"6efc399c-19b5-4ec2-9c08-56f24334b770"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_qb7zu8xjzETGaZrd08yr3Ndej4Mvq6kt","name":"vmss_deploy_qb7zu8xjzETGaZrd08yr3Ndej4Mvq6kt","type":"Microsoft.Resources/deployments","properties":{"templateHash":"13999187811660569549","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-02-01T08:07:50.5851764Z","duration":"PT1M40.2294178S","correlationId":"2c7d1570-2c17-4e5c-b913-b13989097332","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss19da7Nic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss19da7IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"774cd34a-87bf-4561-be46-1087198efd7a"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"}]}}' headers: cache-control: - no-cache content-length: - - '4511' + - '4530' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:35:25 GMT + - Mon, 01 Feb 2021 08:08:19 GMT expires: - '-1' pragma: @@ -3192,7 +3285,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-01T07:52:01Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3201,7 +3294,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:35:26 GMT + - Mon, 01 Feb 2021 08:08:20 GMT expires: - '-1' pragma: @@ -3237,7 +3330,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-01T07:52:01Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3246,7 +3339,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:35:26 GMT + - Mon, 01 Feb 2021 08:08:20 GMT expires: - '-1' pragma: From 67fdec5b6fed5c075c39bd513fdb0113124f056e Mon Sep 17 00:00:00 2001 From: Feiyue Yu Date: Mon, 1 Feb 2021 17:04:48 +0800 Subject: [PATCH 06/18] test --- .../azure/cli/command_modules/vm/custom.py | 13 +- .../recordings/test_gallery_specialized.yaml | 528 +++++++------- .../test_vm_disk_max_shares_etc.yaml | 662 +++++++++--------- 3 files changed, 603 insertions(+), 600 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/custom.py b/src/azure-cli/azure/cli/command_modules/vm/custom.py index b762ea47b9a..720e35a5a5b 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/custom.py +++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py @@ -14,6 +14,8 @@ from __future__ import print_function # from .generated.custom import * # noqa: F403 +from azure.cli.core.azclierror import ValidationError + try: from .manual.custom import * # noqa: F403, pylint: disable=unused-import,unused-wildcard-import,wildcard-import except ImportError: @@ -294,7 +296,7 @@ def create_managed_disk(cmd, resource_group_name, disk_name, location=None, # p image_reference=None, image_reference_lun=None, gallery_image_reference=None, gallery_image_reference_lun=None, network_access_policy=None, disk_access=None, logical_sector_size=None, - tier=None, enable_bursting=False): + tier=None, enable_bursting=None): from msrestazure.tools import resource_id, is_valid_resource_id from azure.cli.core.commands.client_factory import get_subscription_id @@ -417,7 +419,7 @@ def list_managed_disks(cmd, resource_group_name=None): def update_managed_disk(cmd, resource_group_name, instance, size_gb=None, sku=None, disk_iops_read_write=None, disk_mbps_read_write=None, encryption_type=None, disk_encryption_set=None, network_access_policy=None, disk_access=None, max_shares=None, disk_iops_read_only=None, - disk_mbps_read_only=None, enable_bursting=False): + disk_mbps_read_only=None, enable_bursting=None): from msrestazure.tools import resource_id, is_valid_resource_id from azure.cli.core.commands.client_factory import get_subscription_id @@ -3324,8 +3326,8 @@ def create_image_version(cmd, resource_group_name, gallery_name, gallery_image_n source=source, replica_count=replica_count, storage_account_type=storage_account_type) if cmd.supported_api_version(min_api='2019-07-01', operation_group='gallery_image_versions'): - if managed_image is None and os_snapshot is None: - raise CLIError('usage error: Please provide --managed-image or --os-snapshot') + if managed_image is None and os_snapshot is None and vhd is None: + raise CLIError('usage error: Please provide --managed-image or --os-snapshot or --vhd') GalleryImageVersionStorageProfile = cmd.get_models('GalleryImageVersionStorageProfile') GalleryArtifactVersionSource = cmd.get_models('GalleryArtifactVersionSource') GalleryOSDiskImage = cmd.get_models('GalleryOSDiskImage') @@ -3348,7 +3350,8 @@ def create_image_version(cmd, resource_group_name, gallery_name, gallery_image_n lun=data_snapshot_luns[i])) # from vhd if cmd.supported_api_version(min_api='2020-09-30', operation_group='gallery_image_versions'): - # TODO: parameter validation + if vhd and vhd_storage_account is None or vhd is None and vhd_storage_account: + raise ValidationError('--vhd and --vhd-storage-account should be used together.') if vhd and vhd_storage_account: if not is_valid_resource_id(vhd_storage_account): vhd_storage_account = resource_id( diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_specialized.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_specialized.yaml index 4996906a390..10446c9efe2 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_specialized.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_specialized.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-02-01T08:36:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:20:48 GMT + - Mon, 01 Feb 2021 08:36:43 GMT expires: - '-1' pragma: @@ -62,7 +62,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01 response: @@ -70,11 +70,11 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_HKXSPJBCPTHT\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_LB4QO6AII4HA\"\r\n },\r\n \ \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/15402db7-b06b-445b-8d72-0c71ce2f3e2a?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/719cae1e-47da-4203-9088-2f370ac072a4?api-version=2019-12-01 cache-control: - no-cache content-length: @@ -82,7 +82,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:20:53 GMT + - Mon, 01 Feb 2021 08:36:53 GMT expires: - '-1' pragma: @@ -95,9 +95,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;298 + - Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299 x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1192' status: code: 201 message: Created @@ -115,14 +115,14 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/15402db7-b06b-445b-8d72-0c71ce2f3e2a?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/719cae1e-47da-4203-9088-2f370ac072a4?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-27T08:20:53.4740802+00:00\",\r\n \"endTime\": - \"2021-01-27T08:20:53.7084258+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"15402db7-b06b-445b-8d72-0c71ce2f3e2a\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-01T08:36:51.6462498+00:00\",\r\n \"endTime\": + \"2021-02-01T08:36:51.8806229+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"719cae1e-47da-4203-9088-2f370ac072a4\"\r\n}" headers: cache-control: - no-cache @@ -131,7 +131,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:21:25 GMT + - Mon, 01 Feb 2021 08:37:23 GMT expires: - '-1' pragma: @@ -148,7 +148,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4185 + - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4198 status: code: 200 message: OK @@ -166,7 +166,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01 response: @@ -174,7 +174,7 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_HKXSPJBCPTHT\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_LB4QO6AII4HA\"\r\n },\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -184,7 +184,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:21:26 GMT + - Mon, 01 Feb 2021 08:37:23 GMT expires: - '-1' pragma: @@ -201,7 +201,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGallery3Min;342,Microsoft.Compute/GetGallery30Min;2487 + - Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2494 status: code: 200 message: OK @@ -228,7 +228,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-02-01T08:36:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -237,7 +237,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:21:27 GMT + - Mon, 01 Feb 2021 08:37:24 GMT expires: - '-1' pragma: @@ -272,7 +272,7 @@ interactions: - -g --gallery-name --gallery-image-definition --os-type --os-state --hyper-v-generation -p -f -s User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -286,7 +286,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/25a9cb2d-682a-477c-ab7f-846aab25abbc?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/4707a2ae-cc7e-4513-9907-a38a8a7c4aab?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -294,7 +294,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:21:34 GMT + - Mon, 01 Feb 2021 08:37:31 GMT expires: - '-1' pragma: @@ -307,9 +307,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;748 + - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;749 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -328,14 +328,14 @@ interactions: - -g --gallery-name --gallery-image-definition --os-type --os-state --hyper-v-generation -p -f -s User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/25a9cb2d-682a-477c-ab7f-846aab25abbc?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/4707a2ae-cc7e-4513-9907-a38a8a7c4aab?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-27T08:21:33.2399143+00:00\",\r\n \"endTime\": - \"2021-01-27T08:21:33.3492529+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"25a9cb2d-682a-477c-ab7f-846aab25abbc\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-01T08:37:30.2558455+00:00\",\r\n \"endTime\": + \"2021-02-01T08:37:30.3495987+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"4707a2ae-cc7e-4513-9907-a38a8a7c4aab\"\r\n}" headers: cache-control: - no-cache @@ -344,7 +344,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:04 GMT + - Mon, 01 Feb 2021 08:38:02 GMT expires: - '-1' pragma: @@ -361,7 +361,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4181 + - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4196 status: code: 200 message: OK @@ -380,7 +380,7 @@ interactions: - -g --gallery-name --gallery-image-definition --os-type --os-state --hyper-v-generation -p -f -s User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -400,7 +400,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:05 GMT + - Mon, 01 Feb 2021 08:38:03 GMT expires: - '-1' pragma: @@ -417,7 +417,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;593,Microsoft.Compute/GetGalleryImage30Min;2988 + - Microsoft.Compute/GetGalleryImage3Min;596,Microsoft.Compute/GetGalleryImage30Min;2994 status: code: 200 message: OK @@ -443,7 +443,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-02-01T08:36:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -452,7 +452,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:06 GMT + - Mon, 01 Feb 2021 08:38:03 GMT expires: - '-1' pragma: @@ -485,9 +485,9 @@ interactions: ParameterSetName: - -g -n --size-gb User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"d1\",\r\n \"location\": \"eastus2\",\r\n \"tags\": @@ -497,7 +497,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/28403976-035d-4f85-ad87-698843b71150?api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/dea7b55f-74e6-4c32-842e-928f0233e9a8?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -505,11 +505,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:12 GMT + - Mon, 01 Feb 2021 08:38:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/28403976-035d-4f85-ad87-698843b71150?monitor=true&api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/dea7b55f-74e6-4c32-842e-928f0233e9a8?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -520,9 +520,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7988 + - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1196' status: code: 202 message: Accepted @@ -540,13 +540,13 @@ interactions: ParameterSetName: - -g -n --size-gb User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/28403976-035d-4f85-ad87-698843b71150?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/dea7b55f-74e6-4c32-842e-928f0233e9a8?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-27T08:22:12.1089438+00:00\",\r\n \"endTime\": - \"2021-01-27T08:22:12.2340109+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-02-01T08:38:09.5384262+00:00\",\r\n \"endTime\": + \"2021-02-01T08:38:09.7415753+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus2\",\r\n @@ -555,19 +555,19 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-01-27T08:22:12.1089438+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-02-01T08:38:09.554084+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"24958805-4f29-4721-b3a3-e38c637d5c5d\",\r\n \"networkAccessPolicy\": - \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"28403976-035d-4f85-ad87-698843b71150\"\r\n}" + \ \"uniqueId\": \"c36aabd8-f653-45e5-ba62-ec4077b13c49\",\r\n \"networkAccessPolicy\": + \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"dea7b55f-74e6-4c32-842e-928f0233e9a8\"\r\n}" headers: cache-control: - no-cache content-length: - - '1112' + - '1111' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:14 GMT + - Mon, 01 Feb 2021 08:38:11 GMT expires: - '-1' pragma: @@ -584,7 +584,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49979,Microsoft.Compute/GetOperation30Min;399932 + - Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399999 status: code: 200 message: OK @@ -602,9 +602,9 @@ interactions: ParameterSetName: - -g -n --size-gb User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"d1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1\",\r\n @@ -614,19 +614,19 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-01-27T08:22:12.1089438+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-02-01T08:38:09.554084+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"24958805-4f29-4721-b3a3-e38c637d5c5d\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"c36aabd8-f653-45e5-ba62-ec4077b13c49\",\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '887' + - '886' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:14 GMT + - Mon, 01 Feb 2021 08:38:11 GMT expires: - '-1' pragma: @@ -643,7 +643,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14985,Microsoft.Compute/LowCostGet30Min;119923 + - Microsoft.Compute/LowCostGet3Min;14999,Microsoft.Compute/LowCostGet30Min;119998 status: code: 200 message: OK @@ -669,7 +669,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-02-01T08:36:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -678,7 +678,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:15 GMT + - Mon, 01 Feb 2021 08:38:13 GMT expires: - '-1' pragma: @@ -711,9 +711,9 @@ interactions: ParameterSetName: - -g -n --size-gb User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"d2\",\r\n \"location\": \"eastus2\",\r\n \"tags\": @@ -723,7 +723,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/8041cf17-bf68-4eeb-89d2-db065c50b980?api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/2dc78c92-a688-4dd3-8c6d-56283d08051d?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -731,11 +731,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:21 GMT + - Mon, 01 Feb 2021 08:38:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/8041cf17-bf68-4eeb-89d2-db065c50b980?monitor=true&api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/2dc78c92-a688-4dd3-8c6d-56283d08051d?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -746,7 +746,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7987 + - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7998 x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -766,13 +766,13 @@ interactions: ParameterSetName: - -g -n --size-gb User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/8041cf17-bf68-4eeb-89d2-db065c50b980?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/2dc78c92-a688-4dd3-8c6d-56283d08051d?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-27T08:22:21.4062228+00:00\",\r\n \"endTime\": - \"2021-01-27T08:22:21.5468271+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-02-01T08:38:18.8512893+00:00\",\r\n \"endTime\": + \"2021-02-01T08:38:19.0544249+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus2\",\r\n @@ -781,10 +781,10 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-01-27T08:22:21.4218478+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-02-01T08:38:18.8669211+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"772d9860-7ff1-4d20-9764-505270fb46a7\",\r\n \"networkAccessPolicy\": - \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"8041cf17-bf68-4eeb-89d2-db065c50b980\"\r\n}" + \ \"uniqueId\": \"64d1bb45-2d5c-4ac3-85a4-7ed51502db8c\",\r\n \"networkAccessPolicy\": + \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"2dc78c92-a688-4dd3-8c6d-56283d08051d\"\r\n}" headers: cache-control: - no-cache @@ -793,7 +793,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:23 GMT + - Mon, 01 Feb 2021 08:38:20 GMT expires: - '-1' pragma: @@ -810,7 +810,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49977,Microsoft.Compute/GetOperation30Min;399930 + - Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399997 status: code: 200 message: OK @@ -828,9 +828,9 @@ interactions: ParameterSetName: - -g -n --size-gb User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"d2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2\",\r\n @@ -840,9 +840,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-01-27T08:22:21.4218478+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-02-01T08:38:18.8669211+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"772d9860-7ff1-4d20-9764-505270fb46a7\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"64d1bb45-2d5c-4ac3-85a4-7ed51502db8c\",\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: @@ -852,7 +852,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:24 GMT + - Mon, 01 Feb 2021 08:38:21 GMT expires: - '-1' pragma: @@ -869,7 +869,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14983,Microsoft.Compute/LowCostGet30Min;119921 + - Microsoft.Compute/LowCostGet3Min;14997,Microsoft.Compute/LowCostGet30Min;119996 status: code: 200 message: OK @@ -895,7 +895,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-02-01T08:36:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -904,7 +904,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:24 GMT + - Mon, 01 Feb 2021 08:38:22 GMT expires: - '-1' pragma: @@ -937,9 +937,9 @@ interactions: ParameterSetName: - -g -n --size-gb User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"d3\",\r\n \"location\": \"eastus2\",\r\n \"tags\": @@ -949,7 +949,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/1888a890-f3a7-49f3-923e-2a832526ba2d?api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/88c85f65-7114-4097-999e-1eb394b4bd43?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -957,11 +957,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:31 GMT + - Mon, 01 Feb 2021 08:38:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/1888a890-f3a7-49f3-923e-2a832526ba2d?monitor=true&api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/88c85f65-7114-4097-999e-1eb394b4bd43?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -972,7 +972,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7986 + - Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7997 x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -992,13 +992,13 @@ interactions: ParameterSetName: - -g -n --size-gb User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/1888a890-f3a7-49f3-923e-2a832526ba2d?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/88c85f65-7114-4097-999e-1eb394b4bd43?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-27T08:22:31.4222313+00:00\",\r\n \"endTime\": - \"2021-01-27T08:22:31.5315943+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-02-01T08:38:27.6797825+00:00\",\r\n \"endTime\": + \"2021-02-01T08:38:27.8828938+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus2\",\r\n @@ -1007,10 +1007,10 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-01-27T08:22:31.4222313+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-02-01T08:38:27.6797825+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"310e0af2-dfc0-4d1a-bfaa-13d2a35b5938\",\r\n \"networkAccessPolicy\": - \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"1888a890-f3a7-49f3-923e-2a832526ba2d\"\r\n}" + \ \"uniqueId\": \"c84c4acb-7900-47ad-a7fd-c9f66303c691\",\r\n \"networkAccessPolicy\": + \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"88c85f65-7114-4097-999e-1eb394b4bd43\"\r\n}" headers: cache-control: - no-cache @@ -1019,7 +1019,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:34 GMT + - Mon, 01 Feb 2021 08:38:29 GMT expires: - '-1' pragma: @@ -1036,7 +1036,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49986,Microsoft.Compute/GetOperation30Min;399928 + - Microsoft.Compute/GetOperation3Min;49995,Microsoft.Compute/GetOperation30Min;399995 status: code: 200 message: OK @@ -1054,9 +1054,9 @@ interactions: ParameterSetName: - -g -n --size-gb User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"d3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3\",\r\n @@ -1066,9 +1066,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-01-27T08:22:31.4222313+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-02-01T08:38:27.6797825+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"310e0af2-dfc0-4d1a-bfaa-13d2a35b5938\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"c84c4acb-7900-47ad-a7fd-c9f66303c691\",\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: @@ -1078,7 +1078,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:34 GMT + - Mon, 01 Feb 2021 08:38:30 GMT expires: - '-1' pragma: @@ -1095,7 +1095,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14982,Microsoft.Compute/LowCostGet30Min;119918 + - Microsoft.Compute/LowCostGet3Min;14995,Microsoft.Compute/LowCostGet30Min;119994 status: code: 200 message: OK @@ -1113,7 +1113,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/d1?api-version=2020-05-01 response: @@ -1129,7 +1129,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:35 GMT + - Mon, 01 Feb 2021 08:38:30 GMT expires: - '-1' pragma: @@ -1157,9 +1157,9 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"d1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1\",\r\n @@ -1169,19 +1169,19 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-01-27T08:22:12.1089438+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-02-01T08:38:09.554084+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"24958805-4f29-4721-b3a3-e38c637d5c5d\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"c36aabd8-f653-45e5-ba62-ec4077b13c49\",\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '887' + - '886' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:35 GMT + - Mon, 01 Feb 2021 08:38:30 GMT expires: - '-1' pragma: @@ -1198,7 +1198,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14980,Microsoft.Compute/LowCostGet30Min;119916 + - Microsoft.Compute/LowCostGet3Min;14994,Microsoft.Compute/LowCostGet30Min;119993 status: code: 200 message: OK @@ -1224,7 +1224,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-02-01T08:36:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1233,7 +1233,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:36 GMT + - Mon, 01 Feb 2021 08:38:31 GMT expires: - '-1' pragma: @@ -1266,7 +1266,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 response: @@ -1274,12 +1274,12 @@ interactions: string: "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1\",\r\n - \ \"sourceUniqueId\": \"24958805-4f29-4721-b3a3-e38c637d5c5d\"\r\n },\r\n + \ \"sourceUniqueId\": \"c36aabd8-f653-45e5-ba62-ec4077b13c49\"\r\n },\r\n \ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/f8af40d7-f085-4441-bdbf-d5395cf06529?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/6830f0c0-f042-463c-89ec-04eb05026fb9?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1287,11 +1287,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:42 GMT + - Mon, 01 Feb 2021 08:38:34 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/f8af40d7-f085-4441-bdbf-d5395cf06529?monitor=true&api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/6830f0c0-f042-463c-89ec-04eb05026fb9?monitor=true&api-version=2020-05-01 pragma: - no-cache server: @@ -1302,9 +1302,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7992 + - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7999 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1195' status: code: 202 message: Accepted @@ -1322,35 +1322,35 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/f8af40d7-f085-4441-bdbf-d5395cf06529?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/6830f0c0-f042-463c-89ec-04eb05026fb9?api-version=2020-05-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-27T08:22:42.9852246+00:00\",\r\n \"endTime\": - \"2021-01-27T08:22:43.5477212+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-02-01T08:38:35.1644511+00:00\",\r\n \"endTime\": + \"2021-02-01T08:38:36.211366+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s1\",\r\n \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1\",\r\n - \ \"sourceUniqueId\": \"24958805-4f29-4721-b3a3-e38c637d5c5d\"\r\n },\r\n + \ \"sourceUniqueId\": \"c36aabd8-f653-45e5-ba62-ec4077b13c49\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-01-27T08:22:42.9852246+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-02-01T08:38:35.1644511+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"8180bdcc-361e-4b37-ab85-02fa003a39c5\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"27d3677f-5e21-4d1c-9968-a3aa6070afbb\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"f8af40d7-f085-4441-bdbf-d5395cf06529\"\r\n}" + \"6830f0c0-f042-463c-89ec-04eb05026fb9\"\r\n}" headers: cache-control: - no-cache content-length: - - '1343' + - '1342' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:44 GMT + - Mon, 01 Feb 2021 08:38:37 GMT expires: - '-1' pragma: @@ -1367,7 +1367,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49984,Microsoft.Compute/GetOperation30Min;399926 + - Microsoft.Compute/GetOperation3Min;49993,Microsoft.Compute/GetOperation30Min;399993 status: code: 200 message: OK @@ -1385,7 +1385,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 response: @@ -1395,11 +1395,11 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1\",\r\n - \ \"sourceUniqueId\": \"24958805-4f29-4721-b3a3-e38c637d5c5d\"\r\n },\r\n + \ \"sourceUniqueId\": \"c36aabd8-f653-45e5-ba62-ec4077b13c49\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-01-27T08:22:42.9852246+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-02-01T08:38:35.1644511+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"8180bdcc-361e-4b37-ab85-02fa003a39c5\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"27d3677f-5e21-4d1c-9968-a3aa6070afbb\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -1409,7 +1409,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:45 GMT + - Mon, 01 Feb 2021 08:38:37 GMT expires: - '-1' pragma: @@ -1426,7 +1426,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14974,Microsoft.Compute/LowCostGet30Min;119910 + - Microsoft.Compute/LowCostGet3Min;14990,Microsoft.Compute/LowCostGet30Min;119989 status: code: 200 message: OK @@ -1444,7 +1444,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/d2?api-version=2020-05-01 response: @@ -1460,7 +1460,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:46 GMT + - Mon, 01 Feb 2021 08:38:38 GMT expires: - '-1' pragma: @@ -1488,9 +1488,9 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"d2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2\",\r\n @@ -1500,9 +1500,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-01-27T08:22:21.4218478+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-02-01T08:38:18.8669211+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"772d9860-7ff1-4d20-9764-505270fb46a7\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"64d1bb45-2d5c-4ac3-85a4-7ed51502db8c\",\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: @@ -1512,7 +1512,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:47 GMT + - Mon, 01 Feb 2021 08:38:38 GMT expires: - '-1' pragma: @@ -1529,7 +1529,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14973,Microsoft.Compute/LowCostGet30Min;119909 + - Microsoft.Compute/LowCostGet3Min;14989,Microsoft.Compute/LowCostGet30Min;119988 status: code: 200 message: OK @@ -1555,7 +1555,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-02-01T08:36:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1564,7 +1564,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:47 GMT + - Mon, 01 Feb 2021 08:38:39 GMT expires: - '-1' pragma: @@ -1597,7 +1597,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s2?api-version=2020-05-01 response: @@ -1605,12 +1605,12 @@ interactions: string: "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2\",\r\n - \ \"sourceUniqueId\": \"772d9860-7ff1-4d20-9764-505270fb46a7\"\r\n },\r\n + \ \"sourceUniqueId\": \"64d1bb45-2d5c-4ac3-85a4-7ed51502db8c\"\r\n },\r\n \ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/43e2cbc7-1f03-4fe1-82f6-c2a0d1792f46?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/aba20818-9e08-4e81-abf9-a134654652e8?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1618,11 +1618,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:53 GMT + - Mon, 01 Feb 2021 08:38:45 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/43e2cbc7-1f03-4fe1-82f6-c2a0d1792f46?monitor=true&api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/aba20818-9e08-4e81-abf9-a134654652e8?monitor=true&api-version=2020-05-01 pragma: - no-cache server: @@ -1633,9 +1633,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;998,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7991 + - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;998,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7998 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1191' status: code: 202 message: Accepted @@ -1653,26 +1653,26 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/43e2cbc7-1f03-4fe1-82f6-c2a0d1792f46?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/aba20818-9e08-4e81-abf9-a134654652e8?api-version=2020-05-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-27T08:22:53.6731676+00:00\",\r\n \"endTime\": - \"2021-01-27T08:22:54.0794379+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-02-01T08:38:45.8680543+00:00\",\r\n \"endTime\": + \"2021-02-01T08:38:46.3055365+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"s2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s2\",\r\n \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2\",\r\n - \ \"sourceUniqueId\": \"772d9860-7ff1-4d20-9764-505270fb46a7\"\r\n },\r\n + \ \"sourceUniqueId\": \"64d1bb45-2d5c-4ac3-85a4-7ed51502db8c\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-01-27T08:22:53.6731676+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-02-01T08:38:45.8680543+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"8a176593-0690-45c1-8250-8bc31611bf12\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"3b4d9828-369a-4e46-abec-1a2a7a4c7ec4\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"43e2cbc7-1f03-4fe1-82f6-c2a0d1792f46\"\r\n}" + \"aba20818-9e08-4e81-abf9-a134654652e8\"\r\n}" headers: cache-control: - no-cache @@ -1681,7 +1681,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:55 GMT + - Mon, 01 Feb 2021 08:38:47 GMT expires: - '-1' pragma: @@ -1698,7 +1698,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49982,Microsoft.Compute/GetOperation30Min;399924 + - Microsoft.Compute/GetOperation3Min;49991,Microsoft.Compute/GetOperation30Min;399991 status: code: 200 message: OK @@ -1716,7 +1716,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s2?api-version=2020-05-01 response: @@ -1726,11 +1726,11 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2\",\r\n - \ \"sourceUniqueId\": \"772d9860-7ff1-4d20-9764-505270fb46a7\"\r\n },\r\n + \ \"sourceUniqueId\": \"64d1bb45-2d5c-4ac3-85a4-7ed51502db8c\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-01-27T08:22:53.6731676+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-02-01T08:38:45.8680543+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"8a176593-0690-45c1-8250-8bc31611bf12\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"3b4d9828-369a-4e46-abec-1a2a7a4c7ec4\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -1740,7 +1740,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:56 GMT + - Mon, 01 Feb 2021 08:38:47 GMT expires: - '-1' pragma: @@ -1757,7 +1757,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14969,Microsoft.Compute/LowCostGet30Min;119905 + - Microsoft.Compute/LowCostGet3Min;14986,Microsoft.Compute/LowCostGet30Min;119985 status: code: 200 message: OK @@ -1775,7 +1775,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/d3?api-version=2020-05-01 response: @@ -1791,7 +1791,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:57 GMT + - Mon, 01 Feb 2021 08:38:50 GMT expires: - '-1' pragma: @@ -1819,9 +1819,9 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"d3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3\",\r\n @@ -1831,9 +1831,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-01-27T08:22:31.4222313+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-02-01T08:38:27.6797825+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"310e0af2-dfc0-4d1a-bfaa-13d2a35b5938\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"c84c4acb-7900-47ad-a7fd-c9f66303c691\",\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: @@ -1843,7 +1843,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:57 GMT + - Mon, 01 Feb 2021 08:38:50 GMT expires: - '-1' pragma: @@ -1860,7 +1860,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14968,Microsoft.Compute/LowCostGet30Min;119904 + - Microsoft.Compute/LowCostGet3Min;14984,Microsoft.Compute/LowCostGet30Min;119983 status: code: 200 message: OK @@ -1886,7 +1886,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-02-01T08:36:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1895,7 +1895,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:57 GMT + - Mon, 01 Feb 2021 08:38:50 GMT expires: - '-1' pragma: @@ -1928,7 +1928,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s3?api-version=2020-05-01 response: @@ -1936,12 +1936,12 @@ interactions: string: "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3\",\r\n - \ \"sourceUniqueId\": \"310e0af2-dfc0-4d1a-bfaa-13d2a35b5938\"\r\n },\r\n + \ \"sourceUniqueId\": \"c84c4acb-7900-47ad-a7fd-c9f66303c691\"\r\n },\r\n \ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/4840c86a-eba3-469e-9f1b-4dfcda2dba4e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/7d550a43-db7b-49c4-be17-c455605d170e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1949,11 +1949,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:23:02 GMT + - Mon, 01 Feb 2021 08:38:56 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/4840c86a-eba3-469e-9f1b-4dfcda2dba4e?monitor=true&api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/7d550a43-db7b-49c4-be17-c455605d170e?monitor=true&api-version=2020-05-01 pragma: - no-cache server: @@ -1964,9 +1964,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;997,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7990 + - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;997,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7997 x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1198' status: code: 202 message: Accepted @@ -1984,26 +1984,26 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/4840c86a-eba3-469e-9f1b-4dfcda2dba4e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/7d550a43-db7b-49c4-be17-c455605d170e?api-version=2020-05-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-27T08:23:03.2673102+00:00\",\r\n \"endTime\": - \"2021-01-27T08:23:03.6736332+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-02-01T08:38:56.7747124+00:00\",\r\n \"endTime\": + \"2021-02-01T08:38:57.2278136+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"s3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s3\",\r\n \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3\",\r\n - \ \"sourceUniqueId\": \"310e0af2-dfc0-4d1a-bfaa-13d2a35b5938\"\r\n },\r\n + \ \"sourceUniqueId\": \"c84c4acb-7900-47ad-a7fd-c9f66303c691\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-01-27T08:23:03.2673102+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-02-01T08:38:56.7747124+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"e93280da-5c06-4b54-b8db-39c7e821db63\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"d559c4ac-3de3-4e3c-b167-b7f639064c31\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"4840c86a-eba3-469e-9f1b-4dfcda2dba4e\"\r\n}" + \"7d550a43-db7b-49c4-be17-c455605d170e\"\r\n}" headers: cache-control: - no-cache @@ -2012,7 +2012,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:23:04 GMT + - Mon, 01 Feb 2021 08:38:58 GMT expires: - '-1' pragma: @@ -2029,7 +2029,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49983,Microsoft.Compute/GetOperation30Min;399922 + - Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399989 status: code: 200 message: OK @@ -2047,7 +2047,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s3?api-version=2020-05-01 response: @@ -2057,11 +2057,11 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3\",\r\n - \ \"sourceUniqueId\": \"310e0af2-dfc0-4d1a-bfaa-13d2a35b5938\"\r\n },\r\n + \ \"sourceUniqueId\": \"c84c4acb-7900-47ad-a7fd-c9f66303c691\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-01-27T08:23:03.2673102+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-02-01T08:38:56.7747124+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"e93280da-5c06-4b54-b8db-39c7e821db63\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"d559c4ac-3de3-4e3c-b167-b7f639064c31\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -2071,7 +2071,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:23:05 GMT + - Mon, 01 Feb 2021 08:38:58 GMT expires: - '-1' pragma: @@ -2088,7 +2088,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14971,Microsoft.Compute/LowCostGet30Min;119902 + - Microsoft.Compute/LowCostGet3Min;14982,Microsoft.Compute/LowCostGet30Min;119981 status: code: 200 message: OK @@ -2115,7 +2115,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-02-01T08:36:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2124,7 +2124,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:23:06 GMT + - Mon, 01 Feb 2021 08:38:59 GMT expires: - '-1' pragma: @@ -2162,7 +2162,7 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot --data-snapshots --data-snapshot-luns User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2020-09-30 response: @@ -2173,7 +2173,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-01-27T08:23:11.8655209+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-01T08:39:05.5064359+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"hostCaching\": \"ReadWrite\",\r\n \ \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2186,7 +2186,7 @@ interactions: \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/1fd81086-c70c-4cd1-9a46-7c6b6785193f?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/72f06fbe-241b-4b95-9d3c-6c90acd3c7fe?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -2194,7 +2194,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:23:13 GMT + - Mon, 01 Feb 2021 08:39:07 GMT expires: - '-1' pragma: @@ -2207,9 +2207,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1198 + - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1199 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1193' status: code: 201 message: Created @@ -2228,13 +2228,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot --data-snapshots --data-snapshot-luns User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/1fd81086-c70c-4cd1-9a46-7c6b6785193f?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/72f06fbe-241b-4b95-9d3c-6c90acd3c7fe?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-27T08:23:11.8655209+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"1fd81086-c70c-4cd1-9a46-7c6b6785193f\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-01T08:39:05.4908212+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"72f06fbe-241b-4b95-9d3c-6c90acd3c7fe\"\r\n}" headers: cache-control: - no-cache @@ -2243,7 +2243,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:24:13 GMT + - Mon, 01 Feb 2021 08:40:07 GMT expires: - '-1' pragma: @@ -2260,7 +2260,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4173 + - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4194 status: code: 200 message: OK @@ -2279,13 +2279,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot --data-snapshots --data-snapshot-luns User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/1fd81086-c70c-4cd1-9a46-7c6b6785193f?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/72f06fbe-241b-4b95-9d3c-6c90acd3c7fe?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-27T08:23:11.8655209+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"1fd81086-c70c-4cd1-9a46-7c6b6785193f\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-01T08:39:05.4908212+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"72f06fbe-241b-4b95-9d3c-6c90acd3c7fe\"\r\n}" headers: cache-control: - no-cache @@ -2294,7 +2294,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:25:15 GMT + - Mon, 01 Feb 2021 08:41:08 GMT expires: - '-1' pragma: @@ -2311,7 +2311,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4170 + - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4192 status: code: 200 message: OK @@ -2330,13 +2330,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot --data-snapshots --data-snapshot-luns User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/1fd81086-c70c-4cd1-9a46-7c6b6785193f?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/72f06fbe-241b-4b95-9d3c-6c90acd3c7fe?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-27T08:23:11.8655209+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"1fd81086-c70c-4cd1-9a46-7c6b6785193f\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-01T08:39:05.4908212+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"72f06fbe-241b-4b95-9d3c-6c90acd3c7fe\"\r\n}" headers: cache-control: - no-cache @@ -2345,7 +2345,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:26:15 GMT + - Mon, 01 Feb 2021 08:42:10 GMT expires: - '-1' pragma: @@ -2362,7 +2362,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4166 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4191 status: code: 200 message: OK @@ -2381,13 +2381,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot --data-snapshots --data-snapshot-luns User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/1fd81086-c70c-4cd1-9a46-7c6b6785193f?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/72f06fbe-241b-4b95-9d3c-6c90acd3c7fe?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-27T08:23:11.8655209+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"1fd81086-c70c-4cd1-9a46-7c6b6785193f\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-01T08:39:05.4908212+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"72f06fbe-241b-4b95-9d3c-6c90acd3c7fe\"\r\n}" headers: cache-control: - no-cache @@ -2396,7 +2396,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:27:16 GMT + - Mon, 01 Feb 2021 08:43:10 GMT expires: - '-1' pragma: @@ -2413,7 +2413,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4162 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4189 status: code: 200 message: OK @@ -2432,13 +2432,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot --data-snapshots --data-snapshot-luns User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/1fd81086-c70c-4cd1-9a46-7c6b6785193f?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/72f06fbe-241b-4b95-9d3c-6c90acd3c7fe?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-27T08:23:11.8655209+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"1fd81086-c70c-4cd1-9a46-7c6b6785193f\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-01T08:39:05.4908212+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"72f06fbe-241b-4b95-9d3c-6c90acd3c7fe\"\r\n}" headers: cache-control: - no-cache @@ -2447,7 +2447,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:28:18 GMT + - Mon, 01 Feb 2021 08:44:12 GMT expires: - '-1' pragma: @@ -2464,7 +2464,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;4156 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4187 status: code: 200 message: OK @@ -2483,13 +2483,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot --data-snapshots --data-snapshot-luns User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/1fd81086-c70c-4cd1-9a46-7c6b6785193f?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/72f06fbe-241b-4b95-9d3c-6c90acd3c7fe?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-27T08:23:11.8655209+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"1fd81086-c70c-4cd1-9a46-7c6b6785193f\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-01T08:39:05.4908212+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"72f06fbe-241b-4b95-9d3c-6c90acd3c7fe\"\r\n}" headers: cache-control: - no-cache @@ -2498,7 +2498,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:29:18 GMT + - Mon, 01 Feb 2021 08:45:13 GMT expires: - '-1' pragma: @@ -2515,7 +2515,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;4152 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4185 status: code: 200 message: OK @@ -2534,14 +2534,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot --data-snapshots --data-snapshot-luns User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/1fd81086-c70c-4cd1-9a46-7c6b6785193f?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/72f06fbe-241b-4b95-9d3c-6c90acd3c7fe?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-27T08:23:11.8655209+00:00\",\r\n \"endTime\": - \"2021-01-27T08:29:57.6958624+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"1fd81086-c70c-4cd1-9a46-7c6b6785193f\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-01T08:39:05.4908212+00:00\",\r\n \"endTime\": + \"2021-02-01T08:46:06.2272373+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"72f06fbe-241b-4b95-9d3c-6c90acd3c7fe\"\r\n}" headers: cache-control: - no-cache @@ -2550,7 +2550,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:30:20 GMT + - Mon, 01 Feb 2021 08:46:13 GMT expires: - '-1' pragma: @@ -2567,7 +2567,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4148 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4183 status: code: 200 message: OK @@ -2586,7 +2586,7 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot --data-snapshots --data-snapshot-luns User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2020-09-30 response: @@ -2597,7 +2597,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-01-27T08:23:11.8655209+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-01T08:39:05.5064359+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 10,\r\n \"hostCaching\": \"ReadWrite\",\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2617,7 +2617,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:30:20 GMT + - Mon, 01 Feb 2021 08:46:13 GMT expires: - '-1' pragma: @@ -2634,7 +2634,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1998,Microsoft.Compute/GetGalleryImageVersion30Min;9986 + - Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9997 status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_disk_max_shares_etc.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_disk_max_shares_etc.yaml index 4e813a9b536..668533c9449 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_disk_max_shares_etc.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_disk_max_shares_etc.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-01T08:36:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:20:47 GMT + - Mon, 01 Feb 2021 08:36:43 GMT expires: - '-1' pragma: @@ -64,9 +64,9 @@ interactions: ParameterSetName: - -g -n --size-gb --sku --disk-iops-read-only --disk-mbps-read-only User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"d1\",\r\n \"location\": \"westus\",\r\n \"tags\": @@ -78,7 +78,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/26a08cc1-4385-43d4-9c12-5fd26ee8f73c?api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/d3ea082f-d258-491a-81b3-840c6fee20b6?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -86,11 +86,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:20:52 GMT + - Mon, 01 Feb 2021 08:36:48 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/26a08cc1-4385-43d4-9c12-5fd26ee8f73c?monitor=true&api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/d3ea082f-d258-491a-81b3-840c6fee20b6?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -101,9 +101,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7981 + - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1194' status: code: 202 message: Accepted @@ -121,13 +121,13 @@ interactions: ParameterSetName: - -g -n --size-gb --sku --disk-iops-read-only --disk-mbps-read-only User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/26a08cc1-4385-43d4-9c12-5fd26ee8f73c?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/d3ea082f-d258-491a-81b3-840c6fee20b6?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-27T08:20:52.8949725+00:00\",\r\n \"endTime\": - \"2021-01-27T08:20:53.9262429+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-02-01T08:36:48.1238373+00:00\",\r\n \"endTime\": + \"2021-02-01T08:36:49.2488761+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n @@ -137,11 +137,11 @@ interactions: 10,\r\n \"diskIOPSReadWrite\": 100,\r\n \"diskMBpsReadWrite\": 13,\r\n \ \"readOnly\": false,\r\n \"diskIOPSReadOnly\": 200,\r\n \"diskMBpsReadOnly\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-01-27T08:20:52.8949725+00:00\",\r\n + \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-02-01T08:36:48.1238373+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"d7b065fe-4558-4566-9ddc-89d7c85a574f\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"4dc24e11-8433-4403-88f3-8c3aaaf60954\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"26a08cc1-4385-43d4-9c12-5fd26ee8f73c\"\r\n}" + \"d3ea082f-d258-491a-81b3-840c6fee20b6\"\r\n}" headers: cache-control: - no-cache @@ -150,7 +150,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:20:55 GMT + - Mon, 01 Feb 2021 08:36:50 GMT expires: - '-1' pragma: @@ -167,7 +167,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49992,Microsoft.Compute/GetOperation30Min;399864 + - Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399997 status: code: 200 message: OK @@ -185,9 +185,9 @@ interactions: ParameterSetName: - -g -n --size-gb --sku --disk-iops-read-only --disk-mbps-read-only User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"d1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1\",\r\n @@ -198,9 +198,9 @@ interactions: 10,\r\n \"diskIOPSReadWrite\": 100,\r\n \"diskMBpsReadWrite\": 13,\r\n \ \"readOnly\": false,\r\n \"diskIOPSReadOnly\": 200,\r\n \"diskMBpsReadOnly\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-01-27T08:20:52.8949725+00:00\",\r\n + \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-02-01T08:36:48.1238373+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"d7b065fe-4558-4566-9ddc-89d7c85a574f\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"4dc24e11-8433-4403-88f3-8c3aaaf60954\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -210,7 +210,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:20:55 GMT + - Mon, 01 Feb 2021 08:36:50 GMT expires: - '-1' pragma: @@ -227,7 +227,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4987,Microsoft.Compute/LowCostGet30Min;39809 + - Microsoft.Compute/LowCostGet3Min;4997,Microsoft.Compute/LowCostGet30Min;39986 status: code: 200 message: OK @@ -245,9 +245,9 @@ interactions: ParameterSetName: - -g -n --disk-iops-read-only --disk-mbps-read-only User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"d1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1\",\r\n @@ -258,9 +258,9 @@ interactions: 10,\r\n \"diskIOPSReadWrite\": 100,\r\n \"diskMBpsReadWrite\": 13,\r\n \ \"readOnly\": false,\r\n \"diskIOPSReadOnly\": 200,\r\n \"diskMBpsReadOnly\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-01-27T08:20:52.8949725+00:00\",\r\n + \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-02-01T08:36:48.1238373+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"d7b065fe-4558-4566-9ddc-89d7c85a574f\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"4dc24e11-8433-4403-88f3-8c3aaaf60954\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -270,7 +270,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:20:56 GMT + - Mon, 01 Feb 2021 08:36:51 GMT expires: - '-1' pragma: @@ -287,7 +287,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4986,Microsoft.Compute/LowCostGet30Min;39808 + - Microsoft.Compute/LowCostGet3Min;4996,Microsoft.Compute/LowCostGet30Min;39985 status: code: 200 message: OK @@ -296,7 +296,7 @@ interactions: {"creationData": {"createOption": "Empty", "logicalSectorSize": 4096}, "diskSizeGB": 10, "diskIOPSReadWrite": 100, "diskMBpsReadWrite": 13, "diskIOPSReadOnly": 250, "diskMBpsReadOnly": 40, "encryption": {"type": "EncryptionAtRestWithPlatformKey"}, - "maxShares": 1, "networkAccessPolicy": "AllowAll"}}' + "maxShares": 1, "networkAccessPolicy": "AllowAll", "burstingEnabled": false}}' headers: Accept: - application/json @@ -307,15 +307,15 @@ interactions: Connection: - keep-alive Content-Length: - - '381' + - '407' Content-Type: - application/json ParameterSetName: - -g -n --disk-iops-read-only --disk-mbps-read-only User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"d1\",\r\n \"location\": \"westus\",\r\n \"tags\": @@ -329,7 +329,7 @@ interactions: \ \"faultDomain\": 0,\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/48e9c2d0-d449-48ec-aaca-c25d931ca766?api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/468c40be-b271-486b-9f75-b3b00663a4a5?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -337,11 +337,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:20:57 GMT + - Mon, 01 Feb 2021 08:36:53 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/48e9c2d0-d449-48ec-aaca-c25d931ca766?monitor=true&api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/468c40be-b271-486b-9f75-b3b00663a4a5?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -352,7 +352,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7980 + - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7998 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -372,13 +372,13 @@ interactions: ParameterSetName: - -g -n --disk-iops-read-only --disk-mbps-read-only User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/48e9c2d0-d449-48ec-aaca-c25d931ca766?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/468c40be-b271-486b-9f75-b3b00663a4a5?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-27T08:20:58.0200347+00:00\",\r\n \"endTime\": - \"2021-01-27T08:20:58.1762437+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-02-01T08:36:53.3895139+00:00\",\r\n \"endTime\": + \"2021-02-01T08:36:53.6082847+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n @@ -388,11 +388,11 @@ interactions: 10,\r\n \"diskIOPSReadWrite\": 100,\r\n \"diskMBpsReadWrite\": 13,\r\n \ \"readOnly\": false,\r\n \"diskIOPSReadOnly\": 250,\r\n \"diskMBpsReadOnly\": 40,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-01-27T08:20:52.8949725+00:00\",\r\n + \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-02-01T08:36:48.1238373+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"d7b065fe-4558-4566-9ddc-89d7c85a574f\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"4dc24e11-8433-4403-88f3-8c3aaaf60954\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"48e9c2d0-d449-48ec-aaca-c25d931ca766\"\r\n}" + \"468c40be-b271-486b-9f75-b3b00663a4a5\"\r\n}" headers: cache-control: - no-cache @@ -401,7 +401,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:20:59 GMT + - Mon, 01 Feb 2021 08:36:55 GMT expires: - '-1' pragma: @@ -418,7 +418,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49990,Microsoft.Compute/GetOperation30Min;399862 + - Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399995 status: code: 200 message: OK @@ -436,9 +436,9 @@ interactions: ParameterSetName: - -g -n --disk-iops-read-only --disk-mbps-read-only User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"d1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1\",\r\n @@ -449,9 +449,9 @@ interactions: 10,\r\n \"diskIOPSReadWrite\": 100,\r\n \"diskMBpsReadWrite\": 13,\r\n \ \"readOnly\": false,\r\n \"diskIOPSReadOnly\": 250,\r\n \"diskMBpsReadOnly\": 40,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-01-27T08:20:52.8949725+00:00\",\r\n + \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-02-01T08:36:48.1238373+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"d7b065fe-4558-4566-9ddc-89d7c85a574f\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"4dc24e11-8433-4403-88f3-8c3aaaf60954\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -461,7 +461,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:21:00 GMT + - Mon, 01 Feb 2021 08:36:55 GMT expires: - '-1' pragma: @@ -478,7 +478,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4989,Microsoft.Compute/LowCostGet30Min;39806 + - Microsoft.Compute/LowCostGet3Min;4994,Microsoft.Compute/LowCostGet30Min;39983 status: code: 200 message: OK @@ -504,7 +504,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-01T08:36:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -513,7 +513,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:21:00 GMT + - Mon, 01 Feb 2021 08:36:55 GMT expires: - '-1' pragma: @@ -546,9 +546,9 @@ interactions: ParameterSetName: - -g -n --image-reference User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d2?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d2?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"d2\",\r\n \"location\": \"westus\",\r\n \"tags\": @@ -560,7 +560,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/d045c180-36da-4c86-bdeb-b1315fd7b572?api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/b14f28d7-8aa8-49d2-988b-a1df3e085a26?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -568,11 +568,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:21:05 GMT + - Mon, 01 Feb 2021 08:37:00 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/d045c180-36da-4c86-bdeb-b1315fd7b572?monitor=true&api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/b14f28d7-8aa8-49d2-988b-a1df3e085a26?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -583,9 +583,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7979 + - Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7997 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 202 message: Accepted @@ -603,13 +603,13 @@ interactions: ParameterSetName: - -g -n --image-reference User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/d045c180-36da-4c86-bdeb-b1315fd7b572?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/b14f28d7-8aa8-49d2-988b-a1df3e085a26?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-27T08:21:05.2237819+00:00\",\r\n \"endTime\": - \"2021-01-27T08:21:06.0206479+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-02-01T08:37:00.6864604+00:00\",\r\n \"endTime\": + \"2021-02-01T08:37:01.5614444+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d2\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n @@ -619,11 +619,11 @@ interactions: \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202002180\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-27T08:21:05.2550259+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-02-01T08:37:00.7176767+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"53b9a6fa-4aa6-418d-bb75-f116de69fd30\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"97b77b17-ee1e-4134-9f54-b8a32c06ab16\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"d045c180-36da-4c86-bdeb-b1315fd7b572\"\r\n}" + \ },\r\n \"name\": \"b14f28d7-8aa8-49d2-988b-a1df3e085a26\"\r\n}" headers: cache-control: - no-cache @@ -632,7 +632,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:21:07 GMT + - Mon, 01 Feb 2021 08:37:02 GMT expires: - '-1' pragma: @@ -649,7 +649,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49988,Microsoft.Compute/GetOperation30Min;399860 + - Microsoft.Compute/GetOperation3Min;49995,Microsoft.Compute/GetOperation30Min;399993 status: code: 200 message: OK @@ -667,9 +667,9 @@ interactions: ParameterSetName: - -g -n --image-reference User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d2?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d2?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"d2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d2\",\r\n @@ -680,9 +680,9 @@ interactions: \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202002180\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-27T08:21:05.2550259+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-02-01T08:37:00.7176767+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"53b9a6fa-4aa6-418d-bb75-f116de69fd30\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"97b77b17-ee1e-4134-9f54-b8a32c06ab16\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}" headers: cache-control: @@ -692,7 +692,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:21:07 GMT + - Mon, 01 Feb 2021 08:37:03 GMT expires: - '-1' pragma: @@ -709,7 +709,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4986,Microsoft.Compute/LowCostGet30Min;39803 + - Microsoft.Compute/LowCostGet3Min;4991,Microsoft.Compute/LowCostGet30Min;39980 status: code: 200 message: OK @@ -735,7 +735,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-01T08:36:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -744,7 +744,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:21:08 GMT + - Mon, 01 Feb 2021 08:37:04 GMT expires: - '-1' pragma: @@ -772,7 +772,7 @@ interactions: ParameterSetName: - -g -n --image-reference User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202002180?api-version=2020-06-01 response: @@ -792,7 +792,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:21:09 GMT + - Mon, 01 Feb 2021 08:37:04 GMT expires: - '-1' pragma: @@ -830,9 +830,9 @@ interactions: ParameterSetName: - -g -n --image-reference User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d3?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d3?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"d3\",\r\n \"location\": \"westus\",\r\n \"tags\": @@ -844,7 +844,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/a069bf6c-288c-421d-99ea-3ed7b46c62dd?api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/3fc533c0-3fd7-4a7e-8945-a6890e4875fc?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -852,11 +852,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:21:14 GMT + - Mon, 01 Feb 2021 08:37:10 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/a069bf6c-288c-421d-99ea-3ed7b46c62dd?monitor=true&api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/3fc533c0-3fd7-4a7e-8945-a6890e4875fc?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -867,9 +867,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;996,Microsoft.Compute/CreateUpdateDisks30Min;7978 + - Microsoft.Compute/CreateUpdateDisks3Min;996,Microsoft.Compute/CreateUpdateDisks30Min;7996 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 202 message: Accepted @@ -887,13 +887,13 @@ interactions: ParameterSetName: - -g -n --image-reference User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/a069bf6c-288c-421d-99ea-3ed7b46c62dd?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/3fc533c0-3fd7-4a7e-8945-a6890e4875fc?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-27T08:21:14.6144435+00:00\",\r\n \"endTime\": - \"2021-01-27T08:21:15.0831811+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-02-01T08:37:10.6396497+00:00\",\r\n \"endTime\": + \"2021-02-01T08:37:11.1708659+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d3\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n @@ -903,11 +903,11 @@ interactions: \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202002180\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-27T08:21:14.6144435+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-02-01T08:37:10.6396497+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"38d7314e-b1bb-4e37-bda2-bac742501102\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"e4a195f7-a3c2-422e-a6d0-fa4c681d3628\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"a069bf6c-288c-421d-99ea-3ed7b46c62dd\"\r\n}" + \ },\r\n \"name\": \"3fc533c0-3fd7-4a7e-8945-a6890e4875fc\"\r\n}" headers: cache-control: - no-cache @@ -916,7 +916,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:21:17 GMT + - Mon, 01 Feb 2021 08:37:12 GMT expires: - '-1' pragma: @@ -933,7 +933,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49986,Microsoft.Compute/GetOperation30Min;399858 + - Microsoft.Compute/GetOperation3Min;49993,Microsoft.Compute/GetOperation30Min;399991 status: code: 200 message: OK @@ -951,9 +951,9 @@ interactions: ParameterSetName: - -g -n --image-reference User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d3?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d3?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"d3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d3\",\r\n @@ -964,9 +964,9 @@ interactions: \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202002180\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-27T08:21:14.6144435+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-02-01T08:37:10.6396497+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"38d7314e-b1bb-4e37-bda2-bac742501102\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"e4a195f7-a3c2-422e-a6d0-fa4c681d3628\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}" headers: cache-control: @@ -976,7 +976,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:21:17 GMT + - Mon, 01 Feb 2021 08:37:12 GMT expires: - '-1' pragma: @@ -993,7 +993,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4982,Microsoft.Compute/LowCostGet30Min;39799 + - Microsoft.Compute/LowCostGet3Min;4988,Microsoft.Compute/LowCostGet30Min;39977 status: code: 200 message: OK @@ -1019,7 +1019,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-01T08:36:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1028,7 +1028,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:21:17 GMT + - Mon, 01 Feb 2021 08:37:13 GMT expires: - '-1' pragma: @@ -1060,7 +1060,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002?api-version=2019-12-01 response: @@ -1068,11 +1068,11 @@ interactions: string: "{\r\n \"name\": \"g1000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-G1JPFNIGQULXBYPDBQSQ\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-G1YFHTMAG73DNX2KCYHT\"\r\n },\r\n \ \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/64a2c0f2-0864-4f27-9017-c4be0195c73d?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/0ae60f24-5ac0-44bb-a82d-ea4d2f14aa39?api-version=2019-12-01 cache-control: - no-cache content-length: @@ -1080,7 +1080,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:21:23 GMT + - Mon, 01 Feb 2021 08:37:20 GMT expires: - '-1' pragma: @@ -1093,9 +1093,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGallery3Min;48,Microsoft.Compute/CreateUpdateGallery30Min;296 + - Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 201 message: Created @@ -1113,14 +1113,14 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/64a2c0f2-0864-4f27-9017-c4be0195c73d?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/0ae60f24-5ac0-44bb-a82d-ea4d2f14aa39?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-27T08:21:22.2111953+00:00\",\r\n \"endTime\": - \"2021-01-27T08:21:22.3361648+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"64a2c0f2-0864-4f27-9017-c4be0195c73d\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-01T08:37:18.8806067+00:00\",\r\n \"endTime\": + \"2021-02-01T08:37:19.1774941+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"0ae60f24-5ac0-44bb-a82d-ea4d2f14aa39\"\r\n}" headers: cache-control: - no-cache @@ -1129,7 +1129,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:21:53 GMT + - Mon, 01 Feb 2021 08:37:50 GMT expires: - '-1' pragma: @@ -1146,7 +1146,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4157 + - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4195 status: code: 200 message: OK @@ -1164,7 +1164,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002?api-version=2019-12-01 response: @@ -1172,7 +1172,7 @@ interactions: string: "{\r\n \"name\": \"g1000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-G1JPFNIGQULXBYPDBQSQ\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-G1YFHTMAG73DNX2KCYHT\"\r\n },\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -1182,7 +1182,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:21:53 GMT + - Mon, 01 Feb 2021 08:37:50 GMT expires: - '-1' pragma: @@ -1199,7 +1199,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGallery3Min;342,Microsoft.Compute/GetGallery30Min;2478 + - Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2491 status: code: 200 message: OK @@ -1226,7 +1226,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-01T08:36:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1235,7 +1235,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:21:54 GMT + - Mon, 01 Feb 2021 08:37:51 GMT expires: - '-1' pragma: @@ -1272,7 +1272,7 @@ interactions: - -g --gallery-name --gallery-image-definition --os-type -p -f -s --features --hyper-v-generation User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image?api-version=2020-09-30 response: @@ -1288,7 +1288,7 @@ interactions: \ },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d9f09be6-e07c-40fa-8d9d-326686b376b9?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/c3ef7aca-3d1c-4b6f-9611-f1b8c70285b8?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -1296,7 +1296,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:21:59 GMT + - Mon, 01 Feb 2021 08:37:58 GMT expires: - '-1' pragma: @@ -1309,7 +1309,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImage3Min;148,Microsoft.Compute/CreateUpdateGalleryImage30Min;746 + - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;749 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1330,14 +1330,14 @@ interactions: - -g --gallery-name --gallery-image-definition --os-type -p -f -s --features --hyper-v-generation User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d9f09be6-e07c-40fa-8d9d-326686b376b9?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/c3ef7aca-3d1c-4b6f-9611-f1b8c70285b8?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-27T08:21:59.5393598+00:00\",\r\n \"endTime\": - \"2021-01-27T08:21:59.6330938+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"d9f09be6-e07c-40fa-8d9d-326686b376b9\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-01T08:37:57.6475359+00:00\",\r\n \"endTime\": + \"2021-02-01T08:37:57.8194094+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"c3ef7aca-3d1c-4b6f-9611-f1b8c70285b8\"\r\n}" headers: cache-control: - no-cache @@ -1346,7 +1346,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:30 GMT + - Mon, 01 Feb 2021 08:38:28 GMT expires: - '-1' pragma: @@ -1363,7 +1363,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;4151 + - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4193 status: code: 200 message: OK @@ -1382,7 +1382,7 @@ interactions: - -g --gallery-name --gallery-image-definition --os-type -p -f -s --features --hyper-v-generation User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image?api-version=2020-09-30 response: @@ -1404,7 +1404,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:31 GMT + - Mon, 01 Feb 2021 08:38:29 GMT expires: - '-1' pragma: @@ -1421,7 +1421,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;591,Microsoft.Compute/GetGalleryImage30Min;2977 + - Microsoft.Compute/GetGalleryImage3Min;596,Microsoft.Compute/GetGalleryImage30Min;2990 status: code: 200 message: OK @@ -1447,7 +1447,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-01T08:36:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1456,7 +1456,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:32 GMT + - Mon, 01 Feb 2021 08:38:30 GMT expires: - '-1' pragma: @@ -1489,9 +1489,9 @@ interactions: ParameterSetName: - -g -n --size-gb User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"disk\",\r\n \"location\": \"westus\",\r\n \"tags\": @@ -1501,7 +1501,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/31c876f8-4b3c-4bc3-a844-0d2e766338a7?api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1caf437d-1b0b-42c8-b909-e7885754d9cc?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -1509,11 +1509,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:36 GMT + - Mon, 01 Feb 2021 08:38:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/31c876f8-4b3c-4bc3-a844-0d2e766338a7?monitor=true&api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1caf437d-1b0b-42c8-b909-e7885754d9cc?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -1524,7 +1524,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;995,Microsoft.Compute/CreateUpdateDisks30Min;7977 + - Microsoft.Compute/CreateUpdateDisks3Min;995,Microsoft.Compute/CreateUpdateDisks30Min;7995 x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -1544,13 +1544,13 @@ interactions: ParameterSetName: - -g -n --size-gb User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/31c876f8-4b3c-4bc3-a844-0d2e766338a7?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1caf437d-1b0b-42c8-b909-e7885754d9cc?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-27T08:22:36.227731+00:00\",\r\n \"endTime\": - \"2021-01-27T08:22:36.415238+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-02-01T08:38:35.6401337+00:00\",\r\n \"endTime\": + \"2021-02-01T08:38:35.7963698+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"disk\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n @@ -1559,19 +1559,19 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-01-27T08:22:36.227731+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-02-01T08:38:35.6557574+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"b0d6affa-aeeb-4a8e-a5a7-945941801832\",\r\n \"networkAccessPolicy\": - \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"31c876f8-4b3c-4bc3-a844-0d2e766338a7\"\r\n}" + \ \"uniqueId\": \"5e091a70-8644-4143-b354-3b9633b76ac5\",\r\n \"networkAccessPolicy\": + \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"1caf437d-1b0b-42c8-b909-e7885754d9cc\"\r\n}" headers: cache-control: - no-cache content-length: - - '1112' + - '1115' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:38 GMT + - Mon, 01 Feb 2021 08:38:37 GMT expires: - '-1' pragma: @@ -1588,7 +1588,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49983,Microsoft.Compute/GetOperation30Min;399854 + - Microsoft.Compute/GetOperation3Min;49991,Microsoft.Compute/GetOperation30Min;399989 status: code: 200 message: OK @@ -1606,9 +1606,9 @@ interactions: ParameterSetName: - -g -n --size-gb User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"disk\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk\",\r\n @@ -1618,19 +1618,19 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-01-27T08:22:36.227731+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-02-01T08:38:35.6557574+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"b0d6affa-aeeb-4a8e-a5a7-945941801832\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"5e091a70-8644-4143-b354-3b9633b76ac5\",\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '889' + - '890' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:38 GMT + - Mon, 01 Feb 2021 08:38:38 GMT expires: - '-1' pragma: @@ -1647,7 +1647,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4982,Microsoft.Compute/LowCostGet30Min;39793 + - Microsoft.Compute/LowCostGet3Min;4985,Microsoft.Compute/LowCostGet30Min;39973 status: code: 200 message: OK @@ -1665,7 +1665,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/disk?api-version=2020-05-01 response: @@ -1681,7 +1681,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:39 GMT + - Mon, 01 Feb 2021 08:38:39 GMT expires: - '-1' pragma: @@ -1709,9 +1709,9 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"disk\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk\",\r\n @@ -1721,19 +1721,19 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-01-27T08:22:36.227731+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-02-01T08:38:35.6557574+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"b0d6affa-aeeb-4a8e-a5a7-945941801832\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"5e091a70-8644-4143-b354-3b9633b76ac5\",\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '889' + - '890' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:39 GMT + - Mon, 01 Feb 2021 08:38:39 GMT expires: - '-1' pragma: @@ -1750,7 +1750,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4981,Microsoft.Compute/LowCostGet30Min;39792 + - Microsoft.Compute/LowCostGet3Min;4984,Microsoft.Compute/LowCostGet30Min;39972 status: code: 200 message: OK @@ -1776,7 +1776,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-01T08:36:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1785,7 +1785,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:40 GMT + - Mon, 01 Feb 2021 08:38:39 GMT expires: - '-1' pragma: @@ -1818,7 +1818,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 response: @@ -1826,12 +1826,12 @@ interactions: string: "{\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \ \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk\",\r\n - \ \"sourceUniqueId\": \"b0d6affa-aeeb-4a8e-a5a7-945941801832\"\r\n },\r\n + \ \"sourceUniqueId\": \"5e091a70-8644-4143-b354-3b9633b76ac5\"\r\n },\r\n \ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/127d6114-1682-4387-8de5-7d6cbfb7946b?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/e79721a6-b78d-4e0d-9bde-33e683a016e3?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1839,11 +1839,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:44 GMT + - Mon, 01 Feb 2021 08:38:44 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/127d6114-1682-4387-8de5-7d6cbfb7946b?monitor=true&api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/e79721a6-b78d-4e0d-9bde-33e683a016e3?monitor=true&api-version=2020-05-01 pragma: - no-cache server: @@ -1854,9 +1854,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7990 + - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7999 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 202 message: Accepted @@ -1874,26 +1874,26 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/127d6114-1682-4387-8de5-7d6cbfb7946b?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/e79721a6-b78d-4e0d-9bde-33e683a016e3?api-version=2020-05-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-27T08:22:44.7902573+00:00\",\r\n \"endTime\": - \"2021-01-27T08:22:45.5090187+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-02-01T08:38:45.3432935+00:00\",\r\n \"endTime\": + \"2021-02-01T08:38:46.0308418+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1\",\r\n \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk\",\r\n - \ \"sourceUniqueId\": \"b0d6affa-aeeb-4a8e-a5a7-945941801832\"\r\n },\r\n + \ \"sourceUniqueId\": \"5e091a70-8644-4143-b354-3b9633b76ac5\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-01-27T08:22:44.8058834+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-02-01T08:38:45.3589108+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"1266e83f-deb8-475f-9007-8acb1621a82b\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"ae62f53a-c770-4f48-b908-f8a70cbeeb11\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"127d6114-1682-4387-8de5-7d6cbfb7946b\"\r\n}" + \"e79721a6-b78d-4e0d-9bde-33e683a016e3\"\r\n}" headers: cache-control: - no-cache @@ -1902,7 +1902,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:46 GMT + - Mon, 01 Feb 2021 08:38:47 GMT expires: - '-1' pragma: @@ -1919,7 +1919,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49981,Microsoft.Compute/GetOperation30Min;399852 + - Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399987 status: code: 200 message: OK @@ -1937,7 +1937,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 response: @@ -1947,11 +1947,11 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk\",\r\n - \ \"sourceUniqueId\": \"b0d6affa-aeeb-4a8e-a5a7-945941801832\"\r\n },\r\n + \ \"sourceUniqueId\": \"5e091a70-8644-4143-b354-3b9633b76ac5\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-01-27T08:22:44.8058834+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-02-01T08:38:45.3589108+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"1266e83f-deb8-475f-9007-8acb1621a82b\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"ae62f53a-c770-4f48-b908-f8a70cbeeb11\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -1961,7 +1961,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:46 GMT + - Mon, 01 Feb 2021 08:38:47 GMT expires: - '-1' pragma: @@ -1978,7 +1978,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4979,Microsoft.Compute/LowCostGet30Min;39790 + - Microsoft.Compute/LowCostGet3Min;4982,Microsoft.Compute/LowCostGet30Min;39970 status: code: 200 message: OK @@ -2004,7 +2004,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-01T08:36:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2013,7 +2013,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:48 GMT + - Mon, 01 Feb 2021 08:38:47 GMT expires: - '-1' pragma: @@ -2047,7 +2047,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0?api-version=2020-09-30 response: @@ -2058,7 +2058,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-01-27T08:22:53.586332+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-01T08:38:54.3212355+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"hostCaching\": \"ReadWrite\",\r\n \ \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2066,15 +2066,15 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/0b39c2a7-3240-43f8-923d-d5ecbe2ce979?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/e83318a5-7a58-48d1-91bc-ca1aa0d1b345?api-version=2020-09-30 cache-control: - no-cache content-length: - - '1138' + - '1139' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:22:54 GMT + - Mon, 01 Feb 2021 08:38:54 GMT expires: - '-1' pragma: @@ -2087,7 +2087,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1197 + - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1199 x-ms-ratelimit-remaining-subscription-writes: - '1196' status: @@ -2107,22 +2107,22 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/0b39c2a7-3240-43f8-923d-d5ecbe2ce979?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/e83318a5-7a58-48d1-91bc-ca1aa0d1b345?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-27T08:22:53.586332+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"0b39c2a7-3240-43f8-923d-d5ecbe2ce979\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-01T08:38:54.3212355+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e83318a5-7a58-48d1-91bc-ca1aa0d1b345\"\r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:23:54 GMT + - Mon, 01 Feb 2021 08:39:55 GMT expires: - '-1' pragma: @@ -2139,7 +2139,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1181,Microsoft.Compute/GetOperationStatus30Min;4145 + - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4191 status: code: 200 message: OK @@ -2157,22 +2157,22 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/0b39c2a7-3240-43f8-923d-d5ecbe2ce979?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/e83318a5-7a58-48d1-91bc-ca1aa0d1b345?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-27T08:22:53.586332+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"0b39c2a7-3240-43f8-923d-d5ecbe2ce979\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-01T08:38:54.3212355+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e83318a5-7a58-48d1-91bc-ca1aa0d1b345\"\r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:24:54 GMT + - Mon, 01 Feb 2021 08:40:56 GMT expires: - '-1' pragma: @@ -2189,7 +2189,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1182,Microsoft.Compute/GetOperationStatus30Min;4139 + - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4192 status: code: 200 message: OK @@ -2207,22 +2207,22 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/0b39c2a7-3240-43f8-923d-d5ecbe2ce979?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/e83318a5-7a58-48d1-91bc-ca1aa0d1b345?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-27T08:22:53.586332+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"0b39c2a7-3240-43f8-923d-d5ecbe2ce979\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-01T08:38:54.3212355+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e83318a5-7a58-48d1-91bc-ca1aa0d1b345\"\r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:25:54 GMT + - Mon, 01 Feb 2021 08:41:57 GMT expires: - '-1' pragma: @@ -2239,7 +2239,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;4133 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4191 status: code: 200 message: OK @@ -2257,22 +2257,22 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/0b39c2a7-3240-43f8-923d-d5ecbe2ce979?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/e83318a5-7a58-48d1-91bc-ca1aa0d1b345?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-27T08:22:53.586332+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"0b39c2a7-3240-43f8-923d-d5ecbe2ce979\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-01T08:38:54.3212355+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e83318a5-7a58-48d1-91bc-ca1aa0d1b345\"\r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:26:56 GMT + - Mon, 01 Feb 2021 08:42:57 GMT expires: - '-1' pragma: @@ -2289,7 +2289,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;4129 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4189 status: code: 200 message: OK @@ -2307,22 +2307,22 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/0b39c2a7-3240-43f8-923d-d5ecbe2ce979?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/e83318a5-7a58-48d1-91bc-ca1aa0d1b345?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-27T08:22:53.586332+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"0b39c2a7-3240-43f8-923d-d5ecbe2ce979\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-01T08:38:54.3212355+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e83318a5-7a58-48d1-91bc-ca1aa0d1b345\"\r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:27:56 GMT + - Mon, 01 Feb 2021 08:43:58 GMT expires: - '-1' pragma: @@ -2339,7 +2339,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;4125 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4187 status: code: 200 message: OK @@ -2357,22 +2357,22 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/0b39c2a7-3240-43f8-923d-d5ecbe2ce979?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/e83318a5-7a58-48d1-91bc-ca1aa0d1b345?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-27T08:22:53.586332+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"0b39c2a7-3240-43f8-923d-d5ecbe2ce979\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-01T08:38:54.3212355+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e83318a5-7a58-48d1-91bc-ca1aa0d1b345\"\r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:28:56 GMT + - Mon, 01 Feb 2021 08:44:59 GMT expires: - '-1' pragma: @@ -2389,7 +2389,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4121 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4185 status: code: 200 message: OK @@ -2407,14 +2407,14 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/0b39c2a7-3240-43f8-923d-d5ecbe2ce979?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/e83318a5-7a58-48d1-91bc-ca1aa0d1b345?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-27T08:22:53.586332+00:00\",\r\n \"endTime\": - \"2021-01-27T08:29:39.0712585+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"0b39c2a7-3240-43f8-923d-d5ecbe2ce979\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-01T08:38:54.3212355+00:00\",\r\n \"endTime\": + \"2021-02-01T08:45:40.381493+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"e83318a5-7a58-48d1-91bc-ca1aa0d1b345\"\r\n}" headers: cache-control: - no-cache @@ -2423,7 +2423,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:29:57 GMT + - Mon, 01 Feb 2021 08:46:00 GMT expires: - '-1' pragma: @@ -2440,7 +2440,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;4116 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4183 status: code: 200 message: OK @@ -2458,7 +2458,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0?api-version=2020-09-30 response: @@ -2469,7 +2469,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-01-27T08:22:53.586332+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-01T08:38:54.3212355+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 10,\r\n \"hostCaching\": \"ReadWrite\",\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2479,11 +2479,11 @@ interactions: cache-control: - no-cache content-length: - - '1164' + - '1165' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:29:58 GMT + - Mon, 01 Feb 2021 08:46:00 GMT expires: - '-1' pragma: @@ -2500,7 +2500,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9978 + - Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9996 status: code: 200 message: OK @@ -2526,7 +2526,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-27T08:20:44Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-01T08:36:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2535,7 +2535,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:29:58 GMT + - Mon, 01 Feb 2021 08:46:01 GMT expires: - '-1' pragma: @@ -2569,9 +2569,9 @@ interactions: ParameterSetName: - -g -n --gallery-image-reference User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d4?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d4?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"d4\",\r\n \"location\": \"westus\",\r\n \"tags\": @@ -2583,7 +2583,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/c87e4875-d6b6-4464-9580-b93e12af8947?api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/408d8e46-eb63-45eb-8d81-a7aa92f27ccc?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -2591,11 +2591,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:30:02 GMT + - Mon, 01 Feb 2021 08:46:06 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/c87e4875-d6b6-4464-9580-b93e12af8947?monitor=true&api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/408d8e46-eb63-45eb-8d81-a7aa92f27ccc?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -2606,7 +2606,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7976 + - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7993 x-ms-ratelimit-remaining-subscription-writes: - '1196' status: @@ -2626,13 +2626,13 @@ interactions: ParameterSetName: - -g -n --gallery-image-reference User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/c87e4875-d6b6-4464-9580-b93e12af8947?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/408d8e46-eb63-45eb-8d81-a7aa92f27ccc?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-27T08:30:03.5665719+00:00\",\r\n \"endTime\": - \"2021-01-27T08:30:04.582173+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-02-01T08:46:06.8023716+00:00\",\r\n \"endTime\": + \"2021-02-01T08:46:07.6930067+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d4\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n @@ -2643,20 +2643,20 @@ interactions: \ },\r\n \"galleryImageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-27T08:30:03.5977705+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-02-01T08:46:06.8336416+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"9d714e1b-da26-4655-8248-c0182ae0973e\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"cfd6b3ec-824b-405f-b729-bf83c318d899\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"c87e4875-d6b6-4464-9580-b93e12af8947\"\r\n}" + \ },\r\n \"name\": \"408d8e46-eb63-45eb-8d81-a7aa92f27ccc\"\r\n}" headers: cache-control: - no-cache content-length: - - '1744' + - '1745' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:30:05 GMT + - Mon, 01 Feb 2021 08:46:08 GMT expires: - '-1' pragma: @@ -2673,7 +2673,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49980,Microsoft.Compute/GetOperation30Min;399803 + - Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399971 status: code: 200 message: OK @@ -2691,9 +2691,9 @@ interactions: ParameterSetName: - -g -n --gallery-image-reference User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d4?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d4?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"d4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d4\",\r\n @@ -2705,9 +2705,9 @@ interactions: \ },\r\n \"galleryImageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-01-27T08:30:03.5977705+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-02-01T08:46:06.8336416+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"9d714e1b-da26-4655-8248-c0182ae0973e\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"cfd6b3ec-824b-405f-b729-bf83c318d899\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: @@ -2717,7 +2717,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:30:05 GMT + - Mon, 01 Feb 2021 08:46:08 GMT expires: - '-1' pragma: @@ -2734,7 +2734,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4996,Microsoft.Compute/LowCostGet30Min;39763 + - Microsoft.Compute/LowCostGet3Min;4998,Microsoft.Compute/LowCostGet30Min;39969 status: code: 200 message: OK @@ -2758,9 +2758,9 @@ interactions: ParameterSetName: - -g -n --size-gb --max-shares -l User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"d6\",\r\n \"location\": \"centraluseuap\",\r\n @@ -2771,7 +2771,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/040f312a-603a-41fa-8624-f61cf9805333?api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/e5e663ae-0cbe-4b52-9b17-596003555261?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -2779,11 +2779,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:30:10 GMT + - Mon, 01 Feb 2021 08:46:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/040f312a-603a-41fa-8624-f61cf9805333?monitor=true&api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/e5e663ae-0cbe-4b52-9b17-596003555261?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -2814,13 +2814,13 @@ interactions: ParameterSetName: - -g -n --size-gb --max-shares -l User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/040f312a-603a-41fa-8624-f61cf9805333?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/e5e663ae-0cbe-4b52-9b17-596003555261?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-27T08:30:11.4298912+00:00\",\r\n \"endTime\": - \"2021-01-27T08:30:11.6149352+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-02-01T08:46:15.9200548+00:00\",\r\n \"endTime\": + \"2021-02-01T08:46:16.1050553+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"centraluseuap\",\r\n @@ -2829,11 +2829,11 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 256,\r\n \ \"diskIOPSReadWrite\": 1100,\r\n \"diskMBpsReadWrite\": 125,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"maxShares\": - 2,\r\n \"timeCreated\": \"2021-01-27T08:30:11.4348991+00:00\",\r\n \"provisioningState\": + 2,\r\n \"timeCreated\": \"2021-02-01T08:46:15.9250768+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 274877906944,\r\n \"uniqueId\": \"f447de4d-100d-4b8e-bf79-baa3df010a59\",\r\n + 274877906944,\r\n \"uniqueId\": \"3b22dd96-ff8e-4943-bff4-519572a53b75\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"040f312a-603a-41fa-8624-f61cf9805333\"\r\n}" + \ },\r\n \"name\": \"e5e663ae-0cbe-4b52-9b17-596003555261\"\r\n}" headers: cache-control: - no-cache @@ -2842,7 +2842,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:30:13 GMT + - Mon, 01 Feb 2021 08:46:17 GMT expires: - '-1' pragma: @@ -2859,7 +2859,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399961 + - Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399992 status: code: 200 message: OK @@ -2877,9 +2877,9 @@ interactions: ParameterSetName: - -g -n --size-gb --max-shares -l User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"d6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6\",\r\n @@ -2889,9 +2889,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 256,\r\n \ \"diskIOPSReadWrite\": 1100,\r\n \"diskMBpsReadWrite\": 125,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"maxShares\": - 2,\r\n \"timeCreated\": \"2021-01-27T08:30:11.4348991+00:00\",\r\n \"provisioningState\": + 2,\r\n \"timeCreated\": \"2021-02-01T08:46:15.9250768+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 274877906944,\r\n \"uniqueId\": \"f447de4d-100d-4b8e-bf79-baa3df010a59\",\r\n + 274877906944,\r\n \"uniqueId\": \"3b22dd96-ff8e-4943-bff4-519572a53b75\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}" headers: cache-control: @@ -2901,7 +2901,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:30:13 GMT + - Mon, 01 Feb 2021 08:46:18 GMT expires: - '-1' pragma: @@ -2918,7 +2918,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14995,Microsoft.Compute/LowCostGet30Min;119939 + - Microsoft.Compute/LowCostGet3Min;14995,Microsoft.Compute/LowCostGet30Min;119967 status: code: 200 message: OK @@ -2936,9 +2936,9 @@ interactions: ParameterSetName: - -g -n --max-shares User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"d6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6\",\r\n @@ -2948,9 +2948,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 256,\r\n \ \"diskIOPSReadWrite\": 1100,\r\n \"diskMBpsReadWrite\": 125,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"maxShares\": - 2,\r\n \"timeCreated\": \"2021-01-27T08:30:11.4348991+00:00\",\r\n \"provisioningState\": + 2,\r\n \"timeCreated\": \"2021-02-01T08:46:15.9250768+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 274877906944,\r\n \"uniqueId\": \"f447de4d-100d-4b8e-bf79-baa3df010a59\",\r\n + 274877906944,\r\n \"uniqueId\": \"3b22dd96-ff8e-4943-bff4-519572a53b75\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}" headers: cache-control: @@ -2960,7 +2960,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:30:15 GMT + - Mon, 01 Feb 2021 08:46:19 GMT expires: - '-1' pragma: @@ -2977,7 +2977,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14994,Microsoft.Compute/LowCostGet30Min;119938 + - Microsoft.Compute/LowCostGet3Min;14994,Microsoft.Compute/LowCostGet30Min;119966 status: code: 200 message: OK @@ -2986,7 +2986,7 @@ interactions: "properties": {"creationData": {"createOption": "Empty"}, "diskSizeGB": 256, "diskIOPSReadWrite": 1100, "diskMBpsReadWrite": 125, "encryption": {"type": "EncryptionAtRestWithPlatformKey"}, "maxShares": 1, "networkAccessPolicy": "AllowAll", - "tier": "P15"}}' + "tier": "P15", "burstingEnabled": false}}' headers: Accept: - application/json @@ -2997,15 +2997,15 @@ interactions: Connection: - keep-alive Content-Length: - - '329' + - '355' Content-Type: - application/json ParameterSetName: - -g -n --max-shares User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"d6\",\r\n \"location\": \"centraluseuap\",\r\n @@ -3017,7 +3017,7 @@ interactions: \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/a6f075c9-dea0-4c32-a8bd-13eaeb6f1e3a?api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/75ed8daf-7a36-4bc7-816d-4919f24f0abc?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -3025,11 +3025,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:30:16 GMT + - Mon, 01 Feb 2021 08:46:21 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/a6f075c9-dea0-4c32-a8bd-13eaeb6f1e3a?monitor=true&api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/75ed8daf-7a36-4bc7-816d-4919f24f0abc?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -3060,13 +3060,13 @@ interactions: ParameterSetName: - -g -n --max-shares User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/a6f075c9-dea0-4c32-a8bd-13eaeb6f1e3a?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/75ed8daf-7a36-4bc7-816d-4919f24f0abc?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-27T08:30:17.0960301+00:00\",\r\n \"endTime\": - \"2021-01-27T08:30:17.3110253+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-02-01T08:46:22.0166509+00:00\",\r\n \"endTime\": + \"2021-02-01T08:46:22.2166297+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"centraluseuap\",\r\n @@ -3075,11 +3075,11 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 256,\r\n \ \"diskIOPSReadWrite\": 1100,\r\n \"diskMBpsReadWrite\": 125,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"maxShares\": - 1,\r\n \"timeCreated\": \"2021-01-27T08:30:11.4348991+00:00\",\r\n \"provisioningState\": + 1,\r\n \"timeCreated\": \"2021-02-01T08:46:15.9250768+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 274877906944,\r\n \"uniqueId\": \"f447de4d-100d-4b8e-bf79-baa3df010a59\",\r\n + 274877906944,\r\n \"uniqueId\": \"3b22dd96-ff8e-4943-bff4-519572a53b75\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"a6f075c9-dea0-4c32-a8bd-13eaeb6f1e3a\"\r\n}" + \ },\r\n \"name\": \"75ed8daf-7a36-4bc7-816d-4919f24f0abc\"\r\n}" headers: cache-control: - no-cache @@ -3088,7 +3088,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:30:18 GMT + - Mon, 01 Feb 2021 08:46:23 GMT expires: - '-1' pragma: @@ -3105,7 +3105,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399959 + - Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399990 status: code: 200 message: OK @@ -3123,9 +3123,9 @@ interactions: ParameterSetName: - -g -n --max-shares User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"d6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6\",\r\n @@ -3135,9 +3135,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 256,\r\n \ \"diskIOPSReadWrite\": 1100,\r\n \"diskMBpsReadWrite\": 125,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"maxShares\": - 1,\r\n \"timeCreated\": \"2021-01-27T08:30:11.4348991+00:00\",\r\n \"provisioningState\": + 1,\r\n \"timeCreated\": \"2021-02-01T08:46:15.9250768+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 274877906944,\r\n \"uniqueId\": \"f447de4d-100d-4b8e-bf79-baa3df010a59\",\r\n + 274877906944,\r\n \"uniqueId\": \"3b22dd96-ff8e-4943-bff4-519572a53b75\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}" headers: cache-control: @@ -3147,7 +3147,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Jan 2021 08:30:19 GMT + - Mon, 01 Feb 2021 08:46:23 GMT expires: - '-1' pragma: @@ -3164,7 +3164,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14992,Microsoft.Compute/LowCostGet30Min;119936 + - Microsoft.Compute/LowCostGet3Min;14992,Microsoft.Compute/LowCostGet30Min;119964 status: code: 200 message: OK From c37e8e8fe6e6ede7b0f47c5aa2e414b7aa35050f Mon Sep 17 00:00:00 2001 From: Feiyue Yu Date: Thu, 4 Feb 2021 12:45:26 +0800 Subject: [PATCH 07/18] update --- .../azure/cli/command_modules/vm/custom.py | 4 +- .../test_gallery_image_version_vhd.yaml | 1872 +++++++++++++++++ .../vm/tests/latest/test_vm_commands.py | 4 +- 3 files changed, 1877 insertions(+), 3 deletions(-) create mode 100644 src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_image_version_vhd.yaml diff --git a/src/azure-cli/azure/cli/command_modules/vm/custom.py b/src/azure-cli/azure/cli/command_modules/vm/custom.py index e5920e765bf..20f705171f2 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/custom.py +++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py @@ -3348,7 +3348,7 @@ def create_image_version(cmd, resource_group_name, gallery_name, gallery_image_n for i, s in enumerate(data_snapshots): data_disk_images.append(GalleryDataDiskImage(source=GalleryArtifactVersionSource(id=s), lun=data_snapshot_luns[i])) - # from vhd + # from vhd, only support os image now if cmd.supported_api_version(min_api='2020-09-30', operation_group='gallery_image_versions'): if vhd and vhd_storage_account is None or vhd is None and vhd_storage_account: raise ValidationError('--vhd and --vhd-storage-account should be used together.') @@ -3357,7 +3357,7 @@ def create_image_version(cmd, resource_group_name, gallery_name, gallery_image_n vhd_storage_account = resource_id( subscription=get_subscription_id(cmd.cli_ctx), resource_group=resource_group_name, namespace='Microsoft.Storage', type='storageAccounts', name=vhd_storage_account) - source = GalleryArtifactVersionSource(id=vhd_storage_account, uri=vhd) + os_disk_image = GalleryOSDiskImage(source=GalleryArtifactVersionSource(id=vhd_storage_account, uri=vhd)) storage_profile = GalleryImageVersionStorageProfile(source=source, os_disk_image=os_disk_image, data_disk_images=data_disk_images) diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_image_version_vhd.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_image_version_vhd.yaml new file mode 100644 index 00000000000..4912a84945b --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_image_version_vhd.yaml @@ -0,0 +1,1872 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001?api-version=2020-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001","name":"cli_test_gallery_image_version_vhd000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-04T03:54:16Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 04 Feb 2021 03:54:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.22.0 + method: GET + uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-compute/quickstart-templates/aliases.json + response: + body: + string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n + \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\": + {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\": + \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": + {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n + \ \"sku\": \"7.5\",\n \"version\": \"latest\"\n },\n + \ \"CoreOS\": {\n \"publisher\": \"CoreOS\",\n \"offer\": + \"CoreOS\",\n \"sku\": \"Stable\",\n \"version\": \"latest\"\n + \ },\n \"Debian\": {\n \"publisher\": \"Debian\",\n + \ \"offer\": \"debian-10\",\n \"sku\": \"10\",\n \"version\": + \"latest\"\n },\n \"openSUSE-Leap\": {\n \"publisher\": + \"SUSE\",\n \"offer\": \"openSUSE-Leap\",\n \"sku\": + \"42.3\",\n \"version\": \"latest\"\n },\n \"RHEL\": + {\n \"publisher\": \"RedHat\",\n \"offer\": \"RHEL\",\n + \ \"sku\": \"7-LVM\",\n \"version\": \"latest\"\n },\n + \ \"SLES\": {\n \"publisher\": \"SUSE\",\n \"offer\": + \"SLES\",\n \"sku\": \"15\",\n \"version\": \"latest\"\n + \ },\n \"UbuntuLTS\": {\n \"publisher\": \"Canonical\",\n + \ \"offer\": \"UbuntuServer\",\n \"sku\": \"18.04-LTS\",\n + \ \"version\": \"latest\"\n }\n },\n \"Windows\": + {\n \"Win2019Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n + \ \"offer\": \"WindowsServer\",\n \"sku\": \"2019-Datacenter\",\n + \ \"version\": \"latest\"\n },\n \"Win2016Datacenter\": + {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": + \"WindowsServer\",\n \"sku\": \"2016-Datacenter\",\n \"version\": + \"latest\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2012-R2-Datacenter\",\n \"version\": \"latest\"\n },\n + \ \"Win2012Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n + \ \"offer\": \"WindowsServer\",\n \"sku\": \"2012-Datacenter\",\n + \ \"version\": \"latest\"\n },\n \"Win2008R2SP1\": + {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": + \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n \"version\": + \"latest\"\n }\n }\n }\n }\n }\n}\n" + headers: + accept-ranges: + - bytes + access-control-allow-origin: + - '*' + cache-control: + - max-age=300 + connection: + - keep-alive + content-length: + - '2501' + content-security-policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + content-type: + - text/plain; charset=utf-8 + date: + - Thu, 04 Feb 2021 03:54:20 GMT + etag: + - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" + expires: + - Thu, 04 Feb 2021 03:59:20 GMT + source-age: + - '117' + strict-transport-security: + - max-age=31536000 + vary: + - Authorization,Accept-Encoding, Accept-Encoding + via: + - 1.1 varnish + x-cache: + - HIT + x-cache-hits: + - '1' + x-content-type-options: + - nosniff + x-fastly-request-id: + - 41dcfcbaee8fbb35bf6ad913fa2eed0a6b4414a7 + x-frame-options: + - deny + x-github-request-id: + - 5422:73CE:1325FD:147511:601AFDDB + x-served-by: + - cache-sin18020-SIN + x-timer: + - S1612410860.388120,VS0,VE1 + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key + User-Agent: + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-storage/16.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Storage/storageAccounts?api-version=2019-06-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 04 Feb 2021 03:54:20 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json, text/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key + User-Agent: + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 04 Feb 2021 03:54:20 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {}, "variables": {}, "resources": + [{"type": "Microsoft.Storage/storageAccounts", "name": "vhdstorageb2021609b92761", + "apiVersion": "2015-06-15", "location": "westus", "tags": {}, "dependsOn": [], + "properties": {"accountType": "Premium_LRS"}}, {"name": "vm1VNET", "type": "Microsoft.Network/virtualNetworks", + "location": "westus", "apiVersion": "2015-06-15", "dependsOn": [], "tags": {}, + "properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "subnets": + [{"name": "vm1Subnet", "properties": {"addressPrefix": "10.0.0.0/24"}}]}}, {"type": + "Microsoft.Network/networkSecurityGroups", "name": "vm1NSG", "apiVersion": "2015-06-15", + "location": "westus", "tags": {}, "dependsOn": []}, {"apiVersion": "2018-01-01", + "type": "Microsoft.Network/publicIPAddresses", "name": "vm1PublicIP", "location": + "westus", "tags": {}, "dependsOn": [], "properties": {"publicIPAllocationMethod": + null}}, {"apiVersion": "2015-06-15", "type": "Microsoft.Network/networkInterfaces", + "name": "vm1VMNic", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Network/virtualNetworks/vm1VNET", + "Microsoft.Network/networkSecurityGroups/vm1NSG", "Microsoft.Network/publicIpAddresses/vm1PublicIP"], + "properties": {"ipConfigurations": [{"name": "ipconfigvm1", "properties": {"privateIPAllocationMethod": + "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"}, + "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"}}}], + "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"}}}, + {"apiVersion": "2020-06-01", "type": "Microsoft.Compute/virtualMachines", "name": + "vm1", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Storage/storageAccounts/vhdstorageb2021609b92761", + "Microsoft.Network/networkInterfaces/vm1VMNic"], "properties": {"hardwareProfile": + {"vmSize": "Standard_DS1_v2"}, "networkProfile": {"networkInterfaces": [{"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"}]}, + "storageProfile": {"osDisk": {"createOption": "fromImage", "name": "osdisk_b2021609b9", + "caching": "ReadWrite", "vhd": {"uri": "https://vhdstorageb2021609b92761.blob.core.windows.net/vhds/osdisk_b2021609b9.vhd"}}, + "imageReference": {"publisher": "OpenLogic", "offer": "CentOS", "sku": "7.5", + "version": "latest"}}, "osProfile": {"computerName": "vm1", "adminUsername": + "fey", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": + {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj + fey@DESKTOP-ARGPJS4\n", "path": "/home/fey/.ssh/authorized_keys"}]}}}}}], "outputs": + {}}, "parameters": {}, "mode": "Incremental"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + Content-Length: + - '3721' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/vm_deploy_CoLUp0fDz6yy4ZeMzTMSQZjWwyzw0Hyb","name":"vm_deploy_CoLUp0fDz6yy4ZeMzTMSQZjWwyzw0Hyb","type":"Microsoft.Resources/deployments","properties":{"templateHash":"1886528260345570948","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-02-04T03:54:25.395907Z","duration":"PT2.6091459S","correlationId":"0d0db64f-d901-4103-8ba1-d5a23a5bc3e9","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Storage/storageAccounts/vhdstorageb2021609b92761","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstorageb2021609b92761"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/vm_deploy_CoLUp0fDz6yy4ZeMzTMSQZjWwyzw0Hyb/operationStatuses/08585891960226908815?api-version=2020-10-01 + cache-control: + - no-cache + content-length: + - '3165' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 04 Feb 2021 03:54:26 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585891960226908815?api-version=2020-10-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 04 Feb 2021 03:54:57 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585891960226908815?api-version=2020-10-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 04 Feb 2021 03:55:27 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585891960226908815?api-version=2020-10-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 04 Feb 2021 03:55:58 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585891960226908815?api-version=2020-10-01 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-cache + content-length: + - '22' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 04 Feb 2021 03:56:28 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/vm_deploy_CoLUp0fDz6yy4ZeMzTMSQZjWwyzw0Hyb","name":"vm_deploy_CoLUp0fDz6yy4ZeMzTMSQZjWwyzw0Hyb","type":"Microsoft.Resources/deployments","properties":{"templateHash":"1886528260345570948","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-02-04T03:56:15.4004564Z","duration":"PT1M52.6136953S","correlationId":"0d0db64f-d901-4103-8ba1-d5a23a5bc3e9","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Storage/storageAccounts/vhdstorageb2021609b92761","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstorageb2021609b92761"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Storage/storageAccounts/vhdstorageb2021609b92761"}]}}' + headers: + cache-control: + - no-cache + content-length: + - '4454' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 04 Feb 2021 03:56:28 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key + User-Agent: + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2020-06-01 + response: + body: + string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"dd742455-5934-49b1-ad94-bf2a5a8e17c9\",\r\n + \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n + \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": + \"OpenLogic\",\r\n \"offer\": \"CentOS\",\r\n \"sku\": \"7.5\",\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"7.5.201808150\"\r\n + \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"osdisk_b2021609b9\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": + {\r\n \"uri\": \"https://vhdstorageb2021609b92761.blob.core.windows.net/vhds/osdisk_b2021609b9.vhd\"\r\n + \ },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": + 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": + {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"fey\",\r\n + \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": + true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n + \ \"path\": \"/home/fey/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj + fey@DESKTOP-ARGPJS4\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": + \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\": + \"vm1\",\r\n \"osName\": \"centos\",\r\n \"osVersion\": \"7.5.1804\",\r\n + \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.53\",\r\n \"statuses\": + [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n + \ \"message\": \"Guest Agent is running\",\r\n \"time\": + \"2021-02-04T03:56:29+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osdisk_b2021609b9\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2021-02-04T03:55:00.6239034+00:00\"\r\n + \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": + \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2021-02-04T03:56:13.9079706+00:00\"\r\n + \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n + \ }\r\n ]\r\n }\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3578' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 04 Feb 2021 03:56:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31985 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json, text/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key + User-Agent: + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic?api-version=2018-01-01 + response: + body: + string: "{\r\n \"name\": \"vm1VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\r\n + \ \"etag\": \"W/\\\"0a873530-729d-4d60-8c8f-facc6eec02ea\\\"\",\r\n \"location\": + \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"resourceGuid\": \"a12d6e42-ba56-49b4-995f-d37100ddd002\",\r\n + \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm1\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\r\n + \ \"etag\": \"W/\\\"0a873530-729d-4d60-8c8f-facc6eec02ea\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"\r\n + \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"\r\n + \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": + [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": + \"x5tayipp5moexevrekdzmxpunh.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-31-85-17\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\r\n + \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/virtualMachines/vm1\"\r\n + \ }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2568' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 04 Feb 2021 03:56:31 GMT + etag: + - W/"0a873530-729d-4d60-8c8f-facc6eec02ea" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - c60984d2-4237-4290-8d7b-5256997d62d8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json, text/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key + User-Agent: + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP?api-version=2018-01-01 + response: + body: + string: "{\r\n \"name\": \"vm1PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\r\n + \ \"etag\": \"W/\\\"52b8b14c-97e3-40da-9c26-d453e865fd06\\\"\",\r\n \"location\": + \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"resourceGuid\": \"116e3994-9348-416f-8603-fa73dced2af9\",\r\n + \ \"ipAddress\": \"104.42.57.227\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n + \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n + \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '997' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 04 Feb 2021 03:56:31 GMT + etag: + - W/"52b8b14c-97e3-40da-9c26-d453e865fd06" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - f29eaf71-9991-4f2b-bf15-002dc0f342ab + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2020-06-01 + response: + body: + string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"dd742455-5934-49b1-ad94-bf2a5a8e17c9\",\r\n + \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n + \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": + \"OpenLogic\",\r\n \"offer\": \"CentOS\",\r\n \"sku\": \"7.5\",\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"7.5.201808150\"\r\n + \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"osdisk_b2021609b9\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": + {\r\n \"uri\": \"https://vhdstorageb2021609b92761.blob.core.windows.net/vhds/osdisk_b2021609b9.vhd\"\r\n + \ },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": + 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": + {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"fey\",\r\n + \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": + true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n + \ \"path\": \"/home/fey/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj + fey@DESKTOP-ARGPJS4\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": + \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n + \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2311' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 04 Feb 2021 03:56:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31984 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sig create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001?api-version=2020-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001","name":"cli_test_gallery_image_version_vhd000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-04T03:54:16Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 04 Feb 2021 03:56:32 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "tags": {}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sig create + Connection: + - keep-alive + Content-Length: + - '34' + Content-Type: + - application/json + ParameterSetName: + - -g --gallery-name + User-Agent: + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01 + response: + body: + string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n + \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_GNXCJMPT2IZB\"\r\n },\r\n + \ \"provisioningState\": \"Creating\"\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/7b7aa46e-42b5-4614-b5bc-58e47658da6b?api-version=2019-12-01 + cache-control: + - no-cache + content-length: + - '506' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 04 Feb 2021 03:56:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;298 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name + User-Agent: + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/7b7aa46e-42b5-4614-b5bc-58e47658da6b?api-version=2019-12-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-04T03:56:38.1342734+00:00\",\r\n \"endTime\": + \"2021-02-04T03:56:38.4155551+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"7b7aa46e-42b5-4614-b5bc-58e47658da6b\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '184' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 04 Feb 2021 03:57:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4169 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name + User-Agent: + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01 + response: + body: + string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n + \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_GNXCJMPT2IZB\"\r\n },\r\n + \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '507' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 04 Feb 2021 03:57:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2483 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-definition create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --os-type -p -f -s + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001?api-version=2020-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001","name":"cli_test_gallery_image_version_vhd000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-04T03:54:16Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 04 Feb 2021 03:57:11 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "tags": {}, "properties": {"osType": "Linux", "osState": + "Generalized", "hyperVGeneration": "V1", "identifier": {"publisher": "publisher1", + "offer": "offer1", "sku": "sku1"}, "disallowed": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-definition create + Connection: + - keep-alive + Content-Length: + - '216' + Content-Type: + - application/json + ParameterSetName: + - -g --gallery-name --gallery-image-definition --os-type -p -f -s + User-Agent: + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 + response: + body: + string: "{\r\n \"name\": \"image1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1\",\r\n + \ \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n + \ \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": + {\r\n \"publisher\": \"publisher1\",\r\n \"offer\": \"offer1\",\r\n + \ \"sku\": \"sku1\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/cf421cde-a3d2-4398-a8db-98be79948681?api-version=2020-09-30 + cache-control: + - no-cache + content-length: + - '599' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 04 Feb 2021 03:57:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;748 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-definition create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --os-type -p -f -s + User-Agent: + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/cf421cde-a3d2-4398-a8db-98be79948681?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-04T03:57:16.9011457+00:00\",\r\n \"endTime\": + \"2021-02-04T03:57:17.0261732+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"cf421cde-a3d2-4398-a8db-98be79948681\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '184' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 04 Feb 2021 03:57:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4167 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-definition create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --os-type -p -f -s + User-Agent: + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 + response: + body: + string: "{\r\n \"name\": \"image1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1\",\r\n + \ \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n + \ \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": + {\r\n \"publisher\": \"publisher1\",\r\n \"offer\": \"offer1\",\r\n + \ \"sku\": \"sku1\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n + \ }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '600' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 04 Feb 2021 03:57:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetGalleryImage3Min;595,Microsoft.Compute/GetGalleryImage30Min;2983 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --vhd + --vhd-storage-account --replica-count + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001?api-version=2020-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001","name":"cli_test_gallery_image_version_vhd000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-04T03:54:16Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 04 Feb 2021 03:57:48 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "tags": {}, "properties": {"publishingProfile": + {"targetRegions": [{"name": "westus"}], "replicaCount": 1}, "storageProfile": + {"osDiskImage": {"source": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Storage/storageAccounts/vhdstorageb2021609b92761", + "uri": "https://vhdstorageb2021609b92761.blob.core.windows.net/vhds/osdisk_b2021609b9.vhd"}}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + Content-Length: + - '493' + Content-Type: + - application/json + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --vhd + --vhd-storage-account --replica-count + User-Agent: + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2020-09-30 + response: + body: + string: "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0\",\r\n + \ \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": + \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"publishingProfile\": + {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West + US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": + \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-04T03:57:51.6054335+00:00\",\r\n + \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": + {\r\n \"osDiskImage\": {\r\n \"hostCaching\": \"ReadWrite\",\r\n + \ \"source\": {\r\n \"uri\": \"https://vhdstorageb2021609b92761.blob.core.windows.net/vhds/osdisk_b2021609b9.vhd\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Storage/storageAccounts/vhdstorageb2021609b92761\"\r\n + \ }\r\n }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/7e4f28c8-dd35-447a-9020-cdafc7d566d7?api-version=2020-09-30 + cache-control: + - no-cache + content-length: + - '1271' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 04 Feb 2021 03:57:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1198 + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --vhd + --vhd-storage-account --replica-count + User-Agent: + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/7e4f28c8-dd35-447a-9020-cdafc7d566d7?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-04T03:57:51.5898149+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"7e4f28c8-dd35-447a-9020-cdafc7d566d7\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 04 Feb 2021 03:58:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4166 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --vhd + --vhd-storage-account --replica-count + User-Agent: + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/7e4f28c8-dd35-447a-9020-cdafc7d566d7?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-04T03:57:51.5898149+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"7e4f28c8-dd35-447a-9020-cdafc7d566d7\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 04 Feb 2021 03:59:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4164 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --vhd + --vhd-storage-account --replica-count + User-Agent: + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/7e4f28c8-dd35-447a-9020-cdafc7d566d7?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-04T03:57:51.5898149+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"7e4f28c8-dd35-447a-9020-cdafc7d566d7\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 04 Feb 2021 04:00:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4170 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --vhd + --vhd-storage-account --replica-count + User-Agent: + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/7e4f28c8-dd35-447a-9020-cdafc7d566d7?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-04T03:57:51.5898149+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"7e4f28c8-dd35-447a-9020-cdafc7d566d7\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 04 Feb 2021 04:01:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4168 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --vhd + --vhd-storage-account --replica-count + User-Agent: + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/7e4f28c8-dd35-447a-9020-cdafc7d566d7?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-04T03:57:51.5898149+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"7e4f28c8-dd35-447a-9020-cdafc7d566d7\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 04 Feb 2021 04:02:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4166 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --vhd + --vhd-storage-account --replica-count + User-Agent: + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/7e4f28c8-dd35-447a-9020-cdafc7d566d7?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-04T03:57:51.5898149+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"7e4f28c8-dd35-447a-9020-cdafc7d566d7\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 04 Feb 2021 04:03:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4164 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --vhd + --vhd-storage-account --replica-count + User-Agent: + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/7e4f28c8-dd35-447a-9020-cdafc7d566d7?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-04T03:57:51.5898149+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"7e4f28c8-dd35-447a-9020-cdafc7d566d7\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 04 Feb 2021 04:04:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4162 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --vhd + --vhd-storage-account --replica-count + User-Agent: + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/7e4f28c8-dd35-447a-9020-cdafc7d566d7?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-04T03:57:51.5898149+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"7e4f28c8-dd35-447a-9020-cdafc7d566d7\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 04 Feb 2021 04:05:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4170 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --vhd + --vhd-storage-account --replica-count + User-Agent: + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/7e4f28c8-dd35-447a-9020-cdafc7d566d7?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-04T03:57:51.5898149+00:00\",\r\n \"endTime\": + \"2021-02-04T04:06:22.3106073+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"7e4f28c8-dd35-447a-9020-cdafc7d566d7\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '184' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 04 Feb 2021 04:06:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4168 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --vhd + --vhd-storage-account --replica-count + User-Agent: + - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2020-09-30 + response: + body: + string: "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0\",\r\n + \ \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": + \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"publishingProfile\": + {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West + US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": + \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-04T03:57:51.6054335+00:00\",\r\n + \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": + {\r\n \"osDiskImage\": {\r\n \"hostCaching\": \"ReadWrite\",\r\n + \ \"source\": {\r\n \"uri\": \"https://vhdstorageb2021609b92761.blob.core.windows.net/vhds/osdisk_b2021609b9.vhd\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Storage/storageAccounts/vhdstorageb2021609b92761\"\r\n + \ }\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n + \ }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1272' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 04 Feb 2021 04:06:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9988 + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py index a057c666162..9a2d6f59f68 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py @@ -3854,7 +3854,9 @@ def test_gallery_image_version_vhd(self, resource_group): }) self.cmd('sig create -g {rg} --gallery-name {gallery}') self.cmd('sig image-definition create -g {rg} --gallery-name {gallery} --gallery-image-definition image1 --os-type linux -p publisher1 -f offer1 -s sku1') - self.cmd('sig image-version create -g {rg} --gallery-name {gallery} --gallery-image-definition image1 --gallery-image-version 1.0.0 --vhd {vhd} --vhd-storage-account {stac} --replica-count 1') + self.cmd('sig image-version create -g {rg} --gallery-name {gallery} --gallery-image-definition image1 --gallery-image-version 1.0.0 --vhd {vhd} --vhd-storage-account {stac} --replica-count 1', checks=[ + self.check('storageProfile.osDiskImage.source.uri', vhd_uri) + ]) @ResourceGroupPreparer(name_prefix='cli_test_gallery_specialized_', location='eastus2') def test_gallery_specialized(self, resource_group): From 084da87b2b4d5225cb2198a3bdad667f2eaa9433 Mon Sep 17 00:00:00 2001 From: Feiyue Yu Date: Thu, 4 Feb 2021 13:25:31 +0800 Subject: [PATCH 08/18] help --- src/azure-cli/azure/cli/command_modules/vm/_help.py | 3 +++ src/azure-cli/azure/cli/command_modules/vm/_params.py | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/_help.py b/src/azure-cli/azure/cli/command_modules/vm/_help.py index f23f2c2a0de..71d03db367e 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/_help.py +++ b/src/azure-cli/azure/cli/command_modules/vm/_help.py @@ -678,6 +678,9 @@ - name: Add a new image version using disks with target regions and customer managed keys for encryption. You specify which disks in the image version to encrypt. Disks encrypted in one region must be encrypted in another region with a different disk encryption set. text: > az sig image-version create -g MyResourceGroup --gallery-image-version 1.0.0 --target-regions westus=2=standard eastus --target-region-encryption WestUSDiskEncryptionSet1,0,WestUSDiskEncryptionSet2 EastUSDiskEncryptionSet1,0,EastUSDiskEncryptionSet2 --gallery-name MyGallery --gallery-image-definition MyImage --os-snapshot /subscriptions/00000000-0000-0000-0000-00000000xxxx/resourceGroups/imageGroups/providers/Microsoft.Compute/disks/MyOSDisk --data-snapshots /subscriptions/00000000-0000-0000-0000-00000000xxxx/resourceGroups/imageGroups/providers/Microsoft.Compute/disks/MyDataDisk --data-snapshot-luns 0 + - name: Add a new image version from a VHD of an OS disk. + text: > + az sig image-version create -g MyResourceGroup --gallery-name MyGallery --gallery-image-definition MyImage --gallery-image-version 1.0.0 --vhd --vhd-storage-account account """ helps['sig image-version update'] = """ diff --git a/src/azure-cli/azure/cli/command_modules/vm/_params.py b/src/azure-cli/azure/cli/command_modules/vm/_params.py index 125b59fe76d..ba8b869d6b2 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/_params.py +++ b/src/azure-cli/azure/cli/command_modules/vm/_params.py @@ -897,8 +897,8 @@ def load_arguments(self, _): arg_type=get_enum_type(["Standard_LRS", "Standard_ZRS", "Premium_LRS"]), min_api='2019-03-01') c.argument('target_region_encryption', nargs='+', help='Space-separated list of customer managed keys for encrypting the OS and data disks in the gallery artifact for each region. Format for each region: `,,,,`. Use "null" as a placeholder.') - c.argument('vhd', help='Source VHD URI', min_api='2020-09-30') - c.argument('vhd_storage_account', help='Name or ID of storage account of source VHD URI', min_api='2020-09-30') + c.argument('vhd', help='Source VHD URI of OS disk', min_api='2020-09-30') + c.argument('vhd_storage_account', help='Name or ID of storage account of source VHD URI of OS disk', min_api='2020-09-30') with self.argument_context('sig image-version show') as c: c.argument('expand', help="The expand expression to apply on the operation, e.g. 'ReplicationStatus'") From 772a24832dfde365325a8351b77de27db28ac143 Mon Sep 17 00:00:00 2001 From: Feiyue Yu Date: Thu, 4 Feb 2021 14:25:45 +0800 Subject: [PATCH 09/18] style --- src/azure-cli/azure/cli/command_modules/vm/custom.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/custom.py b/src/azure-cli/azure/cli/command_modules/vm/custom.py index 6be5dd19586..f10b0afa05e 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/custom.py +++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py @@ -14,7 +14,7 @@ from __future__ import print_function # from .generated.custom import * # noqa: F403 -from azure.cli.core.azclierror import ValidationError + try: from .manual.custom import * # noqa: F403, pylint: disable=unused-import,unused-wildcard-import,wildcard-import @@ -38,6 +38,7 @@ from knack.util import CLIError from azure.cli.command_modules.vm._validators import _get_resource_group_from_vault_name +from azure.cli.core.azclierror import ValidationError from azure.cli.core.commands.validators import validate_file_or_dict from azure.cli.core.commands import LongRunningOperation, DeploymentOutputLongRunningOperation From 63147d9a9a2978c6d6ed19fe006a0faa1a09333c Mon Sep 17 00:00:00 2001 From: Feiyue Yu Date: Wed, 7 Apr 2021 16:54:32 +0800 Subject: [PATCH 10/18] test; rename --- .../azure/cli/command_modules/vm/_params.py | 4 +- .../azure/cli/command_modules/vm/custom.py | 16 +- .../latest/recordings/test_gallery_e2e.yaml | 2154 +++++++---------- .../test_gallery_image_version_vhd.yaml | 840 ++----- .../test_image_build_shared_image.yaml | 1068 ++++---- .../recordings/test_specialized_image.yaml | 708 +++--- .../test_vm_disk_max_shares_etc.yaml | 654 +++-- .../vm/tests/latest/test_vm_commands.py | 2 +- 8 files changed, 2314 insertions(+), 3132 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/_params.py b/src/azure-cli/azure/cli/command_modules/vm/_params.py index 348b62068cc..e5e5f8e2cde 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/_params.py +++ b/src/azure-cli/azure/cli/command_modules/vm/_params.py @@ -912,8 +912,8 @@ def load_arguments(self, _): arg_type=get_enum_type(["Standard_LRS", "Standard_ZRS", "Premium_LRS"]), min_api='2019-03-01') c.argument('target_region_encryption', nargs='+', help='Space-separated list of customer managed keys for encrypting the OS and data disks in the gallery artifact for each region. Format for each region: `,,,,`. Use "null" as a placeholder.') - c.argument('vhd', help='Source VHD URI of OS disk', min_api='2020-09-30') - c.argument('vhd_storage_account', help='Name or ID of storage account of source VHD URI of OS disk', min_api='2020-09-30') + c.argument('os_vhd', help='Source VHD URI of OS disk') + c.argument('os_vhd_storage_account', help='Name or ID of storage account of source VHD URI of OS disk') with self.argument_context('sig image-version show') as c: c.argument('expand', help="The expand expression to apply on the operation, e.g. 'ReplicationStatus'") diff --git a/src/azure-cli/azure/cli/command_modules/vm/custom.py b/src/azure-cli/azure/cli/command_modules/vm/custom.py index 82a5d5a7076..6077ea2c1e5 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/custom.py +++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py @@ -3352,7 +3352,7 @@ def create_image_version(cmd, resource_group_name, gallery_name, gallery_image_n location=None, target_regions=None, storage_account_type=None, end_of_life_date=None, exclude_from_latest=None, replica_count=None, tags=None, os_snapshot=None, data_snapshots=None, managed_image=None, data_snapshot_luns=None, - target_region_encryption=None, vhd=None, vhd_storage_account=None): + target_region_encryption=None, os_vhd=None, os_vhd_storage_account=None): # print(target_regions) from msrestazure.tools import resource_id, is_valid_resource_id from azure.cli.core.commands.client_factory import get_subscription_id @@ -3401,7 +3401,7 @@ def create_image_version(cmd, resource_group_name, gallery_name, gallery_image_n source=source, replica_count=replica_count, storage_account_type=storage_account_type) if cmd.supported_api_version(min_api='2019-07-01', operation_group='gallery_image_versions'): - if managed_image is None and os_snapshot is None and vhd is None: + if managed_image is None and os_snapshot is None and os_vhd is None: raise CLIError('usage error: Please provide --managed-image or --os-snapshot or --vhd') GalleryImageVersionStorageProfile = cmd.get_models('GalleryImageVersionStorageProfile') GalleryArtifactVersionSource = cmd.get_models('GalleryArtifactVersionSource') @@ -3425,14 +3425,14 @@ def create_image_version(cmd, resource_group_name, gallery_name, gallery_image_n lun=data_snapshot_luns[i])) # from vhd, only support os image now if cmd.supported_api_version(min_api='2020-09-30', operation_group='gallery_image_versions'): - if vhd and vhd_storage_account is None or vhd is None and vhd_storage_account: + if os_vhd and os_vhd_storage_account is None or os_vhd is None and os_vhd_storage_account: raise ValidationError('--vhd and --vhd-storage-account should be used together.') - if vhd and vhd_storage_account: - if not is_valid_resource_id(vhd_storage_account): - vhd_storage_account = resource_id( + if os_vhd and os_vhd_storage_account: + if not is_valid_resource_id(os_vhd_storage_account): + os_vhd_storage_account = resource_id( subscription=get_subscription_id(cmd.cli_ctx), resource_group=resource_group_name, - namespace='Microsoft.Storage', type='storageAccounts', name=vhd_storage_account) - os_disk_image = GalleryOSDiskImage(source=GalleryArtifactVersionSource(id=vhd_storage_account, uri=vhd)) + namespace='Microsoft.Storage', type='storageAccounts', name=os_vhd_storage_account) + os_disk_image = GalleryOSDiskImage(source=GalleryArtifactVersionSource(id=os_vhd_storage_account, uri=os_vhd)) storage_profile = GalleryImageVersionStorageProfile(source=source, os_disk_image=os_disk_image, data_disk_images=data_disk_images) diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_e2e.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_e2e.yaml index 1abd288010f..51a406aa890 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_e2e.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_e2e.yaml @@ -14,14 +14,14 @@ interactions: - -g --gallery-name User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-02-09T08:16:52Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:16:57 GMT + - Wed, 07 Apr 2021 06:38:28 GMT expires: - '-1' pragma: @@ -62,7 +62,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01 response: @@ -70,11 +70,11 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_3GTIWUN5P4S2\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_BLMSZYUHBZ7D\"\r\n },\r\n \ \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/4cbe641e-d279-4a2f-ac75-d4b9f0441297?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9e6e4567-73b2-4516-9bed-3b238988198a?api-version=2019-12-01 cache-control: - no-cache content-length: @@ -82,7 +82,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:17:04 GMT + - Wed, 07 Apr 2021 06:38:35 GMT expires: - '-1' pragma: @@ -97,7 +97,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1197' status: code: 201 message: Created @@ -115,23 +115,23 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/4cbe641e-d279-4a2f-ac75-d4b9f0441297?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9e6e4567-73b2-4516-9bed-3b238988198a?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T08:17:02.5514793+00:00\",\r\n \"endTime\": - \"2021-02-09T08:17:02.7545955+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"4cbe641e-d279-4a2f-ac75-d4b9f0441297\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:38:34.630165+00:00\",\r\n \"endTime\": + \"2021-04-07T06:38:34.8332992+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"9e6e4567-73b2-4516-9bed-3b238988198a\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:17:34 GMT + - Wed, 07 Apr 2021 06:39:05 GMT expires: - '-1' pragma: @@ -148,7 +148,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4190 + - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4198 status: code: 200 message: OK @@ -166,7 +166,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01 response: @@ -174,7 +174,7 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_3GTIWUN5P4S2\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_BLMSZYUHBZ7D\"\r\n },\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -184,7 +184,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:17:34 GMT + - Wed, 07 Apr 2021 06:39:06 GMT expires: - '-1' pragma: @@ -201,7 +201,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2493 + - Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2496 status: code: 200 message: OK @@ -219,16 +219,16 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries?api-version=2019-12-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"gallery_000002\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGDOXWNUPOQB5UE3LPZQBYKVWX44DASEYSM4ARDDQUFQ4CP2WK2DRK4MLR2QX6PMWME/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGWPCTGTBJQJZGAMMBFGMKFLW5EEJUF273P2L7QZLMHABKJQ7EMY2TUHFQCQHPVMFWR/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": - {\r\n \"uniqueName\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_3GTIWUN5P4S2\"\r\n + {\r\n \"uniqueName\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_BLMSZYUHBZ7D\"\r\n \ },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n \ }\r\n ]\r\n}" headers: @@ -239,7 +239,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:17:36 GMT + - Wed, 07 Apr 2021 06:39:06 GMT expires: - '-1' pragma: @@ -274,7 +274,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01 response: @@ -282,7 +282,7 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_3GTIWUN5P4S2\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_BLMSZYUHBZ7D\"\r\n },\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -292,7 +292,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:17:38 GMT + - Wed, 07 Apr 2021 06:39:08 GMT expires: - '-1' pragma: @@ -309,7 +309,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGallery3Min;345,Microsoft.Compute/GetGallery30Min;2492 + - Microsoft.Compute/GetGallery3Min;345,Microsoft.Compute/GetGallery30Min;2495 status: code: 200 message: OK @@ -328,14 +328,14 @@ interactions: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-02-09T08:16:52Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -344,7 +344,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:17:38 GMT + - Wed, 07 Apr 2021 06:39:08 GMT expires: - '-1' pragma: @@ -378,7 +378,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -392,7 +392,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/d13aa934-3339-48c4-95d1-5d863d84fdfa?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e27f01ce-4247-4a96-93ea-e0aeab939711?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -400,7 +400,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:17:46 GMT + - Wed, 07 Apr 2021 06:39:15 GMT expires: - '-1' pragma: @@ -415,7 +415,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;749 x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1199' status: code: 201 message: Created @@ -433,14 +433,14 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/d13aa934-3339-48c4-95d1-5d863d84fdfa?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e27f01ce-4247-4a96-93ea-e0aeab939711?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T08:17:44.9903153+00:00\",\r\n \"endTime\": - \"2021-02-09T08:17:45.0840954+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"d13aa934-3339-48c4-95d1-5d863d84fdfa\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:39:14.4910922+00:00\",\r\n \"endTime\": + \"2021-04-07T06:39:14.6004685+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"e27f01ce-4247-4a96-93ea-e0aeab939711\"\r\n}" headers: cache-control: - no-cache @@ -449,7 +449,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:18:16 GMT + - Wed, 07 Apr 2021 06:39:46 GMT expires: - '-1' pragma: @@ -466,7 +466,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4188 + - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4196 status: code: 200 message: OK @@ -484,7 +484,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -504,7 +504,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:18:16 GMT + - Wed, 07 Apr 2021 06:39:47 GMT expires: - '-1' pragma: @@ -521,7 +521,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;596,Microsoft.Compute/GetGalleryImage30Min;2993 + - Microsoft.Compute/GetGalleryImage3Min;596,Microsoft.Compute/GetGalleryImage30Min;2996 status: code: 200 message: OK @@ -539,7 +539,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images?api-version=2020-09-30 response: @@ -553,7 +553,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:18:18 GMT + - Wed, 07 Apr 2021 06:39:49 GMT expires: - '-1' pragma: @@ -565,41 +565,42 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - cd93381a-a4bd-43c3-8451-f496eb43adbf - - 3e0814d8-8b4e-454f-9747-2411e9ced96b - - 49dd968c-6d00-4e24-a108-38df4dae1f2a - - 30fa335b-4786-40f8-ba4d-1799ff5ee249 - - 4009dd42-10c2-4c05-a8c8-82fc82f70c60 - - 84332720-491c-4bb4-8a3b-7d1d24b970c3 - - fb33ead1-cefa-42be-b505-ca1671d3d094 - - b0d7db3c-4a86-4b44-8e38-8da214ba4e13 - - 4ef7c266-331c-4561-8b87-9cab91a694d5 - - 3d97e208-a05e-4251-a039-b0efe5cc7d73 - - abb64e33-3b83-4d24-9fcc-b026590c0ce3 - - 41f42f5c-a21f-4784-b24d-f6376e974688 - - 451019d7-6024-4af2-b249-f3fd1eeeb7dc - - ec90aab3-d67b-48a4-94bb-c2aed453c99e - - 9f80c2d0-e373-4ef2-bc2d-2c67713d4b8e - - 884ff0ca-c344-4e19-99b0-b17fb4ac8653 - - ace3acb3-25fe-44d6-9e82-4d126f1bf21d - - 6cf88954-49e8-428c-aa81-63b8b5d401ec - - a5c7139f-e3fc-46b6-8c34-5ed3332615ad - - fa1490a8-748d-4a04-9de7-95530716a857 - - b56e28af-ffdf-496a-8147-863a55c055ea - - f5d83bbb-3770-4ccd-b239-70d4ec9ccd95 - - b3e8128f-3909-413d-8892-510e96788901 - - ff601b55-85ac-45a4-8702-cb78f3e324b9 - - 2804c1d2-7c0e-41db-80d7-5e36d25c2819 - - 33bd96a4-78fd-48f5-877d-1a4487335eae - - 03e4d0d4-a935-43a7-b6cb-2417785ef839 - - 119e4c47-9908-47c9-a0e8-deec5c3414cb - - 11ed3f54-dd96-4287-9199-a4892f627075 - - d52103fb-b906-4b61-87fc-29621d578aeb - - 4d2cdd79-a8a5-4b80-a5ef-280a5271c249 - - f358d65c-796d-438a-9253-fc212176dd53 - - 82b140ae-b9dc-42b2-aadb-9abe2849ba0c - - a2325a4c-d5d4-4b72-b9db-c0517fd280db - - f83ff3af-1444-4ec5-8d82-ab3234f6c410 + - 7cab6a03-24b5-43ef-a3e4-2df70be1eb41 + - a7f1343a-e3f0-43e2-9b90-ce07613ae73b + - 73da818d-f1b7-4853-81b5-f848ac72ebc6 + - 44c22bd8-5717-491d-92dc-951cd50512f1 + - c857e576-c1a5-4b37-9c8f-a589b11fb7c4 + - 4ad07927-635d-4de2-9dcd-1e72c9586058 + - 1aaef754-87ea-4c6e-b3ef-26a8ce6ebd3d + - 8e4a4e24-48bf-47b2-adca-727db5be227f + - c5844c28-f840-4c6e-94d2-276157b28c78 + - f5a9017b-daf6-4035-88cd-252894fa4a3d + - dfba4eee-cf31-425e-8e20-96c4ad556d69 + - 145ca64e-4005-4779-832b-d06715263001 + - 081494e9-0097-48f3-9bf5-c1debbaaa498 + - 29b77308-9739-41c1-931b-361c6e3edd19 + - 1507ef17-c9f1-46e2-a826-2edc7be97b0a + - c073be99-5e46-4bca-b596-95f96395d243 + - 2fd63acc-fbd1-4ee0-8fa3-2af8f5f32931 + - 33b1b8ee-ccc1-4fd1-9b70-4ee87607d834 + - a716190d-07ea-4e36-84d2-f97032be0b3b + - 95a1d347-74d0-40ee-b1de-ed257950e838 + - 12dd82b2-0edb-47bb-816a-53ba23990302 + - e47236bc-66ba-4632-9852-51baa0976549 + - 01380b5c-466c-4768-a1e4-968e38758291 + - b22a114c-71b3-4a3f-a61c-f8a8c56961f5 + - 573b4098-2b70-444a-8377-e9ee5006bec9 + - 9ccb6cc3-41cc-4c31-8201-8fc0eadc09a5 + - 88ea49c2-e4bf-49b7-a1d6-908ad768baba + - 3ac2d4f9-b3f4-46ca-9de6-7fb7d1fcaf85 + - e785a6d1-e7ad-43db-9bd3-7e6f2af21f7b + - edddfc7c-c7c1-4a24-8372-91761f410e57 + - 36cca465-acc7-4988-93aa-150a873910f2 + - 6d75a9f6-3ad1-42b0-bac9-922326089d08 + - 33f64fd5-1271-4c7e-9ee2-fa36840a1c8d + - 811d5d01-5ddb-49f5-9516-622cd7844f99 + - 0d30fbff-5f7b-4c4e-a204-99eb7c27e75b + - c7096877-0115-4671-a5ad-6a268b5b105b status: code: 200 message: OK @@ -617,7 +618,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -637,7 +638,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:18:18 GMT + - Wed, 07 Apr 2021 06:39:49 GMT expires: - '-1' pragma: @@ -654,7 +655,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;595,Microsoft.Compute/GetGalleryImage30Min;2992 + - Microsoft.Compute/GetGalleryImage3Min;595,Microsoft.Compute/GetGalleryImage30Min;2995 status: code: 200 message: OK @@ -673,14 +674,14 @@ interactions: - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-02-09T08:16:52Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -689,7 +690,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:18:19 GMT + - Wed, 07 Apr 2021 06:39:50 GMT expires: - '-1' pragma: @@ -713,7 +714,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.25.1 + - python-requests/2.22.0 method: GET uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-compute/quickstart-templates/aliases.json response: @@ -768,35 +769,35 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Tue, 09 Feb 2021 08:18:20 GMT + - Wed, 07 Apr 2021 06:39:51 GMT etag: - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" expires: - - Tue, 09 Feb 2021 08:23:20 GMT + - Wed, 07 Apr 2021 06:44:51 GMT source-age: - - '92' + - '288' strict-transport-security: - max-age=31536000 vary: - - Authorization,Accept-Encoding, Accept-Encoding + - Authorization,Accept-Encoding via: - 1.1 varnish x-cache: - HIT x-cache-hits: - - '169' + - '1' x-content-type-options: - nosniff x-fastly-request-id: - - f18aabfce3ce4b16942eb75361bfb8f809c1c432 + - b30fd0a40a078540cf16b0bcc39f905e7fcf9d83 x-frame-options: - deny x-github-request-id: - - 5F66:4D94:DC2B:ECD5:60217BA5 + - F382:5F6B:C6E59:EBF3D:606D47A2 x-served-by: - - cache-sin18031-SIN + - cache-qpg1231-QPG x-timer: - - S1612858700.281967,VS0,VE0 + - S1617777591.036642,VS0,VE0 x-xss-protection: - 1; mode=block status: @@ -816,7 +817,7 @@ interactions: ParameterSetName: - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 response: @@ -830,7 +831,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:18:20 GMT + - Wed, 07 Apr 2021 06:39:50 GMT expires: - '-1' pragma: @@ -872,8 +873,8 @@ interactions: "createOption": "empty", "diskSizeGB": 10}]}, "osProfile": {"computerName": "vm1", "adminUsername": "clitest1", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj - fey@DESKTOP-ARGPJS4\n", "path": "/home/clitest1/.ssh/authorized_keys"}]}}}}}], - "outputs": {}}, "parameters": {}, "mode": "Incremental"}}' + fey@DESKTOP-ARGPJS4\n", "path": "/home/clitest1/.ssh/authorized_keys"}]}}}, + "securityProfile": {}}}], "outputs": {}}, "parameters": {}, "mode": "Incremental"}}' headers: Accept: - application/json @@ -884,32 +885,32 @@ interactions: Connection: - keep-alive Content-Length: - - '3522' + - '3545' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_fd6gCm6bBhyNvnYh21kUYZxsnZ1KlC9K","name":"vm_deploy_fd6gCm6bBhyNvnYh21kUYZxsnZ1KlC9K","type":"Microsoft.Resources/deployments","properties":{"templateHash":"3871698068255575325","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-02-09T08:18:25.3748123Z","duration":"PT2.6272533S","correlationId":"04134928-9319-474e-b710-df1941ad87b3","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus2"]},{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_dZaZiD9XSGSkvu98C1fdAIsn7AuRootI","name":"vm_deploy_dZaZiD9XSGSkvu98C1fdAIsn7AuRootI","type":"Microsoft.Resources/deployments","properties":{"templateHash":"10823136096144899161","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-07T06:39:56.0359189Z","duration":"PT2.6340007S","correlationId":"d8c1c2f9-16ff-428f-bcef-7ce9400fd316","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus2"]},{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_fd6gCm6bBhyNvnYh21kUYZxsnZ1KlC9K/operationStatuses/08585887481827300698?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_dZaZiD9XSGSkvu98C1fdAIsn7AuRootI/operationStatuses/08585838292920757108?api-version=2020-10-01 cache-control: - no-cache content-length: - - '2747' + - '2748' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:18:27 GMT + - Wed, 07 Apr 2021 06:39:57 GMT expires: - '-1' pragma: @@ -919,7 +920,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1197' status: code: 201 message: Created @@ -938,52 +939,9 @@ interactions: - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585887481827300698?api-version=2020-10-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 09 Feb 2021 08:18:57 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule - User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585887481827300698?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585838292920757108?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -995,7 +953,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:19:28 GMT + - Wed, 07 Apr 2021 06:40:28 GMT expires: - '-1' pragma: @@ -1024,9 +982,9 @@ interactions: - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585887481827300698?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585838292920757108?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -1038,7 +996,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:19:59 GMT + - Wed, 07 Apr 2021 06:40:58 GMT expires: - '-1' pragma: @@ -1067,21 +1025,21 @@ interactions: - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_fd6gCm6bBhyNvnYh21kUYZxsnZ1KlC9K","name":"vm_deploy_fd6gCm6bBhyNvnYh21kUYZxsnZ1KlC9K","type":"Microsoft.Resources/deployments","properties":{"templateHash":"3871698068255575325","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-02-09T08:19:36.9785933Z","duration":"PT1M14.2310343S","correlationId":"04134928-9319-474e-b710-df1941ad87b3","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus2"]},{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_dZaZiD9XSGSkvu98C1fdAIsn7AuRootI","name":"vm_deploy_dZaZiD9XSGSkvu98C1fdAIsn7AuRootI","type":"Microsoft.Resources/deployments","properties":{"templateHash":"10823136096144899161","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-07T06:40:43.7307499Z","duration":"PT50.3288317S","correlationId":"d8c1c2f9-16ff-428f-bcef-7ce9400fd316","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus2"]},{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}' headers: cache-control: - no-cache content-length: - - '3814' + - '3813' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:19:59 GMT + - Wed, 07 Apr 2021 06:40:59 GMT expires: - '-1' pragma: @@ -1109,28 +1067,28 @@ interactions: ParameterSetName: - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"d572af2d-2b9f-4411-912d-c1f1c980006f\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"8254bb93-e3e4-4193-9f73-2711f8e1d2cc\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202101290\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"vm1_OsDisk_1_64f77320f9104856b874295ba420a724\",\r\n + \"18.04.202103250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"vm1_disk1_26aaac1b172342dc9891632f07e408ed\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_64f77320f9104856b874295ba420a724\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_26aaac1b172342dc9891632f07e408ed\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": - [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1_disk2_88d2d932283141e7984164a88aca4c98\",\r\n + [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1_disk2_f90cb9aaee394330aea9585aa525906a\",\r\n \ \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_88d2d932283141e7984164a88aca4c98\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_f90cb9aaee394330aea9585aa525906a\"\r\n \ },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": @@ -1145,24 +1103,24 @@ interactions: {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\": \"vm1\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n - \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.53\",\r\n \"statuses\": + \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.54.2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \ \"message\": \"Guest Agent is running\",\r\n \"time\": - \"2021-02-09T08:19:57+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_OsDisk_1_64f77320f9104856b874295ba420a724\",\r\n + \"2021-04-07T06:40:55+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_disk1_26aaac1b172342dc9891632f07e408ed\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-02-09T08:18:55.2990397+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-07T06:40:25.8993708+00:00\"\r\n \ }\r\n ]\r\n },\r\n {\r\n \"name\": - \"vm1_disk2_88d2d932283141e7984164a88aca4c98\",\r\n \"statuses\": + \"vm1_disk2_f90cb9aaee394330aea9585aa525906a\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-02-09T08:18:55.2990397+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-07T06:40:25.8993708+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-02-09T08:19:36.1580037+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-07T06:40:41.4932249+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n \ }\r\n ]\r\n }\r\n }\r\n}" @@ -1170,11 +1128,11 @@ interactions: cache-control: - no-cache content-length: - - '4788' + - '4781' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:20:00 GMT + - Wed, 07 Apr 2021 06:41:00 GMT expires: - '-1' pragma: @@ -1191,7 +1149,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31992 + - Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31997 status: code: 200 message: OK @@ -1209,18 +1167,18 @@ interactions: ParameterSetName: - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"vm1VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\r\n - \ \"etag\": \"W/\\\"8ddbf0ae-13cc-429d-9de4-186d80f4b9db\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"89b76f74-5651-4ff6-abc6-60b73f049e3c\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"04363317-5a6d-4279-8cfc-b2d9c901b6dc\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"14bc5569-dba6-4290-a4fa-ac46abe31a30\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm1\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\r\n - \ \"etag\": \"W/\\\"8ddbf0ae-13cc-429d-9de4-186d80f4b9db\\\"\",\r\n + \ \"etag\": \"W/\\\"89b76f74-5651-4ff6-abc6-60b73f049e3c\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -1229,8 +1187,8 @@ interactions: \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": - \"vpazxgz1tu4u3dlvxbmawfzfeg.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-E4-28-C2\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"iexrt4vvhrwurb4icymeisiqab.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-22-48-4B-D5-49\",\r\n \"enableAcceleratedNetworking\": false,\r\n \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -1244,9 +1202,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:20:00 GMT + - Wed, 07 Apr 2021 06:41:00 GMT etag: - - W/"8ddbf0ae-13cc-429d-9de4-186d80f4b9db" + - W/"89b76f74-5651-4ff6-abc6-60b73f049e3c" expires: - '-1' pragma: @@ -1263,7 +1221,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a94f0dad-df26-4a4b-a4f6-bb2c20164c55 + - a4215f26-f68f-4560-88d9-5043d5ec90e8 status: code: 200 message: OK @@ -1281,17 +1239,17 @@ interactions: ParameterSetName: - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"vm1PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\r\n - \ \"etag\": \"W/\\\"a555a194-f1b4-456a-8afe-ea075beed415\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"835ad7db-168a-4ee3-9c32-62dc94132d07\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"bcf3458d-cf7e-48b3-b78c-a8d3ac83dc63\",\r\n - \ \"ipAddress\": \"20.49.19.209\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n - \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + \"Succeeded\",\r\n \"resourceGuid\": \"9c87ef1e-edbb-48fe-8a57-e5925b8203ac\",\r\n + \ \"ipAddress\": \"52.184.179.193\",\r\n \"publicIPAddressVersion\": + \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" @@ -1299,13 +1257,13 @@ interactions: cache-control: - no-cache content-length: - - '997' + - '999' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:20:00 GMT + - Wed, 07 Apr 2021 06:41:00 GMT etag: - - W/"a555a194-f1b4-456a-8afe-ea075beed415" + - W/"835ad7db-168a-4ee3-9c32-62dc94132d07" expires: - '-1' pragma: @@ -1322,7 +1280,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 33e6a3fa-b9a4-4fdb-b8ae-f622e794c2ed + - 4c37f0d9-4f40-406c-914a-d49d5faac92f status: code: 200 message: OK @@ -1345,7 +1303,7 @@ interactions: ParameterSetName: - -g -n --command-id --scripts User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/runCommand?api-version=2020-12-01 response: @@ -1353,17 +1311,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/3ca3f029-87e7-4548-8f86-90bb3bf6c4a6?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/5698258b-ae16-4163-bf5a-70c5723f3364?api-version=2020-12-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 09 Feb 2021 08:20:02 GMT + - Wed, 07 Apr 2021 06:41:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/3ca3f029-87e7-4548-8f86-90bb3bf6c4a6?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/5698258b-ae16-4163-bf5a-70c5723f3364?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -1376,7 +1334,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1199 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 202 message: Accepted @@ -1394,17 +1352,17 @@ interactions: ParameterSetName: - -g -n --command-id --scripts User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/3ca3f029-87e7-4548-8f86-90bb3bf6c4a6?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/5698258b-ae16-4163-bf5a-70c5723f3364?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T08:20:02.5490743+00:00\",\r\n \"endTime\": - \"2021-02-09T08:20:14.7524604+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-07T06:41:02.5089868+00:00\",\r\n \"endTime\": + \"2021-04-07T06:41:18.0559682+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\"value\":[{\"code\":\"ProvisioningState/succeeded\",\"level\":\"Info\",\"displayStatus\":\"Provisioning succeeded\",\"message\":\"Enable succeeded: \\n[stdout]\\n\\n[stderr]\\nwarning: - commands will be executed using /bin/sh\\njob 1 at Tue Feb 9 08:21:00 2021\\n\"}]}\r\n - \ },\r\n \"name\": \"3ca3f029-87e7-4548-8f86-90bb3bf6c4a6\"\r\n}" + commands will be executed using /bin/sh\\njob 1 at Wed Apr 7 06:42:00 2021\\n\"}]}\r\n + \ },\r\n \"name\": \"5698258b-ae16-4163-bf5a-70c5723f3364\"\r\n}" headers: cache-control: - no-cache @@ -1413,7 +1371,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:20:32 GMT + - Wed, 07 Apr 2021 06:41:32 GMT expires: - '-1' pragma: @@ -1448,14 +1406,14 @@ interactions: ParameterSetName: - -g -n --command-id --scripts User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/3ca3f029-87e7-4548-8f86-90bb3bf6c4a6?monitor=true&api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/5698258b-ae16-4163-bf5a-70c5723f3364?monitor=true&api-version=2020-12-01 response: body: string: '{"value":[{"code":"ProvisioningState/succeeded","level":"Info","displayStatus":"Provisioning succeeded","message":"Enable succeeded: \n[stdout]\n\n[stderr]\nwarning: commands - will be executed using /bin/sh\njob 1 at Tue Feb 9 08:21:00 2021\n"}]}' + will be executed using /bin/sh\njob 1 at Wed Apr 7 06:42:00 2021\n"}]}' headers: cache-control: - no-cache @@ -1464,7 +1422,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:20:32 GMT + - Wed, 07 Apr 2021 06:41:33 GMT expires: - '-1' pragma: @@ -1501,7 +1459,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/deallocate?api-version=2020-12-01 response: @@ -1509,17 +1467,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/9c801a34-94d4-4284-a1c0-bf7f8cf88447?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/d2ad4ee0-4eb0-4f01-81fc-25d631ad01ec?api-version=2020-12-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 09 Feb 2021 08:21:43 GMT + - Wed, 07 Apr 2021 06:42:44 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/9c801a34-94d4-4284-a1c0-bf7f8cf88447?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/d2ad4ee0-4eb0-4f01-81fc-25d631ad01ec?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -1532,7 +1490,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1199 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -1550,13 +1508,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/9c801a34-94d4-4284-a1c0-bf7f8cf88447?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/d2ad4ee0-4eb0-4f01-81fc-25d631ad01ec?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T08:21:44.6438049+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"9c801a34-94d4-4284-a1c0-bf7f8cf88447\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:42:44.4471893+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d2ad4ee0-4eb0-4f01-81fc-25d631ad01ec\"\r\n}" headers: cache-control: - no-cache @@ -1565,7 +1523,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:21:55 GMT + - Wed, 07 Apr 2021 06:42:54 GMT expires: - '-1' pragma: @@ -1600,23 +1558,22 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/9c801a34-94d4-4284-a1c0-bf7f8cf88447?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/d2ad4ee0-4eb0-4f01-81fc-25d631ad01ec?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T08:21:44.6438049+00:00\",\r\n \"endTime\": - \"2021-02-09T08:22:17.6128088+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"9c801a34-94d4-4284-a1c0-bf7f8cf88447\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:42:44.4471893+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d2ad4ee0-4eb0-4f01-81fc-25d631ad01ec\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:22:31 GMT + - Wed, 07 Apr 2021 06:43:30 GMT expires: - '-1' pragma: @@ -1651,19 +1608,22 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/9c801a34-94d4-4284-a1c0-bf7f8cf88447?monitor=true&api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/d2ad4ee0-4eb0-4f01-81fc-25d631ad01ec?api-version=2020-12-01 response: body: - string: '' + string: "{\r\n \"startTime\": \"2021-04-07T06:42:44.4471893+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d2ad4ee0-4eb0-4f01-81fc-25d631ad01ec\"\r\n}" headers: cache-control: - no-cache content-length: - - '0' + - '134' + content-type: + - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:22:31 GMT + - Wed, 07 Apr 2021 06:44:00 GMT expires: - '-1' pragma: @@ -1673,10 +1633,14 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29989 + - Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29988 status: code: 200 message: OK @@ -1688,27 +1652,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vm generalize + - vm deallocate Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/generalize?api-version=2020-12-01 + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/d2ad4ee0-4eb0-4f01-81fc-25d631ad01ec?api-version=2020-12-01 response: body: - string: '' + string: "{\r\n \"startTime\": \"2021-04-07T06:42:44.4471893+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d2ad4ee0-4eb0-4f01-81fc-25d631ad01ec\"\r\n}" headers: cache-control: - no-cache content-length: - - '0' + - '134' + content-type: + - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:22:32 GMT + - Wed, 07 Apr 2021 06:44:31 GMT expires: - '-1' pragma: @@ -1718,12 +1683,14 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;238,Microsoft.Compute/UpdateVM30Min;1198 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29985 status: code: 200 message: OK @@ -1731,75 +1698,32 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - image create + - vm deallocate Connection: - keep-alive ParameterSetName: - - -g -n --source + - -g -n User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/d2ad4ee0-4eb0-4f01-81fc-25d631ad01ec?api-version=2020-12-01 response: body: - string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n - \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"d572af2d-2b9f-4411-912d-c1f1c980006f\",\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n - \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": - \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202101290\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"vm1_OsDisk_1_64f77320f9104856b874295ba420a724\",\r\n - \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n - \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_64f77320f9104856b874295ba420a724\"\r\n - \ }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": - 0,\r\n \"name\": \"vm1_disk2_88d2d932283141e7984164a88aca4c98\",\r\n - \ \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n - \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_88d2d932283141e7984164a88aca4c98\"\r\n - \ },\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n - \ },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": - \"clitest1\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/clitest1/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj - fey@DESKTOP-ARGPJS4\\n\"\r\n }\r\n ]\r\n },\r\n - \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": - \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": - true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": - {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"disks\": - [\r\n {\r\n \"name\": \"vm1_OsDisk_1_64f77320f9104856b874295ba420a724\",\r\n - \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-02-09T08:22:15.4565149+00:00\"\r\n - \ }\r\n ]\r\n },\r\n {\r\n \"name\": - \"vm1_disk2_88d2d932283141e7984164a88aca4c98\",\r\n \"statuses\": - [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-02-09T08:22:15.4565149+00:00\"\r\n - \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": - \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"OSState/generalized\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM generalized\"\r\n - \ },\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-02-09T08:22:15.4721674+00:00\"\r\n - \ },\r\n {\r\n \"code\": \"PowerState/deallocated\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n - \ }\r\n ]\r\n }\r\n }\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:42:44.4471893+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d2ad4ee0-4eb0-4f01-81fc-25d631ad01ec\"\r\n}" headers: cache-control: - no-cache content-length: - - '4313' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:22:33 GMT + - Wed, 07 Apr 2021 06:45:01 GMT expires: - '-1' pragma: @@ -1816,7 +1740,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31991 + - Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29982 status: code: 200 message: OK @@ -1824,98 +1748,83 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - image create + - vm deallocate Connection: - keep-alive ParameterSetName: - - -g -n --source + - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 - accept-language: - - en-US + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/d2ad4ee0-4eb0-4f01-81fc-25d631ad01ec?api-version=2020-12-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-02-09T08:16:52Z"},"properties":{"provisioningState":"Succeeded"}}' + string: "{\r\n \"startTime\": \"2021-04-07T06:42:44.4471893+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d2ad4ee0-4eb0-4f01-81fc-25d631ad01ec\"\r\n}" headers: cache-control: - no-cache content-length: - - '429' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:22:33 GMT + - Wed, 07 Apr 2021 06:45:31 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29979 status: code: 200 message: OK - request: - body: '{"location": "eastus2", "tags": {}, "properties": {"sourceVirtualMachine": - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"}, - "hyperVGeneration": "V1"}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - image create + - vm deallocate Connection: - keep-alive - Content-Length: - - '303' - Content-Type: - - application/json ParameterSetName: - - -g -n --source + - -g -n User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1?api-version=2020-12-01 + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/d2ad4ee0-4eb0-4f01-81fc-25d631ad01ec?api-version=2020-12-01 response: body: - string: "{\r\n \"name\": \"managedImage1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\",\r\n - \ \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"eastus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\"\r\n - \ },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"managedDisk\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_64f77320f9104856b874295ba420a724\"\r\n - \ },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": - \"Premium_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": - 0,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_88d2d932283141e7984164a88aca4c98\"\r\n - \ },\r\n \"caching\": \"None\",\r\n \"storageAccountType\": - \"Premium_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": - \"Creating\",\r\n \"hyperVGeneration\": \"V1\"\r\n }\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:42:44.4471893+00:00\",\r\n \"endTime\": + \"2021-04-07T06:45:56.3704535+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"d2ad4ee0-4eb0-4f01-81fc-25d631ad01ec\"\r\n}" headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/d3f3136d-a684-422f-aad1-c1aa78769054?api-version=2020-12-01 cache-control: - no-cache content-length: - - '1570' + - '184' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:22:41 GMT + - Wed, 07 Apr 2021 06:46:02 GMT expires: - '-1' pragma: @@ -1925,15 +1834,17 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateImages3Min;39,Microsoft.Compute/CreateImages30Min;199 - x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29976 status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -1942,28 +1853,25 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - image create + - vm deallocate Connection: - keep-alive ParameterSetName: - - -g -n --source + - -g -n User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/d3f3136d-a684-422f-aad1-c1aa78769054?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/d2ad4ee0-4eb0-4f01-81fc-25d631ad01ec?monitor=true&api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T08:22:40.9722902+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"d3f3136d-a684-422f-aad1-c1aa78769054\"\r\n}" + string: '' headers: cache-control: - no-cache content-length: - - '134' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Tue, 09 Feb 2021 08:23:11 GMT + - Wed, 07 Apr 2021 06:46:03 GMT expires: - '-1' pragma: @@ -1973,14 +1881,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29988 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29975 status: code: 200 message: OK @@ -1992,29 +1896,27 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - image create + - vm generalize Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -g -n --source + - -g -n User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/d3f3136d-a684-422f-aad1-c1aa78769054?api-version=2020-12-01 + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/generalize?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T08:22:40.9722902+00:00\",\r\n \"endTime\": - \"2021-02-09T08:23:26.472624+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"d3f3136d-a684-422f-aad1-c1aa78769054\"\r\n}" + string: '' headers: cache-control: - no-cache content-length: - - '183' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Tue, 09 Feb 2021 08:23:42 GMT + - Wed, 07 Apr 2021 06:46:03 GMT expires: - '-1' pragma: @@ -2024,14 +1926,12 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29986 + - Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1198 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -2039,7 +1939,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -2049,34 +1949,65 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2020-12-01 response: body: - string: "{\r\n \"name\": \"managedImage1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\",\r\n - \ \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"eastus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\"\r\n - \ },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"diskSizeGB\": - 30,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_64f77320f9104856b874295ba420a724\"\r\n - \ },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": - \"Premium_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": - 0,\r\n \"diskSizeGB\": 10,\r\n \"managedDisk\": {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_88d2d932283141e7984164a88aca4c98\"\r\n - \ },\r\n \"caching\": \"None\",\r\n \"storageAccountType\": - \"Premium_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": - \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\r\n }\r\n}" + string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"8254bb93-e3e4-4193-9f73-2711f8e1d2cc\",\r\n + \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n + \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": + \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": + \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": + \"18.04.202103250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"vm1_disk1_26aaac1b172342dc9891632f07e408ed\",\r\n + \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n + \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_26aaac1b172342dc9891632f07e408ed\"\r\n + \ }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": + 0,\r\n \"name\": \"vm1_disk2_f90cb9aaee394330aea9585aa525906a\",\r\n + \ \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n + \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_f90cb9aaee394330aea9585aa525906a\"\r\n + \ },\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n + \ },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": + \"clitest1\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": + true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n + \ \"path\": \"/home/clitest1/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj + fey@DESKTOP-ARGPJS4\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": + \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"disks\": + [\r\n {\r\n \"name\": \"vm1_disk1_26aaac1b172342dc9891632f07e408ed\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2021-04-07T06:45:54.2610597+00:00\"\r\n + \ }\r\n ]\r\n },\r\n {\r\n \"name\": + \"vm1_disk2_f90cb9aaee394330aea9585aa525906a\",\r\n \"statuses\": + [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2021-04-07T06:45:54.2610597+00:00\"\r\n + \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": + \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"OSState/generalized\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM generalized\"\r\n + \ },\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2021-04-07T06:45:54.2766895+00:00\"\r\n + \ },\r\n {\r\n \"code\": \"PowerState/deallocated\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n + \ }\r\n ]\r\n }\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1627' + - '4304' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:23:43 GMT + - Wed, 07 Apr 2021 06:46:04 GMT expires: - '-1' pragma: @@ -2093,7 +2024,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetImages3Min;358,Microsoft.Compute/GetImages30Min;1798 + - Microsoft.Compute/LowCostGet3Min;3999,Microsoft.Compute/LowCostGet30Min;31996 status: code: 200 message: OK @@ -2105,22 +2036,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sig image-version create + - image create Connection: - keep-alive ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image - --replica-count + - -g -n --source User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-02-09T08:16:52Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2129,7 +2059,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:23:43 GMT + - Wed, 07 Apr 2021 06:46:05 GMT expires: - '-1' pragma: @@ -2144,52 +2074,56 @@ interactions: code: 200 message: OK - request: - body: '{"location": "eastus2", "tags": {}, "properties": {"publishingProfile": - {"targetRegions": [{"name": "eastus2"}], "replicaCount": 1}, "storageProfile": - {"source": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1"}}}}' + body: '{"location": "eastus2", "tags": {}, "properties": {"sourceVirtualMachine": + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"}, + "hyperVGeneration": "V1"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - sig image-version create + - image create Connection: - keep-alive Content-Length: - - '366' + - '303' Content-Type: - application/json ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image - --replica-count + - -g -n --source User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1?api-version=2020-12-01 response: body: - string: "{\r\n \"name\": \"1.1.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2\",\r\n - \ \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": - \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"publishingProfile\": - {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East - US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": - \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-09T08:23:50.1900748+00:00\",\r\n - \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": - {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n - \ }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}" + string: "{\r\n \"name\": \"managedImage1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\",\r\n + \ \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"eastus2\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\"\r\n + \ },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"managedDisk\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_26aaac1b172342dc9891632f07e408ed\"\r\n + \ },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": + \"Premium_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": + 0,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_f90cb9aaee394330aea9585aa525906a\"\r\n + \ },\r\n \"caching\": \"None\",\r\n \"storageAccountType\": + \"Premium_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": + \"Creating\",\r\n \"hyperVGeneration\": \"V1\"\r\n }\r\n}" headers: + azure-asyncnotification: + - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/d06ef705-80ef-427b-9c28-56086e6ecd20?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/c08e8547-40b5-4258-b578-4e1b13019ae9?api-version=2020-12-01 cache-control: - no-cache content-length: - - '1075' + - '1567' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:23:50 GMT + - Wed, 07 Apr 2021 06:46:12 GMT expires: - '-1' pragma: @@ -2202,9 +2136,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1199 + - Microsoft.Compute/CreateImages3Min;39,Microsoft.Compute/CreateImages30Min;199 x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1198' status: code: 201 message: Created @@ -2216,80 +2150,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sig image-version create - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image - --replica-count - User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/d06ef705-80ef-427b-9c28-56086e6ecd20?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2021-02-09T08:23:50.1900748+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"d06ef705-80ef-427b-9c28-56086e6ecd20\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 09 Feb 2021 08:24:51 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1199,Microsoft.Compute/GetOperationStatus30Min;4194 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version create + - image create Connection: - keep-alive ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image - --replica-count + - -g -n --source User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/d06ef705-80ef-427b-9c28-56086e6ecd20?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/c08e8547-40b5-4258-b578-4e1b13019ae9?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T08:23:50.1900748+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"d06ef705-80ef-427b-9c28-56086e6ecd20\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:46:10.9798304+00:00\",\r\n \"endTime\": + \"2021-04-07T06:46:16.0892605+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"c08e8547-40b5-4258-b578-4e1b13019ae9\"\r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '184' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:25:51 GMT + - Wed, 07 Apr 2021 06:46:43 GMT expires: - '-1' pragma: @@ -2306,7 +2189,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4193 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29973 status: code: 200 message: OK @@ -2318,29 +2201,40 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sig image-version create + - image create Connection: - keep-alive ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image - --replica-count + - -g -n --source User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/d06ef705-80ef-427b-9c28-56086e6ecd20?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T08:23:50.1900748+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"d06ef705-80ef-427b-9c28-56086e6ecd20\"\r\n}" + string: "{\r\n \"name\": \"managedImage1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\",\r\n + \ \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"eastus2\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\"\r\n + \ },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"diskSizeGB\": + 30,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_26aaac1b172342dc9891632f07e408ed\"\r\n + \ },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": + \"Premium_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": + 0,\r\n \"diskSizeGB\": 10,\r\n \"managedDisk\": {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_f90cb9aaee394330aea9585aa525906a\"\r\n + \ },\r\n \"caching\": \"None\",\r\n \"storageAccountType\": + \"Premium_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": + \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '1624' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:26:52 GMT + - Wed, 07 Apr 2021 06:46:43 GMT expires: - '-1' pragma: @@ -2357,7 +2251,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4191 + - Microsoft.Compute/GetImages3Min;358,Microsoft.Compute/GetImages30Min;1798 status: code: 200 message: OK @@ -2365,7 +2259,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -2376,73 +2270,84 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/d06ef705-80ef-427b-9c28-56086e6ecd20?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T08:23:50.1900748+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"d06ef705-80ef-427b-9c28-56086e6ecd20\"\r\n}" + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '134' + - '429' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:27:53 GMT + - Wed, 07 Apr 2021 06:46:44 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4189 status: code: 200 message: OK - request: - body: null + body: '{"location": "eastus2", "tags": {}, "properties": {"publishingProfile": + {"targetRegions": [{"name": "eastus2"}], "replicaCount": 1}, "storageProfile": + {"source": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1"}}}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - sig image-version create Connection: - keep-alive + Content-Length: + - '366' + Content-Type: + - application/json ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/d06ef705-80ef-427b-9c28-56086e6ecd20?api-version=2019-12-01 + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T08:23:50.1900748+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"d06ef705-80ef-427b-9c28-56086e6ecd20\"\r\n}" + string: "{\r\n \"name\": \"1.1.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2\",\r\n + \ \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": + \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"publishingProfile\": + {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East + US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": + \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-07T06:46:51.4464299+00:00\",\r\n + \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": + {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n + \ }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/d010f38c-e5e5-482c-b3bc-73a7369b13d8?api-version=2019-12-01 cache-control: - no-cache content-length: - - '134' + - '1075' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:28:53 GMT + - Wed, 07 Apr 2021 06:46:53 GMT expires: - '-1' pragma: @@ -2452,17 +2357,15 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4187 - status: - code: 200 - message: OK + - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1199 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created - request: body: null headers: @@ -2478,13 +2381,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/d06ef705-80ef-427b-9c28-56086e6ecd20?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/d010f38c-e5e5-482c-b3bc-73a7369b13d8?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T08:23:50.1900748+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"d06ef705-80ef-427b-9c28-56086e6ecd20\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:46:51.4464299+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d010f38c-e5e5-482c-b3bc-73a7369b13d8\"\r\n}" headers: cache-control: - no-cache @@ -2493,7 +2396,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:29:54 GMT + - Wed, 07 Apr 2021 06:47:53 GMT expires: - '-1' pragma: @@ -2510,7 +2413,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4185 + - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4194 status: code: 200 message: OK @@ -2529,13 +2432,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/d06ef705-80ef-427b-9c28-56086e6ecd20?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/d010f38c-e5e5-482c-b3bc-73a7369b13d8?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T08:23:50.1900748+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"d06ef705-80ef-427b-9c28-56086e6ecd20\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:46:51.4464299+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d010f38c-e5e5-482c-b3bc-73a7369b13d8\"\r\n}" headers: cache-control: - no-cache @@ -2544,7 +2447,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:30:54 GMT + - Wed, 07 Apr 2021 06:48:54 GMT expires: - '-1' pragma: @@ -2561,7 +2464,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4183 + - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4193 status: code: 200 message: OK @@ -2580,13 +2483,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/d06ef705-80ef-427b-9c28-56086e6ecd20?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/d010f38c-e5e5-482c-b3bc-73a7369b13d8?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T08:23:50.1900748+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"d06ef705-80ef-427b-9c28-56086e6ecd20\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:46:51.4464299+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d010f38c-e5e5-482c-b3bc-73a7369b13d8\"\r\n}" headers: cache-control: - no-cache @@ -2595,7 +2498,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:31:55 GMT + - Wed, 07 Apr 2021 06:49:56 GMT expires: - '-1' pragma: @@ -2612,7 +2515,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4181 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4191 status: code: 200 message: OK @@ -2631,13 +2534,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/d06ef705-80ef-427b-9c28-56086e6ecd20?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/d010f38c-e5e5-482c-b3bc-73a7369b13d8?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T08:23:50.1900748+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"d06ef705-80ef-427b-9c28-56086e6ecd20\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:46:51.4464299+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d010f38c-e5e5-482c-b3bc-73a7369b13d8\"\r\n}" headers: cache-control: - no-cache @@ -2646,7 +2549,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:32:57 GMT + - Wed, 07 Apr 2021 06:50:57 GMT expires: - '-1' pragma: @@ -2663,7 +2566,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4179 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4189 status: code: 200 message: OK @@ -2682,13 +2585,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/d06ef705-80ef-427b-9c28-56086e6ecd20?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/d010f38c-e5e5-482c-b3bc-73a7369b13d8?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T08:23:50.1900748+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"d06ef705-80ef-427b-9c28-56086e6ecd20\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:46:51.4464299+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d010f38c-e5e5-482c-b3bc-73a7369b13d8\"\r\n}" headers: cache-control: - no-cache @@ -2697,7 +2600,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:33:57 GMT + - Wed, 07 Apr 2021 06:51:57 GMT expires: - '-1' pragma: @@ -2714,7 +2617,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4177 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4187 status: code: 200 message: OK @@ -2733,13 +2636,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/d06ef705-80ef-427b-9c28-56086e6ecd20?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/d010f38c-e5e5-482c-b3bc-73a7369b13d8?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T08:23:50.1900748+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"d06ef705-80ef-427b-9c28-56086e6ecd20\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:46:51.4464299+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d010f38c-e5e5-482c-b3bc-73a7369b13d8\"\r\n}" headers: cache-control: - no-cache @@ -2748,7 +2651,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:34:57 GMT + - Wed, 07 Apr 2021 06:52:58 GMT expires: - '-1' pragma: @@ -2765,7 +2668,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4175 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4185 status: code: 200 message: OK @@ -2784,14 +2687,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/d06ef705-80ef-427b-9c28-56086e6ecd20?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/d010f38c-e5e5-482c-b3bc-73a7369b13d8?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T08:23:50.1900748+00:00\",\r\n \"endTime\": - \"2021-02-09T08:35:05.9937275+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"d06ef705-80ef-427b-9c28-56086e6ecd20\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:46:51.4464299+00:00\",\r\n \"endTime\": + \"2021-04-07T06:53:53.0253833+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"d010f38c-e5e5-482c-b3bc-73a7369b13d8\"\r\n}" headers: cache-control: - no-cache @@ -2800,7 +2703,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:35:58 GMT + - Wed, 07 Apr 2021 06:53:59 GMT expires: - '-1' pragma: @@ -2817,7 +2720,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4173 + - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4183 status: code: 200 message: OK @@ -2836,7 +2739,7 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2019-12-01 response: @@ -2847,7 +2750,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-09T08:23:50.1900748+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-07T06:46:51.4464299+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n \ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": @@ -2863,7 +2766,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:35:59 GMT + - Wed, 07 Apr 2021 06:53:59 GMT expires: - '-1' pragma: @@ -2880,7 +2783,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1997,Microsoft.Compute/GetGalleryImageVersion30Min;9994 + - Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9997 status: code: 200 message: OK @@ -2898,13 +2801,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions?api-version=2019-12-01 response: body: string: '{"value":[{"name":"1.1.2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2","type":"Microsoft.Compute/galleries/images/versions","location":"eastus2","tags":{},"properties":{"publishingProfile":{"targetRegions":[{"name":"East - US 2","regionalReplicaCount":1,"storageAccountType":"Standard_LRS"}],"replicaCount":1,"excludeFromLatest":false,"publishedDate":"2021-02-09T08:23:50.1900748+00:00","storageAccountType":"Standard_LRS"},"storageProfile":{"source":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1"},"osDiskImage":{"sizeInGB":30,"hostCaching":"ReadWrite","source":{}},"dataDiskImages":[{"lun":0,"sizeInGB":10,"hostCaching":"None"}]},"provisioningState":"Succeeded"}}]}' + US 2","regionalReplicaCount":1,"storageAccountType":"Standard_LRS"}],"replicaCount":1,"excludeFromLatest":false,"publishedDate":"2021-04-07T06:46:51.4464299+00:00","storageAccountType":"Standard_LRS"},"storageProfile":{"source":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1"},"osDiskImage":{"sizeInGB":30,"hostCaching":"ReadWrite","source":{}},"dataDiskImages":[{"lun":0,"sizeInGB":10,"hostCaching":"None"}]},"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache @@ -2913,7 +2816,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:36:01 GMT + - Wed, 07 Apr 2021 06:54:01 GMT expires: - '-1' pragma: @@ -2925,41 +2828,42 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 6aaccd6e-7bc9-4675-ac6d-47fac0c03078 - - a1c8d347-eaa1-4b28-9d17-c47b715cad76 - - 0c77fcd4-d4db-4552-ade7-82793b8a136c - - 93affb08-a77b-484a-befa-f8386c16227e - - 1fbc1b26-6998-4804-b82f-b2805f28776d - - 57e22a65-d9b0-4741-acee-ee0e4274ba90 - - 9a767acd-5c56-4c4f-ac06-c5fc4f863c21 - - e3815a34-2453-42e8-a549-df7a3ceaa88d - - 9c0e6c22-7d6c-4d05-9ff2-1ca509d43a96 - - 02f0fe5c-193f-4707-be1a-65d23727231f - - 8fe9bf6d-5aa0-436a-a5b7-d9f052e3d25e - - 194c2168-7a7b-43c5-a760-6a8f01123dc8 - - c5495dde-a8a9-4dd5-b363-0dc8b24fb7ea - - e4a77fab-3511-45f5-8fb1-5f82bb80965e - - c60831eb-b777-4220-88ea-fc6ccd51871f - - 63557779-759c-4f9e-8a85-2b6262bd317f - - 846bf7a9-ace6-48d8-8905-afec23ef793b - - 220d251d-843a-4479-bc87-49c596d7bdb6 - - d364299d-5b16-4477-8314-3c38d820f5c0 - - 9a740133-3597-4660-8d36-bf76507f775d - - f29f29cc-1dab-4ac6-b59e-eb1212c303d1 - - aac35680-fbf0-401b-a678-74128dadf112 - - 0c17d5fc-805c-4f1c-9b67-42ea0a92b58b - - d29ead88-a17c-43e3-a403-800dae372eb2 - - c5a71fb4-b5c1-45e9-81f3-0595fdd1950f - - 503dea20-4bad-420d-b9aa-fc95c35470be - - 41c5ea42-e1db-458e-929d-ac12a2a892d8 - - 602a6fbd-cec1-4804-82af-9a0524077d15 - - b5ce1a4e-316b-4ef2-8719-a72ba0a49478 - - 80ddc44a-9f71-4116-a310-84874efe911c - - 1872e841-1d2e-4191-af58-653f45facdac - - 8837c5f5-c885-42b5-82cc-1cd399f90510 - - aa681133-e63a-441d-a7ce-43e3a1800684 - - a984c806-0878-47bc-b1b7-bae72f31eb3e - - 5af87ee1-19ec-4430-9d4c-d88895e794c7 + - 759e9b16-32f6-4898-83e4-553cc85b6112 + - a0028a2e-a7b3-42eb-8f46-e4051e6368e1 + - 9a97d8f5-845f-415c-98d9-a67eaefdec5a + - ae740d05-77ba-4053-b7aa-ca4851a44ee4 + - 6441cd79-1e9e-422d-9d37-bce19f9fee17 + - f1f120ce-4d59-49c1-ab0f-1a3bcdda544a + - 780c94bf-536b-4a7d-97ac-4e3bf5574f19 + - 7c920cb9-0967-4d2d-b831-4ea3940ebcb6 + - ab7cafd7-890e-427e-a946-886344e9f721 + - a56b53cf-ace2-43f5-9f1d-6c17afcc6096 + - 58b53b00-d65d-456f-8dda-34f1a7c847b2 + - eec48aec-5b11-4984-8fc3-bac275aa4ee4 + - 79a029bf-5492-4e05-abfb-1cf971643693 + - ca361b3d-0b73-4a47-a30a-f326efb5bcb8 + - 7c1a85a5-1291-454f-b8cd-282608ebca13 + - 5fdcde48-b1a1-4712-8a36-2014315ea004 + - 1a84c0bc-2e6a-434c-a2fd-e5be86162435 + - 89039226-2974-4a64-a861-6323ad4e72be + - a5414573-18f4-456f-911b-02cc6cfc9830 + - a7ec42f8-11ef-4308-98ac-f08d1b6585c1 + - 6655e837-2182-46ed-94fb-3c5f2140e54b + - 0fe72043-a532-481a-b819-b2f0fd28d81e + - a1ec8830-ec4b-4e6d-8778-e02fd93acde2 + - 24b8bded-6d8f-4309-9180-f2dcfdaf2670 + - 29cd0112-5982-4d13-9155-4cb1b54ada34 + - 86e3838b-c4b8-4105-834b-23999d32bfd3 + - 30e43cae-93c2-4175-b235-32b41c613173 + - 08900ff9-3efa-4552-8ed4-3d5a547f6898 + - ad544ee0-a723-48e7-aebd-522c4f5fee02 + - 62a7de4d-7ac4-442a-b788-2880126564c5 + - f8d74445-ffd8-40ba-b955-12cd97011aff + - f4e15d67-75b6-473d-a6fb-3ce6af1534d4 + - 862a194e-f9c4-4fbd-a169-acf00aad4e05 + - 928d4f6a-2b46-4551-b7fd-10003ed0823b + - 71049401-5603-41c1-bba8-c876ec7771e3 + - 9ca3f2c2-d91c-493e-9313-85bdd8ae4391 status: code: 200 message: OK @@ -2977,7 +2881,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2019-12-01 response: @@ -2988,7 +2892,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-09T08:23:50.1900748+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-07T06:46:51.4464299+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n \ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": @@ -3004,7 +2908,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:36:02 GMT + - Wed, 07 Apr 2021 06:54:02 GMT expires: - '-1' pragma: @@ -3021,7 +2925,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1996,Microsoft.Compute/GetGalleryImageVersion30Min;9993 + - Microsoft.Compute/GetGalleryImageVersion3Min;1998,Microsoft.Compute/GetGalleryImageVersion30Min;9996 status: code: 200 message: OK @@ -3040,7 +2944,7 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2019-12-01 response: @@ -3051,7 +2955,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-09T08:23:50.1900748+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-07T06:46:51.4464299+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n \ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": @@ -3067,7 +2971,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:36:03 GMT + - Wed, 07 Apr 2021 06:54:03 GMT expires: - '-1' pragma: @@ -3084,7 +2988,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1995,Microsoft.Compute/GetGalleryImageVersion30Min;9992 + - Microsoft.Compute/GetGalleryImageVersion3Min;1997,Microsoft.Compute/GetGalleryImageVersion30Min;9995 status: code: 200 message: OK @@ -3111,7 +3015,7 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2019-12-01 response: @@ -3124,7 +3028,7 @@ interactions: \"Standard_LRS\"\r\n },\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 2,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 2,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-09T08:23:50.1900748+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-07T06:46:51.4464299+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n \ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": @@ -3134,7 +3038,7 @@ interactions: \ \"provisioningState\": \"Updating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/4757f658-cc6b-4cab-bfbe-cbb854c35cff?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9aecd12f-8b4c-4964-9ca2-eea5919f7e59?api-version=2019-12-01 cache-control: - no-cache content-length: @@ -3142,7 +3046,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:36:04 GMT + - Wed, 07 Apr 2021 06:54:05 GMT expires: - '-1' pragma: @@ -3180,115 +3084,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/4757f658-cc6b-4cab-bfbe-cbb854c35cff?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2021-02-09T08:36:04.6832115+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"4757f658-cc6b-4cab-bfbe-cbb854c35cff\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 09 Feb 2021 08:37:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4172 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version update - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions - --replica-count - User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/4757f658-cc6b-4cab-bfbe-cbb854c35cff?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2021-02-09T08:36:04.6832115+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"4757f658-cc6b-4cab-bfbe-cbb854c35cff\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 09 Feb 2021 08:38:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4170 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version update - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions - --replica-count - User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/4757f658-cc6b-4cab-bfbe-cbb854c35cff?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9aecd12f-8b4c-4964-9ca2-eea5919f7e59?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T08:36:04.6832115+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"4757f658-cc6b-4cab-bfbe-cbb854c35cff\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:54:05.6977975+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"9aecd12f-8b4c-4964-9ca2-eea5919f7e59\"\r\n}" headers: cache-control: - no-cache @@ -3297,7 +3099,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:39:06 GMT + - Wed, 07 Apr 2021 06:55:05 GMT expires: - '-1' pragma: @@ -3314,7 +3116,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4168 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4181 status: code: 200 message: OK @@ -3333,13 +3135,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/4757f658-cc6b-4cab-bfbe-cbb854c35cff?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9aecd12f-8b4c-4964-9ca2-eea5919f7e59?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T08:36:04.6832115+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"4757f658-cc6b-4cab-bfbe-cbb854c35cff\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:54:05.6977975+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"9aecd12f-8b4c-4964-9ca2-eea5919f7e59\"\r\n}" headers: cache-control: - no-cache @@ -3348,7 +3150,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:40:07 GMT + - Wed, 07 Apr 2021 06:56:06 GMT expires: - '-1' pragma: @@ -3365,7 +3167,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4166 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4179 status: code: 200 message: OK @@ -3384,13 +3186,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/4757f658-cc6b-4cab-bfbe-cbb854c35cff?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9aecd12f-8b4c-4964-9ca2-eea5919f7e59?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T08:36:04.6832115+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"4757f658-cc6b-4cab-bfbe-cbb854c35cff\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:54:05.6977975+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"9aecd12f-8b4c-4964-9ca2-eea5919f7e59\"\r\n}" headers: cache-control: - no-cache @@ -3399,7 +3201,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:41:07 GMT + - Wed, 07 Apr 2021 06:57:07 GMT expires: - '-1' pragma: @@ -3416,7 +3218,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4164 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4177 status: code: 200 message: OK @@ -3435,13 +3237,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/4757f658-cc6b-4cab-bfbe-cbb854c35cff?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9aecd12f-8b4c-4964-9ca2-eea5919f7e59?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T08:36:04.6832115+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"4757f658-cc6b-4cab-bfbe-cbb854c35cff\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:54:05.6977975+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"9aecd12f-8b4c-4964-9ca2-eea5919f7e59\"\r\n}" headers: cache-control: - no-cache @@ -3450,7 +3252,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:42:07 GMT + - Wed, 07 Apr 2021 06:58:08 GMT expires: - '-1' pragma: @@ -3467,7 +3269,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4162 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4175 status: code: 200 message: OK @@ -3486,13 +3288,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/4757f658-cc6b-4cab-bfbe-cbb854c35cff?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9aecd12f-8b4c-4964-9ca2-eea5919f7e59?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T08:36:04.6832115+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"4757f658-cc6b-4cab-bfbe-cbb854c35cff\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:54:05.6977975+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"9aecd12f-8b4c-4964-9ca2-eea5919f7e59\"\r\n}" headers: cache-control: - no-cache @@ -3501,7 +3303,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:43:08 GMT + - Wed, 07 Apr 2021 06:59:10 GMT expires: - '-1' pragma: @@ -3518,7 +3320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4160 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4173 status: code: 200 message: OK @@ -3537,13 +3339,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/4757f658-cc6b-4cab-bfbe-cbb854c35cff?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9aecd12f-8b4c-4964-9ca2-eea5919f7e59?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T08:36:04.6832115+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"4757f658-cc6b-4cab-bfbe-cbb854c35cff\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:54:05.6977975+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"9aecd12f-8b4c-4964-9ca2-eea5919f7e59\"\r\n}" headers: cache-control: - no-cache @@ -3552,7 +3354,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:44:09 GMT + - Wed, 07 Apr 2021 07:00:09 GMT expires: - '-1' pragma: @@ -3569,7 +3371,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4158 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4171 status: code: 200 message: OK @@ -3588,13 +3390,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/4757f658-cc6b-4cab-bfbe-cbb854c35cff?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9aecd12f-8b4c-4964-9ca2-eea5919f7e59?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T08:36:04.6832115+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"4757f658-cc6b-4cab-bfbe-cbb854c35cff\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:54:05.6977975+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"9aecd12f-8b4c-4964-9ca2-eea5919f7e59\"\r\n}" headers: cache-control: - no-cache @@ -3603,7 +3405,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:45:09 GMT + - Wed, 07 Apr 2021 07:01:10 GMT expires: - '-1' pragma: @@ -3620,7 +3422,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4160 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4169 status: code: 200 message: OK @@ -3639,14 +3441,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/4757f658-cc6b-4cab-bfbe-cbb854c35cff?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9aecd12f-8b4c-4964-9ca2-eea5919f7e59?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T08:36:04.6832115+00:00\",\r\n \"endTime\": - \"2021-02-09T08:46:05.4533266+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"4757f658-cc6b-4cab-bfbe-cbb854c35cff\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:54:05.6977975+00:00\",\r\n \"endTime\": + \"2021-04-07T07:01:51.4033659+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"9aecd12f-8b4c-4964-9ca2-eea5919f7e59\"\r\n}" headers: cache-control: - no-cache @@ -3655,7 +3457,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:46:10 GMT + - Wed, 07 Apr 2021 07:02:10 GMT expires: - '-1' pragma: @@ -3672,7 +3474,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4158 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4167 status: code: 200 message: OK @@ -3691,7 +3493,7 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2019-12-01 response: @@ -3704,7 +3506,7 @@ interactions: \"Standard_LRS\"\r\n },\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 2,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 2,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-09T08:23:50.1900748+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-07T06:46:51.4464299+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n \ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": @@ -3720,7 +3522,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:46:10 GMT + - Wed, 07 Apr 2021 07:02:11 GMT expires: - '-1' pragma: @@ -3737,7 +3539,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1998,Microsoft.Compute/GetGalleryImageVersion30Min;9989 + - Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9991 status: code: 200 message: OK @@ -3756,14 +3558,14 @@ interactions: - -g -n --enable-purge-protection --enable-soft-delete User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-02-09T08:16:52Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3772,7 +3574,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:46:11 GMT + - Wed, 07 Apr 2021 07:02:11 GMT expires: - '-1' pragma: @@ -3817,19 +3619,19 @@ interactions: dataserviceversion: - 3.0; date: - - Tue, 09 Feb 2021 08:46:12 GMT + - Wed, 07 Apr 2021 07:02:13 GMT duration: - - '2359870' + - '2617553' expires: - '-1' ocp-aad-diagnostics-server-name: - - sJ1Buv2k4RK8W31iECo8mAj5SrrAnlmawQNaa8bAJAI= + - s4RB8PBNbTTcHJzI8Os4lW7TJzEwiTiMFJzJ0jOaQPg= ocp-aad-session-key: - - 9EBGRShexeuT9s8r0cHRtI2mgxKOBdMh41d8UBR8hM1QgeqD5TU-d6ZAlJj_reQZHPiYXDlthYRWuOOOHos976-twFVeRMYuBC22H9ZyfvhAXsGx1pcT8bMaed7LO4-W.whU2RRy9KKBtPbHV45_djivJJcpqRkhL2wfs3O-tXy4 + - HCc89YK2uz_rHYzPIQJsyupev2UgSM6Pzm7-tJBUdb6AkGPOTnJ1l1WnZTXajaN66yy-6f7O3q-DWHRil8E2aYgFLn6qk8gnC-8w2UMixHLmcOPdsjyvh9Ti5itulDIZ.VULNimDooWnEw-QvLFdWCSDuGCe3Hc68VXVCMcLcVhE pragma: - no-cache request-id: - - 593a6d4a-d59b-4711-9622-ed081fe818cc + - c31fdbc7-c10a-48c4-a7b0-3e639928204c strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -3871,7 +3673,7 @@ interactions: ParameterSetName: - -g -n --enable-purge-protection --enable-soft-delete User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003?api-version=2019-09-01 response: @@ -3885,7 +3687,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:46:23 GMT + - Wed, 07 Apr 2021 07:02:23 GMT expires: - '-1' pragma: @@ -3903,9 +3705,9 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.218.0 + - 1.1.286.0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' x-powered-by: - ASP.NET status: @@ -3925,7 +3727,7 @@ interactions: ParameterSetName: - -g -n --enable-purge-protection --enable-soft-delete User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003?api-version=2019-09-01 response: @@ -3939,7 +3741,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:46:53 GMT + - Wed, 07 Apr 2021 07:02:54 GMT expires: - '-1' pragma: @@ -3957,7 +3759,7 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.218.0 + - 1.1.286.0 x-powered-by: - ASP.NET status: @@ -3995,7 +3797,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:46:56 GMT + - Wed, 07 Apr 2021 07:02:56 GMT expires: - '-1' pragma: @@ -4012,7 +3814,7 @@ interactions: x-ms-keyvault-region: - eastus2 x-ms-keyvault-service-version: - - 1.2.164.0 + - 1.2.236.0 x-powered-by: - ASP.NET status: @@ -4040,7 +3842,7 @@ interactions: uri: https://vault-000003.vault.azure.net/keys/key-000004/create?api-version=7.0 response: body: - string: '{"key":{"kid":"https://vault-000003.vault.azure.net/keys/key-000004/3bbde22344c242a886d44a8b64a58bd7","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"pQoWzA7gHyO62BeDUYQIFob8Rj95JwdQ8a8VcRVeJN6TDJL5ub2RqtMgip5lE3_xLerJi-tMPtBTNUJgqcHGVyoznjuxvjPfgoXsc_50W0ScGT_qK5K78aAFVxom48XDLGPN0JRO64Kh5oB0Y-PKqZGqF1QtfwrciaIywQYR6lRmVpWCm2uiAKY6UvAZd3GwUDklRroTrH7pcpZGWT1n4sB1KCGF9XJK7HjnoIdNpewMpe-XdChrrz4_yJwiGisWTSz8Nil_a-yEupiulxzR9v930gSfNN-gefHeZf4o2dWaj6SIDDCbIaPMmRgNfKX-jZqvDV95SB8eBSgXAHW9WQ","e":"AQAB"},"attributes":{"enabled":true,"created":1612860417,"updated":1612860417,"recoveryLevel":"Recoverable"}}' + string: '{"key":{"kid":"https://vault-000003.vault.azure.net/keys/key-000004/269964281e8f463b98ba38736747d863","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"yNnrj1iBxcqWyDVWhxhlLC6M6mLualznJszWf9g8IbWqemIs6v0iXoD1w_8KAnyl9FRMn02kWZEzIJvNsZogeg4c2Uxk7g8HHU52ufEMEtM6kxPpHJ4qJCaa4OGVkLDgMzKVAGZFzohTyOH2OOy4TODdQe2YspJTF42O4pycw67jqghhGswBUicM6IuMvDCHwbcitwpVrdOeqiarCh2Ircxnb-Z0TD6i3klgHcz1JJiLyJFjhwQy1Jv5sB7G9_m4m18ISanKCsZV5O19xNWx6wG9B8_f9g-pRkYtlgGPzKttTldxT8KY6mCWZcgecJvTK8XtNdU8cmiGPr6ohmkJbQ","e":"AQAB"},"attributes":{"enabled":true,"created":1617778977,"updated":1617778977,"recoveryLevel":"Recoverable"}}' headers: cache-control: - no-cache @@ -4049,7 +3851,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:46:57 GMT + - Wed, 07 Apr 2021 07:02:57 GMT expires: - '-1' pragma: @@ -4063,7 +3865,7 @@ interactions: x-ms-keyvault-region: - eastus2 x-ms-keyvault-service-version: - - 1.2.164.0 + - 1.2.236.0 x-powered-by: - ASP.NET status: @@ -4084,14 +3886,14 @@ interactions: - -g -n --key-url --source-vault User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-02-09T08:16:52Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -4100,7 +3902,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:46:58 GMT + - Wed, 07 Apr 2021 07:02:58 GMT expires: - '-1' pragma: @@ -4117,7 +3919,7 @@ interactions: - request: body: '{"location": "eastus2", "identity": {"type": "SystemAssigned"}, "properties": {"activeKey": {"sourceVault": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003"}, - "keyUrl": "https://vault-000003.vault.azure.net/keys/key-000004/3bbde22344c242a886d44a8b64a58bd7"}}}' + "keyUrl": "https://vault-000003.vault.azure.net/keys/key-000004/269964281e8f463b98ba38736747d863"}}}' headers: Accept: - application/json @@ -4134,7 +3936,7 @@ interactions: ParameterSetName: - -g -n --key-url --source-vault User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005?api-version=2020-06-30 response: @@ -4142,11 +3944,11 @@ interactions: string: "{\r\n \"location\": \"eastus2\",\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"activeKey\": {\r\n \ \"sourceVault\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003\"\r\n - \ },\r\n \"keyUrl\": \"https://vault-000003.vault.azure.net/keys/key-000004/3bbde22344c242a886d44a8b64a58bd7\"\r\n + \ },\r\n \"keyUrl\": \"https://vault-000003.vault.azure.net/keys/key-000004/269964281e8f463b98ba38736747d863\"\r\n \ },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/e2617ae3-364f-4f20-acd7-dd37ba78a840?api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/da482378-be52-49c3-acb9-2bfd6ff002a2?api-version=2020-06-30 cache-control: - no-cache content-length: @@ -4154,11 +3956,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:47:09 GMT + - Wed, 07 Apr 2021 07:03:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/e2617ae3-364f-4f20-acd7-dd37ba78a840?monitor=true&api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/da482378-be52-49c3-acb9-2bfd6ff002a2?monitor=true&api-version=2020-06-30 pragma: - no-cache server: @@ -4171,7 +3973,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/HighCostDiskEncryptionSet3Min;99,Microsoft.Compute/HighCostDiskEncryptionSet30Min;299 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 202 message: Accepted @@ -4189,24 +3991,24 @@ interactions: ParameterSetName: - -g -n --key-url --source-vault User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/e2617ae3-364f-4f20-acd7-dd37ba78a840?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/da482378-be52-49c3-acb9-2bfd6ff002a2?api-version=2020-06-30 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T08:47:09.25315+00:00\",\r\n \"endTime\": - \"2021-02-09T08:47:09.3000442+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"properties\": {\r\n \"output\": {\"name\":\"des1-000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\",\"type\":\"Microsoft.Compute/diskEncryptionSets\",\"location\":\"eastus2\",\"identity\":{\"type\":\"SystemAssigned\",\"principalId\":\"a61b1508-4745-4848-82b0-b8dad1093527\",\"tenantId\":\"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"},\"properties\":{\"activeKey\":{\"sourceVault\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003\"},\"keyUrl\":\"https://vault-000003.vault.azure.net/keys/key-000004/3bbde22344c242a886d44a8b64a58bd7\"},\"encryptionType\":\"EncryptionAtRestWithCustomerKey\",\"provisioningState\":\"Succeeded\"}}\r\n - \ },\r\n \"name\": \"e2617ae3-364f-4f20-acd7-dd37ba78a840\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T07:03:09.3427684+00:00\",\r\n \"endTime\": + \"2021-04-07T07:03:09.623984+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"properties\": {\r\n \"output\": {\"name\":\"des1-000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\",\"type\":\"Microsoft.Compute/diskEncryptionSets\",\"location\":\"eastus2\",\"identity\":{\"type\":\"SystemAssigned\",\"principalId\":\"2a9c914c-222b-4778-8d19-a52d90b7e339\",\"tenantId\":\"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"},\"properties\":{\"activeKey\":{\"sourceVault\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003\"},\"keyUrl\":\"https://vault-000003.vault.azure.net/keys/key-000004/269964281e8f463b98ba38736747d863\"},\"encryptionType\":\"EncryptionAtRestWithCustomerKey\",\"provisioningState\":\"Succeeded\"}}\r\n + \ },\r\n \"name\": \"da482378-be52-49c3-acb9-2bfd6ff002a2\"\r\n}" headers: cache-control: - no-cache content-length: - - '1129' + - '1130' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:47:39 GMT + - Wed, 07 Apr 2021 07:03:39 GMT expires: - '-1' pragma: @@ -4223,7 +4025,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49998,Microsoft.Compute/GetOperation30Min;399940 + - Microsoft.Compute/GetOperation3Min;49998,Microsoft.Compute/GetOperation30Min;399944 status: code: 200 message: OK @@ -4241,7 +4043,7 @@ interactions: ParameterSetName: - -g -n --key-url --source-vault User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005?api-version=2020-06-30 response: @@ -4249,10 +4051,10 @@ interactions: string: "{\r\n \"name\": \"des1-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\",\r\n \ \"type\": \"Microsoft.Compute/diskEncryptionSets\",\r\n \"location\": \"eastus2\",\r\n \ \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": - \"a61b1508-4745-4848-82b0-b8dad1093527\",\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n + \"2a9c914c-222b-4778-8d19-a52d90b7e339\",\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n \ },\r\n \"properties\": {\r\n \"activeKey\": {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003\"\r\n - \ },\r\n \"keyUrl\": \"https://vault-000003.vault.azure.net/keys/key-000004/3bbde22344c242a886d44a8b64a58bd7\"\r\n + \ },\r\n \"keyUrl\": \"https://vault-000003.vault.azure.net/keys/key-000004/269964281e8f463b98ba38736747d863\"\r\n \ },\r\n \"encryptionType\": \"EncryptionAtRestWithCustomerKey\",\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: @@ -4263,7 +4065,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:47:39 GMT + - Wed, 07 Apr 2021 07:03:39 GMT expires: - '-1' pragma: @@ -4280,7 +4082,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14997,Microsoft.Compute/LowCostGet30Min;119991 + - Microsoft.Compute/LowCostGet3Min;14996,Microsoft.Compute/LowCostGet30Min;119988 status: code: 200 message: OK @@ -4298,7 +4100,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005?api-version=2020-06-30 response: @@ -4306,10 +4108,10 @@ interactions: string: "{\r\n \"name\": \"des1-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\",\r\n \ \"type\": \"Microsoft.Compute/diskEncryptionSets\",\r\n \"location\": \"eastus2\",\r\n \ \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": - \"a61b1508-4745-4848-82b0-b8dad1093527\",\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n + \"2a9c914c-222b-4778-8d19-a52d90b7e339\",\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n \ },\r\n \"properties\": {\r\n \"activeKey\": {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003\"\r\n - \ },\r\n \"keyUrl\": \"https://vault-000003.vault.azure.net/keys/key-000004/3bbde22344c242a886d44a8b64a58bd7\"\r\n + \ },\r\n \"keyUrl\": \"https://vault-000003.vault.azure.net/keys/key-000004/269964281e8f463b98ba38736747d863\"\r\n \ },\r\n \"encryptionType\": \"EncryptionAtRestWithCustomerKey\",\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: @@ -4320,7 +4122,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:47:41 GMT + - Wed, 07 Apr 2021 07:03:40 GMT expires: - '-1' pragma: @@ -4337,7 +4139,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14996,Microsoft.Compute/LowCostGet30Min;119990 + - Microsoft.Compute/LowCostGet3Min;14995,Microsoft.Compute/LowCostGet30Min;119987 status: code: 200 message: OK @@ -4355,21 +4157,21 @@ interactions: ParameterSetName: - -n --object-id --key-permissions User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azps-test-group/providers/Microsoft.KeyVault/vaults/azps-test-kv2","name":"azps-test-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azps-test-group/providers/Microsoft.KeyVault/vaults/azps-test-kv4","name":"azps-test-kv4","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv1","name":"bim-kv1","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv5","name":"bim-kv5","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{"k1":"v1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkv2","name":"bimkv2","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/dogfood-env-pwd","name":"dogfood-env-pwd","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003","name":"vault-000003","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault1569","name":"vault1569","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.KeyVault/vaults/cli-sni-kv","name":"cli-sni-kv","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.KeyVault/vaults/ase-testdevice-020dc7b13","name":"ase-testdevice-020dc7b13","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{"dbe-resource":"testdevice"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.KeyVault/vaults/ase-ysgatewayd-e2960da93","name":"ase-ysgatewayd-e2960da93","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{"dbe-resource":"ysgatewaydevice"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.KeyVault/vaults/zuhtest","name":"zuhtest","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azps-test-group/providers/Microsoft.KeyVault/vaults/azps-test-kv2","name":"azps-test-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azps-test-group/providers/Microsoft.KeyVault/vaults/azps-test-kv4","name":"azps-test-kv4","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003","name":"vault-000003","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault1569","name":"vault1569","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.KeyVault/vaults/cli-sni-kv","name":"cli-sni-kv","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.KeyVault/vaults/ase-testdevice-020dc7b13","name":"ase-testdevice-020dc7b13","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{"dbe-resource":"testdevice"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.KeyVault/vaults/ase-ysgatewayd-e2960da93","name":"ase-ysgatewayd-e2960da93","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{"dbe-resource":"ysgatewaydevice"}}]}' headers: cache-control: - no-cache content-length: - - '2854' + - '1778' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:47:41 GMT + - Wed, 07 Apr 2021 07:03:41 GMT expires: - '-1' pragma: @@ -4397,7 +4199,7 @@ interactions: ParameterSetName: - -n --object-id --key-permissions User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003?api-version=2019-09-01 response: @@ -4411,7 +4213,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:47:42 GMT + - Wed, 07 Apr 2021 07:03:43 GMT expires: - '-1' pragma: @@ -4429,7 +4231,7 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.218.0 + - 1.1.286.0 x-powered-by: - ASP.NET status: @@ -4445,8 +4247,8 @@ interactions: "import", "update", "managecontacts", "getissuers", "listissuers", "setissuers", "deleteissuers", "manageissuers", "recover"], "storage": ["get", "list", "delete", "set", "update", "regeneratekey", "setsas", "listsas", "getsas", "deletesas"]}}, - {"tenantId": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", "objectId": "a61b1508-4745-4848-82b0-b8dad1093527", - "permissions": {"keys": ["unwrapKey", "get", "wrapKey"]}}], "vaultUri": "https://vault-000003.vault.azure.net/", + {"tenantId": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", "objectId": "2a9c914c-222b-4778-8d19-a52d90b7e339", + "permissions": {"keys": ["get", "unwrapKey", "wrapKey"]}}], "vaultUri": "https://vault-000003.vault.azure.net/", "enabledForDeployment": false, "enableSoftDelete": true, "softDeleteRetentionInDays": 90, "enablePurgeProtection": true}}' headers: @@ -4465,12 +4267,12 @@ interactions: ParameterSetName: - -n --object-id --key-permissions User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003?api-version=2019-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003","name":"vault-000003","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"181c08fa-7ac8-48a6-a869-342ab74566a4","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}},{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"a61b1508-4745-4848-82b0-b8dad1093527","permissions":{"keys":["unwrapKey","get","wrapKey"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://vault-000003.vault.azure.net/","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003","name":"vault-000003","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"181c08fa-7ac8-48a6-a869-342ab74566a4","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}},{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"2a9c914c-222b-4778-8d19-a52d90b7e339","permissions":{"keys":["get","unwrapKey","wrapKey"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://vault-000003.vault.azure.net/","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -4479,7 +4281,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:47:44 GMT + - Wed, 07 Apr 2021 07:03:44 GMT expires: - '-1' pragma: @@ -4497,7 +4299,7 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.218.0 + - 1.1.286.0 x-ms-ratelimit-remaining-subscription-writes: - '1197' x-powered-by: @@ -4520,7 +4322,7 @@ interactions: - --assignee --role --scope User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET @@ -4537,7 +4339,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:47:59 GMT + - Wed, 07 Apr 2021 07:03:59 GMT expires: - '-1' pragma: @@ -4570,11 +4372,11 @@ interactions: - --assignee --role --scope User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27a61b1508-4745-4848-82b0-b8dad1093527%27%29&api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%272a9c914c-222b-4778-8d19-a52d90b7e339%27%29&api-version=1.6 response: body: string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[]}' @@ -4590,19 +4392,19 @@ interactions: dataserviceversion: - 3.0; date: - - Tue, 09 Feb 2021 08:48:00 GMT + - Wed, 07 Apr 2021 07:03:59 GMT duration: - - '2255466' + - '2411684' expires: - '-1' ocp-aad-diagnostics-server-name: - - MzThMBMhuTjKmnKkPyuFpReah/ABWYegVqawzBWtcx8= + - Clwwl5g6dVflYgROwtW0iQqsMQeG93obl8ut0Py8MVc= ocp-aad-session-key: - - qf3MHJ3htVXoae2Z0KKm7DNgGH0wvnQ50g5Zz8NdR-JaS2SHVXsEqcIF_RcML1vURHhQkB1XgBQcie5rjjrfZRDw4T8Mf_r97Iya_e2EPWwskKzBmd2y-uKIfakrThr4.iMfyfp7JAD4EFMQiEQ7Za7HhUGA9cROpI3fqFGY8Ldc + - WrkPR8YJnBCXxCZ78cdNG-1JrFu6nILcuJyMde8uptPpHn0C1O171lVMzSnIHPI5oVvbcbtxPJb0vSSNMnusYDD6VfvXyqDRl1PCxxcAoTQBRpse8ssTjVVuIDaNALf2.oipbuQAW5gkN2K78M5qkSYB0zqMP3LYPalkiBcri3Vc pragma: - no-cache request-id: - - 01ddfacb-8846-4b10-a022-5ea11afc6e52 + - e06a7574-d2e8-4664-a95e-2047219617b2 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -4617,7 +4419,7 @@ interactions: code: 200 message: OK - request: - body: '{"objectIds": ["a61b1508-4745-4848-82b0-b8dad1093527"], "includeDirectoryObjectReferences": + body: '{"objectIds": ["2a9c914c-222b-4778-8d19-a52d90b7e339"], "includeDirectoryObjectReferences": true}' headers: Accept: @@ -4636,14 +4438,14 @@ interactions: - --assignee --role --scope User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: POST uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/getObjectsByObjectIds?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"a61b1508-4745-4848-82b0-b8dad1093527","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005"],"appDisplayName":null,"appId":"e5559476-bb5b-41de-9cf9-761d3348fa42","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"des1-000005","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"3577E488DCDA14D27978B5AD90221BE7D275E38E","endDate":"2021-05-10T08:42:00Z","keyId":"381608c2-e13e-4847-9db8-2c2cbbdd34a9","startDate":"2021-02-09T08:42:00Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["e5559476-bb5b-41de-9cf9-761d3348fa42","https://identity.azure.net/coc+2xBUO05yaGOL5pol5QbyCGn+ajqTFuCIxXQrqP0="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null}]}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"2a9c914c-222b-4778-8d19-a52d90b7e339","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005"],"appDisplayName":null,"appId":"2448e7b5-9a7c-42e3-8d25-c0bdedeb9cd2","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"des1-000005","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"A32C27C873B2344DDE04000B181644B828C0EA09","endDate":"2021-07-06T06:58:00Z","keyId":"dc7aed0b-cf85-4dff-b5ca-4d97e5e55872","startDate":"2021-04-07T06:58:00Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["2448e7b5-9a7c-42e3-8d25-c0bdedeb9cd2","https://identity.azure.net/c7gjJS64c76CBpxAFn8/ZXmVtvQLqGWMbDjBsSyi2pQ="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' @@ -4656,19 +4458,19 @@ interactions: dataserviceversion: - 3.0; date: - - Tue, 09 Feb 2021 08:48:00 GMT + - Wed, 07 Apr 2021 07:04:00 GMT duration: - - '2281221' + - '2925259' expires: - '-1' ocp-aad-diagnostics-server-name: - - bwiMwB116ZrEIuwEbfQgIegc1Rx2/DCI0B8wZCFUMrQ= + - H3X5sLRnXeUZ2cVanDQ0qGcMuY5hagKQ/L4JABuVF7w= ocp-aad-session-key: - - OeENbgDlC3RVraDmklJ8iKJWDJLqKvsnoNlGP1Rnj5-FLeVWVDyxKYmICk8JKmB37ekrNiHIByCKEUEYHC1_9ZiopeRVulW9Hc-7okRMJrpxGnWkolVqF_n62SfuGeI9.a7CKRracELP6lRtN9V8-Xu8e1iNQBVhClu7Ahch0fwg + - U2oKahJ8IZ6J090o-UZ1QNhjJNWwzk-67WrUIXRLmZY02N-Pw1NCD1SN8vikSQ6hFpuMl1FuxMvB6kI06bHEMy2UksQYRmhkwAVucjzP_bartjJyRqgSpww_K0W1c5Qe.gItxg_r7CLPsj2SPUvN_H9K0jQfpDlBUYa0x0IOdqMU pragma: - no-cache request-id: - - 9a484920-440d-4872-a7f2-0591490247da + - 0718f844-959b-4cf1-bc8a-271a386f6daf strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -4684,7 +4486,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7", - "principalId": "a61b1508-4745-4848-82b0-b8dad1093527"}}' + "principalId": "2a9c914c-222b-4778-8d19-a52d90b7e339"}}' headers: Accept: - application/json @@ -4704,14 +4506,14 @@ interactions: - --assignee --role --scope User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"a61b1508-4745-4848-82b0-b8dad1093527","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003","condition":null,"conditionVersion":null,"createdOn":"2021-02-09T08:48:01.4304946Z","updatedOn":"2021-02-09T08:48:02.2454932Z","createdBy":null,"updatedBy":"181c08fa-7ac8-48a6-a869-342ab74566a4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"2a9c914c-222b-4778-8d19-a52d90b7e339","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T07:04:01.5313174Z","updatedOn":"2021-04-07T07:04:01.9213195Z","createdBy":null,"updatedBy":"181c08fa-7ac8-48a6-a869-342ab74566a4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' headers: cache-control: - no-cache @@ -4720,7 +4522,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:48:05 GMT + - Wed, 07 Apr 2021 07:04:04 GMT expires: - '-1' pragma: @@ -4752,14 +4554,14 @@ interactions: --target-region-encryption --managed-image --replica-count User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-02-09T08:16:52Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -4768,7 +4570,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:48:21 GMT + - Wed, 07 Apr 2021 07:04:20 GMT expires: - '-1' pragma: @@ -4805,7 +4607,7 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3?api-version=2019-12-01 response: @@ -4821,21 +4623,21 @@ interactions: \ \"lun\": 0,\r\n \"diskEncryptionSetId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\"\r\n \ }\r\n ]\r\n }\r\n }\r\n ],\r\n \ \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": - \"2021-02-09T08:48:27.536281+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n + \"2021-04-07T07:04:26.4249419+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n \ },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n \ }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9542fca0-dd96-44b5-9250-5b6e62b4ca53?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e17a9e66-74e3-4fbe-9d0b-eb3299436dbc?api-version=2019-12-01 cache-control: - no-cache content-length: - - '1774' + - '1775' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:48:28 GMT + - Wed, 07 Apr 2021 07:04:27 GMT expires: - '-1' pragma: @@ -4869,175 +4671,22 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9542fca0-dd96-44b5-9250-5b6e62b4ca53?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2021-02-09T08:48:27.536281+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"9542fca0-dd96-44b5-9250-5b6e62b4ca53\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '133' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 09 Feb 2021 08:49:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4155 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version create - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions - --target-region-encryption --managed-image --replica-count - User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9542fca0-dd96-44b5-9250-5b6e62b4ca53?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2021-02-09T08:48:27.536281+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"9542fca0-dd96-44b5-9250-5b6e62b4ca53\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '133' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 09 Feb 2021 08:50:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4156 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version create - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions - --target-region-encryption --managed-image --replica-count - User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9542fca0-dd96-44b5-9250-5b6e62b4ca53?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2021-02-09T08:48:27.536281+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"9542fca0-dd96-44b5-9250-5b6e62b4ca53\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '133' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 09 Feb 2021 08:51:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4154 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version create - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions - --target-region-encryption --managed-image --replica-count - User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9542fca0-dd96-44b5-9250-5b6e62b4ca53?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e17a9e66-74e3-4fbe-9d0b-eb3299436dbc?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T08:48:27.536281+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"9542fca0-dd96-44b5-9250-5b6e62b4ca53\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T07:04:26.4249419+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e17a9e66-74e3-4fbe-9d0b-eb3299436dbc\"\r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:52:30 GMT + - Wed, 07 Apr 2021 07:05:28 GMT expires: - '-1' pragma: @@ -5054,7 +4703,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4152 + - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4168 status: code: 200 message: OK @@ -5073,22 +4722,22 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9542fca0-dd96-44b5-9250-5b6e62b4ca53?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e17a9e66-74e3-4fbe-9d0b-eb3299436dbc?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T08:48:27.536281+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"9542fca0-dd96-44b5-9250-5b6e62b4ca53\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T07:04:26.4249419+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e17a9e66-74e3-4fbe-9d0b-eb3299436dbc\"\r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:53:32 GMT + - Wed, 07 Apr 2021 07:06:29 GMT expires: - '-1' pragma: @@ -5105,7 +4754,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4150 + - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4167 status: code: 200 message: OK @@ -5124,22 +4773,22 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9542fca0-dd96-44b5-9250-5b6e62b4ca53?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e17a9e66-74e3-4fbe-9d0b-eb3299436dbc?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T08:48:27.536281+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"9542fca0-dd96-44b5-9250-5b6e62b4ca53\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T07:04:26.4249419+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e17a9e66-74e3-4fbe-9d0b-eb3299436dbc\"\r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:54:32 GMT + - Wed, 07 Apr 2021 07:07:28 GMT expires: - '-1' pragma: @@ -5156,7 +4805,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4148 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4165 status: code: 200 message: OK @@ -5175,22 +4824,22 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9542fca0-dd96-44b5-9250-5b6e62b4ca53?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e17a9e66-74e3-4fbe-9d0b-eb3299436dbc?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T08:48:27.536281+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"9542fca0-dd96-44b5-9250-5b6e62b4ca53\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T07:04:26.4249419+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e17a9e66-74e3-4fbe-9d0b-eb3299436dbc\"\r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:55:32 GMT + - Wed, 07 Apr 2021 07:08:30 GMT expires: - '-1' pragma: @@ -5207,7 +4856,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4155 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4163 status: code: 200 message: OK @@ -5226,22 +4875,22 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9542fca0-dd96-44b5-9250-5b6e62b4ca53?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e17a9e66-74e3-4fbe-9d0b-eb3299436dbc?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T08:48:27.536281+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"9542fca0-dd96-44b5-9250-5b6e62b4ca53\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T07:04:26.4249419+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e17a9e66-74e3-4fbe-9d0b-eb3299436dbc\"\r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:56:33 GMT + - Wed, 07 Apr 2021 07:09:31 GMT expires: - '-1' pragma: @@ -5258,7 +4907,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4153 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4161 status: code: 200 message: OK @@ -5277,22 +4926,22 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9542fca0-dd96-44b5-9250-5b6e62b4ca53?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e17a9e66-74e3-4fbe-9d0b-eb3299436dbc?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T08:48:27.536281+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"9542fca0-dd96-44b5-9250-5b6e62b4ca53\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T07:04:26.4249419+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e17a9e66-74e3-4fbe-9d0b-eb3299436dbc\"\r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:57:33 GMT + - Wed, 07 Apr 2021 07:10:32 GMT expires: - '-1' pragma: @@ -5309,7 +4958,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4151 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4159 status: code: 200 message: OK @@ -5328,23 +4977,23 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9542fca0-dd96-44b5-9250-5b6e62b4ca53?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e17a9e66-74e3-4fbe-9d0b-eb3299436dbc?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T08:48:27.536281+00:00\",\r\n \"endTime\": - \"2021-02-09T08:58:13.0400435+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"9542fca0-dd96-44b5-9250-5b6e62b4ca53\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T07:04:26.4249419+00:00\",\r\n \"endTime\": + \"2021-04-07T07:11:12.3002888+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"e17a9e66-74e3-4fbe-9d0b-eb3299436dbc\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:58:35 GMT + - Wed, 07 Apr 2021 07:11:33 GMT expires: - '-1' pragma: @@ -5361,7 +5010,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4149 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4157 status: code: 200 message: OK @@ -5380,7 +5029,7 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3?api-version=2019-12-01 response: @@ -5396,7 +5045,7 @@ interactions: \ \"lun\": 0,\r\n \"diskEncryptionSetId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\"\r\n \ }\r\n ]\r\n }\r\n }\r\n ],\r\n \ \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": - \"2021-02-09T08:48:27.536281+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n + \"2021-04-07T07:04:26.4249419+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n \ },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n \ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": @@ -5408,11 +5057,11 @@ interactions: cache-control: - no-cache content-length: - - '2033' + - '2034' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:58:35 GMT + - Wed, 07 Apr 2021 07:11:33 GMT expires: - '-1' pragma: @@ -5429,7 +5078,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1997,Microsoft.Compute/GetGalleryImageVersion30Min;9983 + - Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9984 status: code: 200 message: OK @@ -5448,14 +5097,14 @@ interactions: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-02-09T08:16:52Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -5464,7 +5113,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:58:36 GMT + - Wed, 07 Apr 2021 07:11:34 GMT expires: - '-1' pragma: @@ -5492,7 +5141,7 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -5512,7 +5161,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:58:37 GMT + - Wed, 07 Apr 2021 07:11:35 GMT expires: - '-1' pragma: @@ -5529,7 +5178,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;599,Microsoft.Compute/GetGalleryImage30Min;2996 + - Microsoft.Compute/GetGalleryImage3Min;599,Microsoft.Compute/GetGalleryImage30Min;2992 status: code: 200 message: OK @@ -5547,24 +5196,24 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions?api-version=2019-12-01 response: body: string: '{"value":[{"name":"1.1.2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2","type":"Microsoft.Compute/galleries/images/versions","location":"eastus2","tags":{},"properties":{"publishingProfile":{"targetRegions":[{"name":"West US 2","regionalReplicaCount":1,"storageAccountType":"Standard_LRS"},{"name":"East - US 2","regionalReplicaCount":2,"storageAccountType":"Standard_LRS"}],"replicaCount":2,"excludeFromLatest":false,"publishedDate":"2021-02-09T08:23:50.1900748+00:00","storageAccountType":"Standard_LRS"},"storageProfile":{"source":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1"},"osDiskImage":{"sizeInGB":30,"hostCaching":"ReadWrite","source":{}},"dataDiskImages":[{"lun":0,"sizeInGB":10,"hostCaching":"None"}]},"provisioningState":"Succeeded"}},{"name":"1.1.3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3","type":"Microsoft.Compute/galleries/images/versions","location":"eastus2","tags":{},"properties":{"publishingProfile":{"targetRegions":[{"name":"East - US 2","regionalReplicaCount":1,"storageAccountType":"Standard_LRS","encryption":{"osDiskImage":{"diskEncryptionSetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005"},"dataDiskImages":[{"lun":0,"diskEncryptionSetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005"}]}}],"replicaCount":1,"excludeFromLatest":false,"publishedDate":"2021-02-09T08:48:27.536281+00:00","storageAccountType":"Standard_LRS"},"storageProfile":{"source":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1"},"osDiskImage":{"sizeInGB":30,"hostCaching":"ReadWrite","source":{}},"dataDiskImages":[{"lun":0,"sizeInGB":10,"hostCaching":"None"}]},"provisioningState":"Succeeded"}}]}' + US 2","regionalReplicaCount":2,"storageAccountType":"Standard_LRS"}],"replicaCount":2,"excludeFromLatest":false,"publishedDate":"2021-04-07T06:46:51.4464299+00:00","storageAccountType":"Standard_LRS"},"storageProfile":{"source":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1"},"osDiskImage":{"sizeInGB":30,"hostCaching":"ReadWrite","source":{}},"dataDiskImages":[{"lun":0,"sizeInGB":10,"hostCaching":"None"}]},"provisioningState":"Succeeded"}},{"name":"1.1.3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3","type":"Microsoft.Compute/galleries/images/versions","location":"eastus2","tags":{},"properties":{"publishingProfile":{"targetRegions":[{"name":"East + US 2","regionalReplicaCount":1,"storageAccountType":"Standard_LRS","encryption":{"osDiskImage":{"diskEncryptionSetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005"},"dataDiskImages":[{"lun":0,"diskEncryptionSetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005"}]}}],"replicaCount":1,"excludeFromLatest":false,"publishedDate":"2021-04-07T07:04:26.4249419+00:00","storageAccountType":"Standard_LRS"},"storageProfile":{"source":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1"},"osDiskImage":{"sizeInGB":30,"hostCaching":"ReadWrite","source":{}},"dataDiskImages":[{"lun":0,"sizeInGB":10,"hostCaching":"None"}]},"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '2622' + - '2623' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:58:38 GMT + - Wed, 07 Apr 2021 07:11:37 GMT expires: - '-1' pragma: @@ -5576,41 +5225,42 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - db693d7f-4ce0-465e-86ff-964872b2b833 - - 476dbec7-3786-4aeb-bc16-ad595b7e13dc - - bf63d026-72ef-4dbd-8851-0f49711c89e7 - - dc71f67b-c6f0-4e0a-9557-f14fb3d29799 - - e6216fcb-6328-448b-86cf-fe0d1d06e607 - - 0a257f56-8c55-419d-ba53-f0e830d67826 - - 5cf3ab60-6cf6-40c6-a99d-b3249f3f1619 - - 8846ff6e-025c-4e4b-b2a6-54ec7d680d2e - - 1c07e481-10e4-43bb-ae63-6765bc7aa1b7 - - c0d85daa-9ddf-40bd-88db-38fb8700412d - - dd37734f-ebd8-495a-bcd9-180f02a8de39 - - 041ad950-ac5b-4803-a51c-dd7da6b1aacb - - 10686fd4-5b4f-4a15-965c-8768e8003479 - - a5af4142-e96d-4609-92a3-cf6593ed95f1 - - 8860e5d3-4fb3-4067-b7ca-ecadd50f8915 - - d6db4a2a-42ae-49c6-a2bd-1aa7f12ee307 - - bd59c997-f3a8-4628-95a6-bb3fe2c5e9c4 - - a64e245a-aadc-4a74-a71e-0e4264ba8c59 - - bb46fa59-a322-4e88-8ac0-60c956acf8b8 - - 4ce76877-9bb5-43dc-a076-96d471694dac - - 26e5ac4c-145f-41ce-afb5-dcdc0cfb10ba - - 55145462-29fd-4bce-bb98-0b9ff1b0ceb5 - - 58507bf4-9983-42b2-b374-972315d15bd4 - - 47dad74b-f7aa-4351-8705-3acf19ab9f09 - - 23672a80-dda1-4f92-848d-203d3e517eff - - 5bc823de-ad2e-4092-9b90-6ed0c3e4a07a - - 7a2f89e2-a9d8-4633-a174-1f6aaad11b78 - - 7f7d8d3a-999e-422f-830b-571961c25627 - - 0ee55a69-2108-451e-b828-c0bab2dfa0eb - - 069fa305-e381-470b-a011-6580b39b856c - - 4e895199-9a20-473f-ae18-a0700418fea1 - - 4d2a2ccf-3ba6-41c0-a2bb-e2ef95f51009 - - 99cc54b5-2917-4b0c-89b9-2438c350fe63 - - f7b29a4e-5a58-4454-8482-ee3b3f2485c4 - - 0d4ef65b-18b7-4cd5-8ac9-2d87c918a095 + - 6bf137f2-6c90-4bec-8f1c-f12a5e87a0ad + - b4ec8cba-d429-4ef3-bd22-1e624b3ee69b + - d188bc53-59b5-4978-8c09-9265aab91cbc + - 46f7a9dc-9d35-435b-b646-46feeebef6c2 + - 5234704a-dafd-42e4-b2ba-8838a4890a3f + - a913aacf-3b33-46d9-a66c-d6477f5e27da + - 775dc7f1-2da2-439e-a9cd-d056556dfae1 + - da262543-92fd-46ee-8417-709bfbbbdb1c + - 32dba703-ee9d-43da-99c2-cec5b0b79a7e + - 567539c6-3ab1-40f4-828b-8a328d8b5de8 + - de1edae7-2296-4190-950d-ec703ebea847 + - f97692a9-49c7-490d-88b3-f97f9063ee3d + - becc7d89-b22c-4fc6-8e25-ccba7fb110b9 + - 968efc40-a96a-45b0-8bce-2f759f230d24 + - 9534735a-13ae-4e3f-ae6d-5dfd21925e33 + - 3fcc3842-3fb3-43b1-9998-8c83535b8fa8 + - a60d3992-d67a-42de-acb0-c111c7eaf40e + - 3798d339-195e-47da-827b-38658c12cead + - 86e0a5ef-ca3c-44d5-bcee-609204ed4948 + - 3d1fb484-ccf8-4a13-bfcc-d9612f476a88 + - 40bdb86c-c8f6-40b7-a9a8-3f743a107e54 + - 0d705aee-52e1-4ae4-9a09-146f89060ebb + - a4c828cc-c758-429e-b6b0-e9e09a4db0d5 + - ec8f46f5-4f03-4763-8bf5-bab448d99331 + - 0874e590-69de-4078-9f79-bca569197706 + - 6f9eaf53-6220-4433-85d8-661fb94eb965 + - e08f1e46-aaa8-40c1-aab0-0f84ebb3e668 + - 79c70fd4-744f-4b9c-a53a-40aac7c0ba95 + - 414acd46-6e33-4c3b-9f17-46a8cee575f3 + - 0571792a-6f87-417a-a252-3e53d8e04c7a + - 1daf36b8-c8b9-4ce7-94b6-42ee02c358a7 + - 925ff328-16ef-4a06-a39f-b9ae28cd55ee + - 67042f2f-39d8-461f-87fd-8814b7f4e3e3 + - 26874701-ad1b-4cba-8247-20c87a1dd4ab + - 1813beb8-689b-4c0d-8288-55af0675df76 + - cf7f7f10-cf25-422e-aead-f3ac3a6ab066 status: code: 200 message: OK @@ -5628,37 +5278,37 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vm1VNET\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\r\n - \ \"etag\": \"W/\\\"0719c752-cb4e-413b-afa7-17f541ae3411\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"b9408703-5d69-423d-93ca-30492b88ac48\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"9b9bc1ab-9d3b-4e3d-8d75-b8580b172526\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"fa192f41-3cb5-486d-87c8-161844491001\",\r\n \ \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n \ ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"vm1Subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\r\n - \ \"etag\": \"W/\\\"0719c752-cb4e-413b-afa7-17f541ae3411\\\"\",\r\n + \ \"etag\": \"W/\\\"b9408703-5d69-423d-93ca-30492b88ac48\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \ \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n }\r\n ]\r\n}" + false\r\n }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '1751' + - '1713' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:58:40 GMT + - Wed, 07 Apr 2021 07:11:37 GMT expires: - '-1' pragma: @@ -5675,7 +5325,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7611e9ef-0f0f-4916-a5b5-a31fd3ec2b19 + - 7b766ed7-c978-48d3-bfe6-fe577f7286cb status: code: 200 message: OK @@ -5705,8 +5355,8 @@ interactions: "fromImage"}]}, "osProfile": {"computerName": "vmFromImage", "adminUsername": "clitest1", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj - fey@DESKTOP-ARGPJS4\n", "path": "/home/clitest1/.ssh/authorized_keys"}]}}}}}], - "outputs": {}}, "parameters": {}, "mode": "Incremental"}}' + fey@DESKTOP-ARGPJS4\n", "path": "/home/clitest1/.ssh/authorized_keys"}]}}}, + "securityProfile": {}}}], "outputs": {}}, "parameters": {}, "mode": "Incremental"}}' headers: Accept: - application/json @@ -5717,32 +5367,32 @@ interactions: Connection: - keep-alive Content-Length: - - '3392' + - '3415' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Nm5gYqcuz8ds22Go9aNvzrOno7VFXEA","name":"vm_deploy_5Nm5gYqcuz8ds22Go9aNvzrOno7VFXEA","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8771335936828896680","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-02-09T08:58:45.5080196Z","duration":"PT2.6746507S","correlationId":"cae58d81-3492-4bc4-83eb-dd1f72661451","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmFromImageNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmFromImagePublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vmFromImage"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_I9UPqJDfiQN4NQfBRwkvUbMmTZQtm4hi","name":"vm_deploy_I9UPqJDfiQN4NQfBRwkvUbMmTZQtm4hi","type":"Microsoft.Resources/deployments","properties":{"templateHash":"18070468837859714863","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-07T07:11:43.0808925Z","duration":"PT2.7259495S","correlationId":"eee2f147-c046-4f53-840d-6d4b3fd44f44","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmFromImageNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmFromImagePublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vmFromImage"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Nm5gYqcuz8ds22Go9aNvzrOno7VFXEA/operationStatuses/08585887457626442727?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_I9UPqJDfiQN4NQfBRwkvUbMmTZQtm4hi/operationStatuses/08585838273851226843?api-version=2020-10-01 cache-control: - no-cache content-length: - - '2488' + - '2489' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:58:46 GMT + - Wed, 07 Apr 2021 07:11:44 GMT expires: - '-1' pragma: @@ -5752,7 +5402,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1196' status: code: 201 message: Created @@ -5771,9 +5421,9 @@ interactions: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585887457626442727?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585838273851226843?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -5785,7 +5435,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:59:17 GMT + - Wed, 07 Apr 2021 07:12:15 GMT expires: - '-1' pragma: @@ -5814,9 +5464,9 @@ interactions: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585887457626442727?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585838273851226843?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -5828,7 +5478,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 08:59:48 GMT + - Wed, 07 Apr 2021 07:12:45 GMT expires: - '-1' pragma: @@ -5857,9 +5507,9 @@ interactions: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585887457626442727?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585838273851226843?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -5871,7 +5521,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 09:00:18 GMT + - Wed, 07 Apr 2021 07:13:16 GMT expires: - '-1' pragma: @@ -5900,21 +5550,21 @@ interactions: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Nm5gYqcuz8ds22Go9aNvzrOno7VFXEA","name":"vm_deploy_5Nm5gYqcuz8ds22Go9aNvzrOno7VFXEA","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8771335936828896680","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-02-09T08:59:59.8740654Z","duration":"PT1M17.0406965S","correlationId":"cae58d81-3492-4bc4-83eb-dd1f72661451","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmFromImageNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmFromImagePublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vmFromImage"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_I9UPqJDfiQN4NQfBRwkvUbMmTZQtm4hi","name":"vm_deploy_I9UPqJDfiQN4NQfBRwkvUbMmTZQtm4hi","type":"Microsoft.Resources/deployments","properties":{"templateHash":"18070468837859714863","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-07T07:12:52.164909Z","duration":"PT1M11.809966S","correlationId":"eee2f147-c046-4f53-840d-6d4b3fd44f44","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmFromImageNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmFromImagePublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vmFromImage"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"}]}}' headers: cache-control: - no-cache content-length: - - '3383' + - '3382' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 09:00:19 GMT + - Wed, 07 Apr 2021 07:13:16 GMT expires: - '-1' pragma: @@ -5942,31 +5592,31 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage?$expand=instanceView&api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"vmFromImage\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"6d082f42-136a-4d5c-ad3a-f0172859b086\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"8e59d54f-80b1-48e9-8a36-eaa92bd76858\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1\",\r\n \ \"exactVersion\": \"1.1.3\"\r\n },\r\n \"osDisk\": {\r\n - \ \"osType\": \"Linux\",\r\n \"name\": \"vmFromImage_OsDisk_1_5c8bbe3f8ab9426cb8c4005307c43aef\",\r\n + \ \"osType\": \"Linux\",\r\n \"name\": \"vmFromImage_OsDisk_1_3928c1b74ef74e0bab68715f45e0488e\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"diskEncryptionSet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\"\r\n \ },\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_5c8bbe3f8ab9426cb8c4005307c43aef\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_3928c1b74ef74e0bab68715f45e0488e\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": - [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vmFromImage_lun_0_2_b2fce01cb5564a51b3880a52c572b524\",\r\n + [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vmFromImage_lun_0_2_101b54b6630445b6b9c76b6674048977\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \ \"managedDisk\": {\r\n \"diskEncryptionSet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\"\r\n \ },\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vmFromImage_lun_0_2_b2fce01cb5564a51b3880a52c572b524\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vmFromImage_lun_0_2_101b54b6630445b6b9c76b6674048977\"\r\n \ },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmFromImage\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": @@ -5981,24 +5631,24 @@ interactions: {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic\"}]},\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\": \"vmFromImage\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": - \"18.04\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.53\",\r\n + \"18.04\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.54.2\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \ \"message\": \"Guest Agent is running\",\r\n \"time\": - \"2021-02-09T09:00:17+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vmFromImage_OsDisk_1_5c8bbe3f8ab9426cb8c4005307c43aef\",\r\n + \"2021-04-07T07:13:16+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vmFromImage_OsDisk_1_3928c1b74ef74e0bab68715f45e0488e\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-02-09T08:59:15.2347873+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-07T07:12:12.2239947+00:00\"\r\n \ }\r\n ]\r\n },\r\n {\r\n \"name\": - \"vmFromImage_lun_0_2_b2fce01cb5564a51b3880a52c572b524\",\r\n \"statuses\": + \"vmFromImage_lun_0_2_101b54b6630445b6b9c76b6674048977\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-02-09T08:59:15.2347873+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-07T07:12:12.2239947+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-02-09T08:59:58.9538503+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-07T07:12:49.2873514+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n \ }\r\n ]\r\n }\r\n }\r\n}" @@ -6006,11 +5656,11 @@ interactions: cache-control: - no-cache content-length: - - '5548' + - '5550' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 09:00:20 GMT + - Wed, 07 Apr 2021 07:13:18 GMT expires: - '-1' pragma: @@ -6027,7 +5677,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31993 + - Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31981 status: code: 200 message: OK @@ -6045,18 +5695,18 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"vmFromImageVMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic\",\r\n - \ \"etag\": \"W/\\\"69b4ed35-9e15-4695-9b13-18bbeb7a5ae5\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"ee4160c4-eee3-48fa-8a3b-895ffc51f5e0\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"b9e014f8-46f8-4395-a5ed-e979d2ae39bd\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"76f139d2-4d07-4a3d-a3df-63eae3ad20b1\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvmFromImage\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/ipConfigurations/ipconfigvmFromImage\",\r\n - \ \"etag\": \"W/\\\"69b4ed35-9e15-4695-9b13-18bbeb7a5ae5\\\"\",\r\n + \ \"etag\": \"W/\\\"ee4160c4-eee3-48fa-8a3b-895ffc51f5e0\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": @@ -6065,8 +5715,8 @@ interactions: \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": - \"vpazxgz1tu4u3dlvxbmawfzfeg.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-04-B7-C9\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"iexrt4vvhrwurb4icymeisiqab.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-05-4A-FC\",\r\n \"enableAcceleratedNetworking\": false,\r\n \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -6080,9 +5730,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 09:00:20 GMT + - Wed, 07 Apr 2021 07:13:18 GMT etag: - - W/"69b4ed35-9e15-4695-9b13-18bbeb7a5ae5" + - W/"ee4160c4-eee3-48fa-8a3b-895ffc51f5e0" expires: - '-1' pragma: @@ -6099,7 +5749,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a7c18970-7130-4792-b8bc-3fcb168c943a + - faec7f0a-9101-4bd7-8bad-33746f3eff77 status: code: 200 message: OK @@ -6117,17 +5767,17 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"vmFromImagePublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\",\r\n - \ \"etag\": \"W/\\\"019f5921-a9af-407d-abe5-ed2adfbf0a36\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"1f9a45c1-43f3-4f46-901b-19b3582abc5c\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"c08feca9-038b-49d1-aad8-ce4af5aab206\",\r\n - \ \"ipAddress\": \"52.179.251.164\",\r\n \"publicIPAddressVersion\": - \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + \"Succeeded\",\r\n \"resourceGuid\": \"4df1c8f2-63a0-4fec-8432-a5efe86d898a\",\r\n + \ \"ipAddress\": \"52.167.7.197\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/ipConfigurations/ipconfigvmFromImage\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" @@ -6135,13 +5785,13 @@ interactions: cache-control: - no-cache content-length: - - '1031' + - '1029' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 09:00:21 GMT + - Wed, 07 Apr 2021 07:13:18 GMT etag: - - W/"019f5921-a9af-407d-abe5-ed2adfbf0a36" + - W/"1f9a45c1-43f3-4f46-901b-19b3582abc5c" expires: - '-1' pragma: @@ -6158,7 +5808,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 44b23cef-cc35-4481-ab88-07f71bb91474 + - 6c37a6d4-104b-41bd-acd0-2cf1503f7be3 status: code: 200 message: OK @@ -6178,7 +5828,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2019-12-01 response: @@ -6186,17 +5836,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/bca43314-e87d-4b33-97d3-19b730389030?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a2da3e83-0e61-47ee-94d1-2f212fa54e26?api-version=2019-12-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 09 Feb 2021 09:00:23 GMT + - Wed, 07 Apr 2021 07:13:21 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/bca43314-e87d-4b33-97d3-19b730389030?monitor=true&api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a2da3e83-0e61-47ee-94d1-2f212fa54e26?monitor=true&api-version=2019-12-01 pragma: - no-cache server: @@ -6227,13 +5877,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/bca43314-e87d-4b33-97d3-19b730389030?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a2da3e83-0e61-47ee-94d1-2f212fa54e26?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T09:00:23.1381593+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"bca43314-e87d-4b33-97d3-19b730389030\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T07:13:21.2271069+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"a2da3e83-0e61-47ee-94d1-2f212fa54e26\"\r\n}" headers: cache-control: - no-cache @@ -6242,7 +5892,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 09:01:23 GMT + - Wed, 07 Apr 2021 07:14:21 GMT expires: - '-1' pragma: @@ -6259,7 +5909,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4157 + - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4155 status: code: 200 message: OK @@ -6277,14 +5927,14 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/bca43314-e87d-4b33-97d3-19b730389030?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a2da3e83-0e61-47ee-94d1-2f212fa54e26?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T09:00:23.1381593+00:00\",\r\n \"endTime\": - \"2021-02-09T09:01:54.2193194+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"bca43314-e87d-4b33-97d3-19b730389030\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T07:13:21.2271069+00:00\",\r\n \"endTime\": + \"2021-04-07T07:14:52.2464096+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"a2da3e83-0e61-47ee-94d1-2f212fa54e26\"\r\n}" headers: cache-control: - no-cache @@ -6293,7 +5943,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 09:02:23 GMT + - Wed, 07 Apr 2021 07:15:23 GMT expires: - '-1' pragma: @@ -6310,7 +5960,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4155 + - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4159 status: code: 200 message: OK @@ -6330,7 +5980,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3?api-version=2019-12-01 response: @@ -6338,17 +5988,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/b9f40304-2109-4e56-aaa2-15237d617835?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/5329ee2d-2dbf-48ba-9a2a-bc8a39dfbb91?api-version=2019-12-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 09 Feb 2021 09:02:25 GMT + - Wed, 07 Apr 2021 07:15:25 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/b9f40304-2109-4e56-aaa2-15237d617835?monitor=true&api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/5329ee2d-2dbf-48ba-9a2a-bc8a39dfbb91?monitor=true&api-version=2019-12-01 pragma: - no-cache server: @@ -6379,13 +6029,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/b9f40304-2109-4e56-aaa2-15237d617835?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/5329ee2d-2dbf-48ba-9a2a-bc8a39dfbb91?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T09:02:25.5484847+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"b9f40304-2109-4e56-aaa2-15237d617835\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T07:15:25.5289754+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"5329ee2d-2dbf-48ba-9a2a-bc8a39dfbb91\"\r\n}" headers: cache-control: - no-cache @@ -6394,7 +6044,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 09:03:25 GMT + - Wed, 07 Apr 2021 07:16:26 GMT expires: - '-1' pragma: @@ -6411,7 +6061,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4153 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4157 status: code: 200 message: OK @@ -6429,14 +6079,14 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/b9f40304-2109-4e56-aaa2-15237d617835?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/5329ee2d-2dbf-48ba-9a2a-bc8a39dfbb91?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T09:02:25.5484847+00:00\",\r\n \"endTime\": - \"2021-02-09T09:03:55.7702684+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"b9f40304-2109-4e56-aaa2-15237d617835\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T07:15:25.5289754+00:00\",\r\n \"endTime\": + \"2021-04-07T07:16:55.7512365+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"5329ee2d-2dbf-48ba-9a2a-bc8a39dfbb91\"\r\n}" headers: cache-control: - no-cache @@ -6445,7 +6095,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 09:04:26 GMT + - Wed, 07 Apr 2021 07:17:27 GMT expires: - '-1' pragma: @@ -6462,7 +6112,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4151 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4155 status: code: 200 message: OK @@ -6482,7 +6132,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -6490,17 +6140,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/2bab18c4-256e-4126-95ec-7a82b681a47f?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/843c2e5f-60fc-475e-8ae5-0a1bc59b7c5f?api-version=2020-09-30 cache-control: - no-cache content-length: - '0' date: - - Tue, 09 Feb 2021 09:05:28 GMT + - Wed, 07 Apr 2021 07:18:28 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/2bab18c4-256e-4126-95ec-7a82b681a47f?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/843c2e5f-60fc-475e-8ae5-0a1bc59b7c5f?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -6531,14 +6181,14 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/2bab18c4-256e-4126-95ec-7a82b681a47f?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/843c2e5f-60fc-475e-8ae5-0a1bc59b7c5f?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T09:05:28.9765098+00:00\",\r\n \"endTime\": - \"2021-02-09T09:05:29.1952686+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"2bab18c4-256e-4126-95ec-7a82b681a47f\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T07:18:29.3017311+00:00\",\r\n \"endTime\": + \"2021-04-07T07:18:29.5204659+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"843c2e5f-60fc-475e-8ae5-0a1bc59b7c5f\"\r\n}" headers: cache-control: - no-cache @@ -6547,7 +6197,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 09:05:58 GMT + - Wed, 07 Apr 2021 07:18:58 GMT expires: - '-1' pragma: @@ -6564,7 +6214,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4156 + - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4152 status: code: 200 message: OK @@ -6584,7 +6234,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01 response: @@ -6592,17 +6242,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/807bfe4c-c313-40d8-90c0-f14bea143781?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/252286b1-92e1-45f7-93ff-420f9ca1dde2?api-version=2019-12-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 09 Feb 2021 09:06:02 GMT + - Wed, 07 Apr 2021 07:19:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/807bfe4c-c313-40d8-90c0-f14bea143781?monitor=true&api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/252286b1-92e1-45f7-93ff-420f9ca1dde2?monitor=true&api-version=2019-12-01 pragma: - no-cache server: @@ -6615,7 +6265,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;299 x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted @@ -6633,23 +6283,23 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/807bfe4c-c313-40d8-90c0-f14bea143781?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/252286b1-92e1-45f7-93ff-420f9ca1dde2?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T09:06:02.0371606+00:00\",\r\n \"endTime\": - \"2021-02-09T09:06:02.1309537+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"807bfe4c-c313-40d8-90c0-f14bea143781\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T07:19:01.6310483+00:00\",\r\n \"endTime\": + \"2021-04-07T07:19:01.740427+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"252286b1-92e1-45f7-93ff-420f9ca1dde2\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 09:06:32 GMT + - Wed, 07 Apr 2021 07:19:31 GMT expires: - '-1' pragma: @@ -6666,7 +6316,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4154 + - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4150 status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_image_version_vhd.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_image_version_vhd.yaml index 4912a84945b..076622e7073 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_image_version_vhd.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_image_version_vhd.yaml @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001","name":"cli_test_gallery_image_version_vhd000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-04T03:54:16Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001","name":"cli_test_gallery_image_version_vhd000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:51:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Feb 2021 03:54:19 GMT + - Wed, 07 Apr 2021 06:51:57 GMT expires: - '-1' pragma: @@ -109,17 +109,17 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Thu, 04 Feb 2021 03:54:20 GMT + - Wed, 07 Apr 2021 06:51:58 GMT etag: - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" expires: - - Thu, 04 Feb 2021 03:59:20 GMT + - Wed, 07 Apr 2021 06:56:58 GMT source-age: - - '117' + - '84' strict-transport-security: - max-age=31536000 vary: - - Authorization,Accept-Encoding, Accept-Encoding + - Authorization,Accept-Encoding via: - 1.1 varnish x-cache: @@ -129,15 +129,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 41dcfcbaee8fbb35bf6ad913fa2eed0a6b4414a7 + - 1a49620424ae943570c2801ce166e91ada36b574 x-frame-options: - deny x-github-request-id: - - 5422:73CE:1325FD:147511:601AFDDB + - F382:5F6B:C6E59:EBF3D:606D47A2 x-served-by: - - cache-sin18020-SIN + - cache-qpg1255-QPG x-timer: - - S1612410860.388120,VS0,VE1 + - S1617778318.167205,VS0,VE0 x-xss-protection: - 1; mode=block status: @@ -157,9 +157,9 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-storage/16.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Storage/storageAccounts?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Storage/storageAccounts?api-version=2021-01-01 response: body: string: '{"value":[]}' @@ -171,7 +171,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Feb 2021 03:54:20 GMT + - Wed, 07 Apr 2021 06:51:58 GMT expires: - '-1' pragma: @@ -199,7 +199,7 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 response: @@ -213,7 +213,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Feb 2021 03:54:20 GMT + - Wed, 07 Apr 2021 06:51:58 GMT expires: - '-1' pragma: @@ -230,7 +230,7 @@ interactions: - request: body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": {}, "variables": {}, "resources": - [{"type": "Microsoft.Storage/storageAccounts", "name": "vhdstorageb2021609b92761", + [{"type": "Microsoft.Storage/storageAccounts", "name": "vhdstorage2a243d38c829b4", "apiVersion": "2015-06-15", "location": "westus", "tags": {}, "dependsOn": [], "properties": {"accountType": "Premium_LRS"}}, {"name": "vm1VNET", "type": "Microsoft.Network/virtualNetworks", "location": "westus", "apiVersion": "2015-06-15", "dependsOn": [], "tags": {}, @@ -247,19 +247,19 @@ interactions: "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"}, "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"}}}], "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"}}}, - {"apiVersion": "2020-06-01", "type": "Microsoft.Compute/virtualMachines", "name": - "vm1", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Storage/storageAccounts/vhdstorageb2021609b92761", + {"apiVersion": "2020-12-01", "type": "Microsoft.Compute/virtualMachines", "name": + "vm1", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Storage/storageAccounts/vhdstorage2a243d38c829b4", "Microsoft.Network/networkInterfaces/vm1VMNic"], "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"}]}, - "storageProfile": {"osDisk": {"createOption": "fromImage", "name": "osdisk_b2021609b9", - "caching": "ReadWrite", "vhd": {"uri": "https://vhdstorageb2021609b92761.blob.core.windows.net/vhds/osdisk_b2021609b9.vhd"}}, + "storageProfile": {"osDisk": {"createOption": "fromImage", "name": "osdisk_2a243d38c8", + "caching": "ReadWrite", "vhd": {"uri": "https://vhdstorage2a243d38c829b4.blob.core.windows.net/vhds/osdisk_2a243d38c8.vhd"}}, "imageReference": {"publisher": "OpenLogic", "offer": "CentOS", "sku": "7.5", "version": "latest"}}, "osProfile": {"computerName": "vm1", "adminUsername": "fey", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj - fey@DESKTOP-ARGPJS4\n", "path": "/home/fey/.ssh/authorized_keys"}]}}}}}], "outputs": - {}}, "parameters": {}, "mode": "Incremental"}}' + fey@DESKTOP-ARGPJS4\n", "path": "/home/fey/.ssh/authorized_keys"}]}}}, "securityProfile": + {}}}], "outputs": {}}, "parameters": {}, "mode": "Incremental"}}' headers: Accept: - application/json @@ -270,32 +270,32 @@ interactions: Connection: - keep-alive Content-Length: - - '3721' + - '3744' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/vm_deploy_CoLUp0fDz6yy4ZeMzTMSQZjWwyzw0Hyb","name":"vm_deploy_CoLUp0fDz6yy4ZeMzTMSQZjWwyzw0Hyb","type":"Microsoft.Resources/deployments","properties":{"templateHash":"1886528260345570948","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-02-04T03:54:25.395907Z","duration":"PT2.6091459S","correlationId":"0d0db64f-d901-4103-8ba1-d5a23a5bc3e9","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Storage/storageAccounts/vhdstorageb2021609b92761","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstorageb2021609b92761"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/vm_deploy_GIbZF2ckUQhy8wxkQazJPm1wqEySHNxO","name":"vm_deploy_GIbZF2ckUQhy8wxkQazJPm1wqEySHNxO","type":"Microsoft.Resources/deployments","properties":{"templateHash":"11695746293253421809","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-07T06:52:02.8500619Z","duration":"PT2.3194384S","correlationId":"abe5deee-2f15-4722-a21a-0c52c00823b3","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Storage/storageAccounts/vhdstorage2a243d38c829b4","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstorage2a243d38c829b4"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/vm_deploy_CoLUp0fDz6yy4ZeMzTMSQZjWwyzw0Hyb/operationStatuses/08585891960226908815?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/vm_deploy_GIbZF2ckUQhy8wxkQazJPm1wqEySHNxO/operationStatuses/08585838285649470271?api-version=2020-10-01 cache-control: - no-cache content-length: - - '3165' + - '3167' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Feb 2021 03:54:26 GMT + - Wed, 07 Apr 2021 06:52:03 GMT expires: - '-1' pragma: @@ -305,7 +305,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -323,10 +323,10 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585891960226908815?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585838285649470271?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -338,7 +338,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Feb 2021 03:54:57 GMT + - Wed, 07 Apr 2021 06:52:34 GMT expires: - '-1' pragma: @@ -366,10 +366,10 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585891960226908815?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585838285649470271?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -381,7 +381,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Feb 2021 03:55:27 GMT + - Wed, 07 Apr 2021 06:53:04 GMT expires: - '-1' pragma: @@ -409,10 +409,10 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585891960226908815?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585838285649470271?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -424,7 +424,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Feb 2021 03:55:58 GMT + - Wed, 07 Apr 2021 06:53:35 GMT expires: - '-1' pragma: @@ -452,10 +452,10 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585891960226908815?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585838285649470271?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -467,7 +467,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Feb 2021 03:56:28 GMT + - Wed, 07 Apr 2021 06:54:05 GMT expires: - '-1' pragma: @@ -495,13 +495,13 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/vm_deploy_CoLUp0fDz6yy4ZeMzTMSQZjWwyzw0Hyb","name":"vm_deploy_CoLUp0fDz6yy4ZeMzTMSQZjWwyzw0Hyb","type":"Microsoft.Resources/deployments","properties":{"templateHash":"1886528260345570948","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-02-04T03:56:15.4004564Z","duration":"PT1M52.6136953S","correlationId":"0d0db64f-d901-4103-8ba1-d5a23a5bc3e9","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Storage/storageAccounts/vhdstorageb2021609b92761","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstorageb2021609b92761"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Storage/storageAccounts/vhdstorageb2021609b92761"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/vm_deploy_GIbZF2ckUQhy8wxkQazJPm1wqEySHNxO","name":"vm_deploy_GIbZF2ckUQhy8wxkQazJPm1wqEySHNxO","type":"Microsoft.Resources/deployments","properties":{"templateHash":"11695746293253421809","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-07T06:53:45.668868Z","duration":"PT1M45.1382445S","correlationId":"abe5deee-2f15-4722-a21a-0c52c00823b3","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Storage/storageAccounts/vhdstorage2a243d38c829b4","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstorage2a243d38c829b4"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Storage/storageAccounts/vhdstorage2a243d38c829b4"}]}}' headers: cache-control: - no-cache @@ -510,7 +510,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Feb 2021 03:56:28 GMT + - Wed, 07 Apr 2021 06:54:06 GMT expires: - '-1' pragma: @@ -538,21 +538,21 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"dd742455-5934-49b1-ad94-bf2a5a8e17c9\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"b3eab87f-b45e-46f8-8947-1304f1cd04f4\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"OpenLogic\",\r\n \"offer\": \"CentOS\",\r\n \"sku\": \"7.5\",\r\n \ \"version\": \"latest\",\r\n \"exactVersion\": \"7.5.201808150\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"osdisk_b2021609b9\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": - {\r\n \"uri\": \"https://vhdstorageb2021609b92761.blob.core.windows.net/vhds/osdisk_b2021609b9.vhd\"\r\n + \"osdisk_2a243d38c8\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": + {\r\n \"uri\": \"https://vhdstorage2a243d38c829b4.blob.core.windows.net/vhds/osdisk_2a243d38c8.vhd\"\r\n \ },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"fey\",\r\n @@ -567,19 +567,19 @@ interactions: {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\": \"vm1\",\r\n \"osName\": \"centos\",\r\n \"osVersion\": \"7.5.1804\",\r\n - \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.53\",\r\n \"statuses\": + \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.54.2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \ \"message\": \"Guest Agent is running\",\r\n \"time\": - \"2021-02-04T03:56:29+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osdisk_b2021609b9\",\r\n + \"2021-04-07T06:54:03+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osdisk_2a243d38c8\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-02-04T03:55:00.6239034+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-07T06:52:35.2526522+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-02-04T03:56:13.9079706+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-07T06:53:44.3807519+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n \ }\r\n ]\r\n }\r\n }\r\n}" @@ -587,11 +587,11 @@ interactions: cache-control: - no-cache content-length: - - '3578' + - '3580' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Feb 2021 03:56:30 GMT + - Wed, 07 Apr 2021 06:54:07 GMT expires: - '-1' pragma: @@ -608,7 +608,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31985 + - Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31936 status: code: 200 message: OK @@ -626,18 +626,18 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"vm1VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\r\n - \ \"etag\": \"W/\\\"0a873530-729d-4d60-8c8f-facc6eec02ea\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"184ff364-db10-42fb-b53c-86e4eec887aa\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"a12d6e42-ba56-49b4-995f-d37100ddd002\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"381a84e5-42d8-4264-82df-cf4c4b98ac35\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm1\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\r\n - \ \"etag\": \"W/\\\"0a873530-729d-4d60-8c8f-facc6eec02ea\\\"\",\r\n + \ \"etag\": \"W/\\\"184ff364-db10-42fb-b53c-86e4eec887aa\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -646,8 +646,8 @@ interactions: \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": - \"x5tayipp5moexevrekdzmxpunh.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-31-85-17\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"3n4dhbnmorpexm0qz2syuxa2va.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-22-48-08-AE-98\",\r\n \"enableAcceleratedNetworking\": false,\r\n \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -661,9 +661,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Feb 2021 03:56:31 GMT + - Wed, 07 Apr 2021 06:54:08 GMT etag: - - W/"0a873530-729d-4d60-8c8f-facc6eec02ea" + - W/"184ff364-db10-42fb-b53c-86e4eec887aa" expires: - '-1' pragma: @@ -680,7 +680,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c60984d2-4237-4290-8d7b-5256997d62d8 + - 91e7a542-2dd2-41e7-9a07-cd9773d11881 status: code: 200 message: OK @@ -698,17 +698,17 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"vm1PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\r\n - \ \"etag\": \"W/\\\"52b8b14c-97e3-40da-9c26-d453e865fd06\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"cead7d18-2fc9-4538-8a87-e11009e6eddb\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"116e3994-9348-416f-8603-fa73dced2af9\",\r\n - \ \"ipAddress\": \"104.42.57.227\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n - \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + \"Succeeded\",\r\n \"resourceGuid\": \"40647f25-6da9-4f6a-a06c-3b8603429476\",\r\n + \ \"ipAddress\": \"138.91.164.153\",\r\n \"publicIPAddressVersion\": + \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" @@ -716,13 +716,13 @@ interactions: cache-control: - no-cache content-length: - - '997' + - '998' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Feb 2021 03:56:31 GMT + - Wed, 07 Apr 2021 06:54:08 GMT etag: - - W/"52b8b14c-97e3-40da-9c26-d453e865fd06" + - W/"cead7d18-2fc9-4538-8a87-e11009e6eddb" expires: - '-1' pragma: @@ -739,7 +739,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f29eaf71-9991-4f2b-bf15-002dc0f342ab + - ed37aadc-64f6-4e4f-a82c-1a43189f8199 status: code: 200 message: OK @@ -757,21 +757,21 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"dd742455-5934-49b1-ad94-bf2a5a8e17c9\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"b3eab87f-b45e-46f8-8947-1304f1cd04f4\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"OpenLogic\",\r\n \"offer\": \"CentOS\",\r\n \"sku\": \"7.5\",\r\n \ \"version\": \"latest\",\r\n \"exactVersion\": \"7.5.201808150\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"osdisk_b2021609b9\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": - {\r\n \"uri\": \"https://vhdstorageb2021609b92761.blob.core.windows.net/vhds/osdisk_b2021609b9.vhd\"\r\n + \"osdisk_2a243d38c8\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": + {\r\n \"uri\": \"https://vhdstorage2a243d38c829b4.blob.core.windows.net/vhds/osdisk_2a243d38c8.vhd\"\r\n \ },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"fey\",\r\n @@ -793,7 +793,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Feb 2021 03:56:32 GMT + - Wed, 07 Apr 2021 06:54:09 GMT expires: - '-1' pragma: @@ -810,7 +810,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31984 + - Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31935 status: code: 200 message: OK @@ -828,15 +828,15 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001","name":"cli_test_gallery_image_version_vhd000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-04T03:54:16Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001","name":"cli_test_gallery_image_version_vhd000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:51:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -845,7 +845,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Feb 2021 03:56:32 GMT + - Wed, 07 Apr 2021 06:54:09 GMT expires: - '-1' pragma: @@ -877,7 +877,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01 response: @@ -885,11 +885,11 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_GNXCJMPT2IZB\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_A3WDKGOIXGUV\"\r\n },\r\n \ \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/7b7aa46e-42b5-4614-b5bc-58e47658da6b?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/6c8a1d50-dcd2-46bc-b20e-4ce8d9254b43?api-version=2019-12-01 cache-control: - no-cache content-length: @@ -897,7 +897,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Feb 2021 03:56:39 GMT + - Wed, 07 Apr 2021 06:54:14 GMT expires: - '-1' pragma: @@ -910,9 +910,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;298 + - Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;295 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -930,14 +930,14 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/7b7aa46e-42b5-4614-b5bc-58e47658da6b?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/6c8a1d50-dcd2-46bc-b20e-4ce8d9254b43?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-04T03:56:38.1342734+00:00\",\r\n \"endTime\": - \"2021-02-04T03:56:38.4155551+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"7b7aa46e-42b5-4614-b5bc-58e47658da6b\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:54:13.9559329+00:00\",\r\n \"endTime\": + \"2021-04-07T06:54:14.1903374+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"6c8a1d50-dcd2-46bc-b20e-4ce8d9254b43\"\r\n}" headers: cache-control: - no-cache @@ -946,7 +946,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Feb 2021 03:57:09 GMT + - Wed, 07 Apr 2021 06:54:44 GMT expires: - '-1' pragma: @@ -963,7 +963,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4169 + - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4129 status: code: 200 message: OK @@ -981,7 +981,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01 response: @@ -989,7 +989,7 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_GNXCJMPT2IZB\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_A3WDKGOIXGUV\"\r\n },\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -999,7 +999,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Feb 2021 03:57:09 GMT + - Wed, 07 Apr 2021 06:54:45 GMT expires: - '-1' pragma: @@ -1016,7 +1016,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2483 + - Microsoft.Compute/GetGallery3Min;344,Microsoft.Compute/GetGallery30Min;2458 status: code: 200 message: OK @@ -1034,15 +1034,15 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001","name":"cli_test_gallery_image_version_vhd000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-04T03:54:16Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001","name":"cli_test_gallery_image_version_vhd000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:51:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1051,7 +1051,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Feb 2021 03:57:11 GMT + - Wed, 07 Apr 2021 06:54:46 GMT expires: - '-1' pragma: @@ -1085,7 +1085,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -1099,7 +1099,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/cf421cde-a3d2-4398-a8db-98be79948681?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/ef42ca42-175b-4a3e-a334-af56da4a8988?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -1107,7 +1107,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Feb 2021 03:57:17 GMT + - Wed, 07 Apr 2021 06:54:53 GMT expires: - '-1' pragma: @@ -1120,9 +1120,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;748 + - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;745 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -1140,23 +1140,23 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/cf421cde-a3d2-4398-a8db-98be79948681?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/ef42ca42-175b-4a3e-a334-af56da4a8988?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-02-04T03:57:16.9011457+00:00\",\r\n \"endTime\": - \"2021-02-04T03:57:17.0261732+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"cf421cde-a3d2-4398-a8db-98be79948681\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:54:52.518392+00:00\",\r\n \"endTime\": + \"2021-04-07T06:54:52.6277389+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"ef42ca42-175b-4a3e-a334-af56da4a8988\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Feb 2021 03:57:47 GMT + - Wed, 07 Apr 2021 06:55:23 GMT expires: - '-1' pragma: @@ -1173,7 +1173,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4167 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4124 status: code: 200 message: OK @@ -1191,7 +1191,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -1211,7 +1211,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Feb 2021 03:57:47 GMT + - Wed, 07 Apr 2021 06:55:24 GMT expires: - '-1' pragma: @@ -1228,7 +1228,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;595,Microsoft.Compute/GetGalleryImage30Min;2983 + - Microsoft.Compute/GetGalleryImage3Min;595,Microsoft.Compute/GetGalleryImage30Min;2953 status: code: 200 message: OK @@ -1244,18 +1244,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --vhd - --vhd-storage-account --replica-count + - -g --gallery-name --gallery-image-definition --gallery-image-version --os-vhd + --os-vhd-storage-account --replica-count User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001","name":"cli_test_gallery_image_version_vhd000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-04T03:54:16Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001","name":"cli_test_gallery_image_version_vhd000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:51:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1264,7 +1264,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Feb 2021 03:57:48 GMT + - Wed, 07 Apr 2021 06:55:25 GMT expires: - '-1' pragma: @@ -1281,8 +1281,7 @@ interactions: - request: body: '{"location": "westus", "tags": {}, "properties": {"publishingProfile": {"targetRegions": [{"name": "westus"}], "replicaCount": 1}, "storageProfile": - {"osDiskImage": {"source": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Storage/storageAccounts/vhdstorageb2021609b92761", - "uri": "https://vhdstorageb2021609b92761.blob.core.windows.net/vhds/osdisk_b2021609b9.vhd"}}}}}' + {}}}' headers: Accept: - application/json @@ -1293,42 +1292,33 @@ interactions: Connection: - keep-alive Content-Length: - - '493' + - '153' Content-Type: - application/json ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --vhd - --vhd-storage-account --replica-count + - -g --gallery-name --gallery-image-definition --gallery-image-version --os-vhd + --os-vhd-storage-account --replica-count User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2019-12-01 response: body: - string: "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0\",\r\n - \ \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": - \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"publishingProfile\": - {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West - US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": - \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-04T03:57:51.6054335+00:00\",\r\n - \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": - {\r\n \"osDiskImage\": {\r\n \"hostCaching\": \"ReadWrite\",\r\n - \ \"source\": {\r\n \"uri\": \"https://vhdstorageb2021609b92761.blob.core.windows.net/vhds/osdisk_b2021609b9.vhd\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Storage/storageAccounts/vhdstorageb2021609b92761\"\r\n - \ }\r\n }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n + string: "{\r\n \"error\": {\r\n \"code\": \"InvalidParameter\",\r\n \"message\": + \"The gallery artifact version source can only be specified either directly + under storageProfile or within individual OS or data disks. One and only one + source type (user image, snapshot, disk, virtual machine) can be provided.\",\r\n + \ \"target\": \"galleryImageVersion.properties.storageProfile.source.id\"\r\n \ }\r\n}" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/7e4f28c8-dd35-447a-9020-cdafc7d566d7?api-version=2020-09-30 cache-control: - no-cache content-length: - - '1271' + - '374' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Feb 2021 03:57:52 GMT + - Wed, 07 Apr 2021 06:55:33 GMT expires: - '-1' pragma: @@ -1341,532 +1331,10 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1198 + - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1196 x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version create - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --vhd - --vhd-storage-account --replica-count - User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/7e4f28c8-dd35-447a-9020-cdafc7d566d7?api-version=2020-09-30 - response: - body: - string: "{\r\n \"startTime\": \"2021-02-04T03:57:51.5898149+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"7e4f28c8-dd35-447a-9020-cdafc7d566d7\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 04 Feb 2021 03:58:53 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4166 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version create - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --vhd - --vhd-storage-account --replica-count - User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/7e4f28c8-dd35-447a-9020-cdafc7d566d7?api-version=2020-09-30 - response: - body: - string: "{\r\n \"startTime\": \"2021-02-04T03:57:51.5898149+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"7e4f28c8-dd35-447a-9020-cdafc7d566d7\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 04 Feb 2021 03:59:53 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4164 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version create - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --vhd - --vhd-storage-account --replica-count - User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/7e4f28c8-dd35-447a-9020-cdafc7d566d7?api-version=2020-09-30 - response: - body: - string: "{\r\n \"startTime\": \"2021-02-04T03:57:51.5898149+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"7e4f28c8-dd35-447a-9020-cdafc7d566d7\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 04 Feb 2021 04:00:53 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4170 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version create - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --vhd - --vhd-storage-account --replica-count - User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/7e4f28c8-dd35-447a-9020-cdafc7d566d7?api-version=2020-09-30 - response: - body: - string: "{\r\n \"startTime\": \"2021-02-04T03:57:51.5898149+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"7e4f28c8-dd35-447a-9020-cdafc7d566d7\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 04 Feb 2021 04:01:54 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4168 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version create - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --vhd - --vhd-storage-account --replica-count - User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/7e4f28c8-dd35-447a-9020-cdafc7d566d7?api-version=2020-09-30 - response: - body: - string: "{\r\n \"startTime\": \"2021-02-04T03:57:51.5898149+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"7e4f28c8-dd35-447a-9020-cdafc7d566d7\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 04 Feb 2021 04:02:54 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4166 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version create - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --vhd - --vhd-storage-account --replica-count - User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/7e4f28c8-dd35-447a-9020-cdafc7d566d7?api-version=2020-09-30 - response: - body: - string: "{\r\n \"startTime\": \"2021-02-04T03:57:51.5898149+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"7e4f28c8-dd35-447a-9020-cdafc7d566d7\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 04 Feb 2021 04:03:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4164 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version create - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --vhd - --vhd-storage-account --replica-count - User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/7e4f28c8-dd35-447a-9020-cdafc7d566d7?api-version=2020-09-30 - response: - body: - string: "{\r\n \"startTime\": \"2021-02-04T03:57:51.5898149+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"7e4f28c8-dd35-447a-9020-cdafc7d566d7\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 04 Feb 2021 04:04:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4162 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version create - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --vhd - --vhd-storage-account --replica-count - User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/7e4f28c8-dd35-447a-9020-cdafc7d566d7?api-version=2020-09-30 - response: - body: - string: "{\r\n \"startTime\": \"2021-02-04T03:57:51.5898149+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"7e4f28c8-dd35-447a-9020-cdafc7d566d7\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 04 Feb 2021 04:05:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4170 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version create - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --vhd - --vhd-storage-account --replica-count - User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/7e4f28c8-dd35-447a-9020-cdafc7d566d7?api-version=2020-09-30 - response: - body: - string: "{\r\n \"startTime\": \"2021-02-04T03:57:51.5898149+00:00\",\r\n \"endTime\": - \"2021-02-04T04:06:22.3106073+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"7e4f28c8-dd35-447a-9020-cdafc7d566d7\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '184' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 04 Feb 2021 04:06:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4168 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version create - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --vhd - --vhd-storage-account --replica-count - User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2020-09-30 - response: - body: - string: "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0\",\r\n - \ \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": - \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"publishingProfile\": - {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West - US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": - \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-04T03:57:51.6054335+00:00\",\r\n - \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": - {\r\n \"osDiskImage\": {\r\n \"hostCaching\": \"ReadWrite\",\r\n - \ \"source\": {\r\n \"uri\": \"https://vhdstorageb2021609b92761.blob.core.windows.net/vhds/osdisk_b2021609b9.vhd\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Storage/storageAccounts/vhdstorageb2021609b92761\"\r\n - \ }\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n - \ }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1272' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 04 Feb 2021 04:06:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9988 + - '1199' status: - code: 200 - message: OK + code: 400 + message: Bad Request version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_image_build_shared_image.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_image_build_shared_image.yaml index fde7c2a3da9..2e3d36fe86c 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_image_build_shared_image.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_image_build_shared_image.yaml @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-22T02:52:13Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 02:52:16 GMT + - Wed, 07 Apr 2021 06:38:28 GMT expires: - '-1' pragma: @@ -62,15 +62,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-msi/0.2.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-msi/0.2.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1?api-version=2015-08-31-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1","name":"ide1","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus","tags":{},"properties":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"677aec5b-31a6-41e0-8d4c-2acccfa88c74","clientId":"98abfd59-3fb3-4a09-ae18-50b7f917b4d9","clientSecretUrl":"https://control-westus.identity.azure.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1/credentials?tid=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a&oid=677aec5b-31a6-41e0-8d4c-2acccfa88c74&aid=98abfd59-3fb3-4a09-ae18-50b7f917b4d9"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1","name":"ide1","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus","tags":{},"properties":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"d8c1bd5f-da24-4c81-bef0-fc08409aa985","clientId":"861e0874-4c66-4b6d-92b0-6307dd9014e3","clientSecretUrl":"https://control-westus.identity.azure.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1/credentials?tid=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a&oid=d8c1bd5f-da24-4c81-bef0-fc08409aa985&aid=861e0874-4c66-4b6d-92b0-6307dd9014e3"}}' headers: cache-control: - no-cache @@ -79,7 +79,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 02:52:24 GMT + - Wed, 07 Apr 2021 06:38:36 GMT expires: - '-1' location: @@ -91,7 +91,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -109,8 +109,8 @@ interactions: ParameterSetName: - --assignee --role --scope User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET @@ -128,7 +128,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 02:53:09 GMT + - Wed, 07 Apr 2021 06:39:22 GMT expires: - '-1' pragma: @@ -160,15 +160,15 @@ interactions: ParameterSetName: - --assignee --role --scope User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%2798abfd59-3fb3-4a09-ae18-50b7f917b4d9%27%29&api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27861e0874-4c66-4b6d-92b0-6307dd9014e3%27%29&api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"677aec5b-31a6-41e0-8d4c-2acccfa88c74","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":["isExplicit=True","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1"],"appDisplayName":null,"appId":"98abfd59-3fb3-4a09-ae18-50b7f917b4d9","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"ide1","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"BE6570B8B0D24F572D007DE4A80E0DC19555BDCA","endDate":"2021-05-23T02:47:00Z","keyId":"4d4f67d2-cea5-4bdf-bcde-8d7c938a3428","startDate":"2021-02-22T02:47:00Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["98abfd59-3fb3-4a09-ae18-50b7f917b4d9","https://identity.azure.net/TLugDfusXCa98Tuyx3e6WiQ8OJQou2o3eG6NJDyMO/0="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null}]}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"d8c1bd5f-da24-4c81-bef0-fc08409aa985","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":["isExplicit=True","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1"],"appDisplayName":null,"appId":"861e0874-4c66-4b6d-92b0-6307dd9014e3","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"ide1","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"0CB7B29B8D9D35C14F3302D257DDA3792FB7BDFF","endDate":"2021-07-06T06:33:00Z","keyId":"a7828911-1263-4d5c-8364-f15509e376d5","startDate":"2021-04-07T06:33:00Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["861e0874-4c66-4b6d-92b0-6307dd9014e3","https://identity.azure.net/wDAtOU4iOFLAEF8/QEgMTVVchNHS+X0FdQt2GM7sbo4="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' @@ -181,19 +181,19 @@ interactions: dataserviceversion: - 3.0; date: - - Mon, 22 Feb 2021 02:53:12 GMT + - Wed, 07 Apr 2021 06:39:23 GMT duration: - - '2866457' + - '2637598' expires: - '-1' ocp-aad-diagnostics-server-name: - - HG673A//CUsaBJjYU7dGqFuMFMGBdHQeLAu9+IIx3hY= + - HpQEqnZBq87+hb1zQLNz540JPwYU2iZA5R9zQeY4NnE= ocp-aad-session-key: - - 5uEGMmUCgO7mIbpfLzfG7kANB-5a9Ehn6OioxF8TiGPrNMTeTs7F5fsM1z2Fbu5iay2_9I7YmOGK2_cPjXj8ZTfdrbbqzRZ_9dLZnDSR4OF2N3_cVOqkEIa8_v6lddzx.Tv-auhWI7zD2Wjf2AqythzIASrTSjJcx1t4sRzNhdB0 + - IcobGnyykvXd7MTPNBigXZ-Fe_O8xz1lzVDSq0aSyT3Hy9aBg-RNaLzEXYcQrInRWqGi_0h-j_iPT3dtKowU7OVFrvRG7BUa9rc_EfWxGhtuE3j8JizZq6uXgT20pysC._ULOX_o6ueIht7q3WxgUnoVWdN5MskrbGLvBS4WSi1A pragma: - no-cache request-id: - - 365ad9a1-1d98-4b2b-b5e4-8d55c667c560 + - e7ecdca1-02f8-46b5-9c93-718dfc797059 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -209,7 +209,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c", - "principalId": "677aec5b-31a6-41e0-8d4c-2acccfa88c74"}}' + "principalId": "d8c1bd5f-da24-4c81-bef0-fc08409aa985"}}' headers: Accept: - application/json @@ -228,15 +228,15 @@ interactions: ParameterSetName: - --assignee --role --scope User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"677aec5b-31a6-41e0-8d4c-2acccfa88c74","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","condition":null,"conditionVersion":null,"createdOn":"2021-02-22T02:53:12.6906760Z","updatedOn":"2021-02-22T02:53:13.6256891Z","createdBy":null,"updatedBy":"0a592c45-613e-4f1b-9023-7c4414fd53bf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d8c1bd5f-da24-4c81-bef0-fc08409aa985","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T06:39:24.7149591Z","updatedOn":"2021-04-07T06:39:26.2313275Z","createdBy":null,"updatedBy":"181c08fa-7ac8-48a6-a869-342ab74566a4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' headers: cache-control: - no-cache @@ -245,7 +245,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 02:53:14 GMT + - Wed, 07 Apr 2021 06:39:27 GMT expires: - '-1' pragma: @@ -257,7 +257,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -275,15 +275,15 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-22T02:52:13Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -292,7 +292,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 02:53:16 GMT + - Wed, 07 Apr 2021 06:39:28 GMT expires: - '-1' pragma: @@ -324,7 +324,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003?api-version=2019-12-01 response: @@ -332,11 +332,11 @@ interactions: string: "{\r\n \"name\": \"ib_sig000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-IB_SIGVGTV\"\r\n },\r\n \"provisioningState\": + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-IB_SIGBVT7\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/bff8c096-f95a-491d-81f5-0b33fa0e587e?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/0fbd3c0d-64f1-4a8f-a90e-c8b392e2d6ae?api-version=2019-12-01 cache-control: - no-cache content-length: @@ -344,7 +344,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 02:53:21 GMT + - Wed, 07 Apr 2021 06:39:36 GMT expires: - '-1' pragma: @@ -357,7 +357,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299 + - Microsoft.Compute/CreateUpdateGallery3Min;46,Microsoft.Compute/CreateUpdateGallery30Min;296 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -377,14 +377,14 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/bff8c096-f95a-491d-81f5-0b33fa0e587e?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/0fbd3c0d-64f1-4a8f-a90e-c8b392e2d6ae?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-22T02:53:20.6055437+00:00\",\r\n \"endTime\": - \"2021-02-22T02:53:20.8399128+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"bff8c096-f95a-491d-81f5-0b33fa0e587e\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:39:35.8757505+00:00\",\r\n \"endTime\": + \"2021-04-07T06:39:35.9851127+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"0fbd3c0d-64f1-4a8f-a90e-c8b392e2d6ae\"\r\n}" headers: cache-control: - no-cache @@ -393,7 +393,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 02:53:52 GMT + - Wed, 07 Apr 2021 06:40:07 GMT expires: - '-1' pragma: @@ -410,7 +410,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4198 + - Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;4186 status: code: 200 message: OK @@ -428,7 +428,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003?api-version=2019-12-01 response: @@ -436,7 +436,7 @@ interactions: string: "{\r\n \"name\": \"ib_sig000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-IB_SIGVGTV\"\r\n },\r\n \"provisioningState\": + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-IB_SIGBVT7\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -446,7 +446,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 02:53:52 GMT + - Wed, 07 Apr 2021 06:40:07 GMT expires: - '-1' pragma: @@ -463,7 +463,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2496 + - Microsoft.Compute/GetGallery3Min;332,Microsoft.Compute/GetGallery30Min;2481 status: code: 200 message: OK @@ -481,15 +481,15 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-22T02:52:13Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -498,7 +498,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 02:53:53 GMT + - Wed, 07 Apr 2021 06:40:08 GMT expires: - '-1' pragma: @@ -532,7 +532,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1?api-version=2020-09-30 response: @@ -546,7 +546,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/37d5e4bb-4485-4d3f-a3a0-f4b99730d30f?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/c309033c-3197-4461-8334-9e72d7f338e1?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -554,7 +554,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 02:54:00 GMT + - Wed, 07 Apr 2021 06:40:15 GMT expires: - '-1' pragma: @@ -567,7 +567,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;749 + - Microsoft.Compute/CreateUpdateGalleryImage3Min;146,Microsoft.Compute/CreateUpdateGalleryImage30Min;746 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -587,23 +587,23 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/37d5e4bb-4485-4d3f-a3a0-f4b99730d30f?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/c309033c-3197-4461-8334-9e72d7f338e1?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-02-22T02:53:59.355777+00:00\",\r\n \"endTime\": - \"2021-02-22T02:53:59.4495465+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"37d5e4bb-4485-4d3f-a3a0-f4b99730d30f\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:40:14.2039211+00:00\",\r\n \"endTime\": + \"2021-04-07T06:40:14.3132731+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"c309033c-3197-4461-8334-9e72d7f338e1\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 02:54:30 GMT + - Wed, 07 Apr 2021 06:40:45 GMT expires: - '-1' pragma: @@ -620,7 +620,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4196 + - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4182 status: code: 200 message: OK @@ -638,7 +638,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1?api-version=2020-09-30 response: @@ -658,7 +658,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 02:54:30 GMT + - Wed, 07 Apr 2021 06:40:45 GMT expires: - '-1' pragma: @@ -675,7 +675,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;596,Microsoft.Compute/GetGalleryImage30Min;2996 + - Microsoft.Compute/GetGalleryImage3Min;579,Microsoft.Compute/GetGalleryImage30Min;2979 status: code: 200 message: OK @@ -693,15 +693,15 @@ interactions: ParameterSetName: - -n -g --scripts --image-source --identity --defer User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-22T02:52:13Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -710,7 +710,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 02:54:32 GMT + - Wed, 07 Apr 2021 06:40:46 GMT expires: - '-1' pragma: @@ -738,8 +738,8 @@ interactions: ParameterSetName: - -n -g --scripts --image-source --identity --defer User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET @@ -770,7 +770,9 @@ interactions: Kong","pairedRegion":[{"name":"southeastasia","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasia"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast","name":"japaneast","displayName":"Japan East","regionalDisplayName":"(Asia Pacific) Japan East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"139.77","latitude":"35.68","physicalLocation":"Tokyo, - Saitama","pairedRegion":[{"name":"japanwest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral","name":"koreacentral","displayName":"Korea + Saitama","pairedRegion":[{"name":"japanwest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiawest","name":"jioindiawest","displayName":"JIO + India West","regionalDisplayName":"(Asia Pacific) JIO India West","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia + Pacific","longitude":"70.05773","latitude":"22.470701","physicalLocation":"Jamnagar","pairedRegion":[{"name":"jioindiacentral","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiacentral"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral","name":"koreacentral","displayName":"Korea Central","regionalDisplayName":"(Asia Pacific) Korea Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"126.9780","latitude":"37.5665","physicalLocation":"Seoul","pairedRegion":[{"name":"koreasouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadacentral","name":"canadacentral","displayName":"Canada Central","regionalDisplayName":"(Canada) Canada Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Canada","longitude":"-79.383","latitude":"43.653","physicalLocation":"Toronto","pairedRegion":[{"name":"canadaeast","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadaeast"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francecentral","name":"francecentral","displayName":"France @@ -810,7 +812,9 @@ interactions: Southeast","regionalDisplayName":"(Asia Pacific) Australia Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"144.9631","latitude":"-37.8136","physicalLocation":"Victoria","pairedRegion":[{"name":"australiaeast","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiaeast"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest","name":"japanwest","displayName":"Japan West","regionalDisplayName":"(Asia Pacific) Japan West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia - Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth","name":"koreasouth","displayName":"Korea + Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiacentral","name":"jioindiacentral","displayName":"JIO + India Central","regionalDisplayName":"(Asia Pacific) JIO India Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia + Pacific","longitude":"79.08886","latitude":"21.146633","physicalLocation":"Nagpur","pairedRegion":[{"name":"jioindiawest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiawest"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth","name":"koreasouth","displayName":"Korea South","regionalDisplayName":"(Asia Pacific) Korea South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"129.0756","latitude":"35.1796","physicalLocation":"Busan","pairedRegion":[{"name":"koreacentral","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia","name":"southindia","displayName":"South India","regionalDisplayName":"(Asia Pacific) South India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia @@ -832,11 +836,11 @@ interactions: cache-control: - no-cache content-length: - - '25532' + - '26522' content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 02:54:33 GMT + - Wed, 07 Apr 2021 06:40:47 GMT expires: - '-1' pragma: @@ -865,8 +869,8 @@ interactions: - -n -g --gallery-name --gallery-image-definition --gallery-replication-regions --defer User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET @@ -897,7 +901,9 @@ interactions: Kong","pairedRegion":[{"name":"southeastasia","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasia"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast","name":"japaneast","displayName":"Japan East","regionalDisplayName":"(Asia Pacific) Japan East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"139.77","latitude":"35.68","physicalLocation":"Tokyo, - Saitama","pairedRegion":[{"name":"japanwest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral","name":"koreacentral","displayName":"Korea + Saitama","pairedRegion":[{"name":"japanwest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiawest","name":"jioindiawest","displayName":"JIO + India West","regionalDisplayName":"(Asia Pacific) JIO India West","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia + Pacific","longitude":"70.05773","latitude":"22.470701","physicalLocation":"Jamnagar","pairedRegion":[{"name":"jioindiacentral","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiacentral"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral","name":"koreacentral","displayName":"Korea Central","regionalDisplayName":"(Asia Pacific) Korea Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"126.9780","latitude":"37.5665","physicalLocation":"Seoul","pairedRegion":[{"name":"koreasouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadacentral","name":"canadacentral","displayName":"Canada Central","regionalDisplayName":"(Canada) Canada Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Canada","longitude":"-79.383","latitude":"43.653","physicalLocation":"Toronto","pairedRegion":[{"name":"canadaeast","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadaeast"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francecentral","name":"francecentral","displayName":"France @@ -937,7 +943,9 @@ interactions: Southeast","regionalDisplayName":"(Asia Pacific) Australia Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"144.9631","latitude":"-37.8136","physicalLocation":"Victoria","pairedRegion":[{"name":"australiaeast","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiaeast"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest","name":"japanwest","displayName":"Japan West","regionalDisplayName":"(Asia Pacific) Japan West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia - Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth","name":"koreasouth","displayName":"Korea + Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiacentral","name":"jioindiacentral","displayName":"JIO + India Central","regionalDisplayName":"(Asia Pacific) JIO India Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia + Pacific","longitude":"79.08886","latitude":"21.146633","physicalLocation":"Nagpur","pairedRegion":[{"name":"jioindiawest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiawest"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth","name":"koreasouth","displayName":"Korea South","regionalDisplayName":"(Asia Pacific) Korea South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"129.0756","latitude":"35.1796","physicalLocation":"Busan","pairedRegion":[{"name":"koreacentral","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia","name":"southindia","displayName":"South India","regionalDisplayName":"(Asia Pacific) South India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia @@ -959,11 +967,11 @@ interactions: cache-control: - no-cache content-length: - - '25532' + - '26522' content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 02:54:34 GMT + - Wed, 07 Apr 2021 06:40:48 GMT expires: - '-1' pragma: @@ -1003,8 +1011,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: PUT @@ -1027,7 +1035,7 @@ interactions: \"location\": \"westus\",\n \"tags\": {}\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/03dc3c61-9398-48cc-9303-d8a9a0bbdf94?api-version=2020-02-14 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/382d189b-4888-4e6c-8047-764460de4e4d?api-version=2020-02-14 cache-control: - no-cache content-length: @@ -1035,7 +1043,7 @@ interactions: content-type: - application/json date: - - Mon, 22 Feb 2021 02:54:40 GMT + - Wed, 07 Apr 2021 06:40:57 GMT expires: - '-1' pragma: @@ -1065,24 +1073,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/03dc3c61-9398-48cc-9303-d8a9a0bbdf94?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/382d189b-4888-4e6c-8047-764460de4e4d?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"03DC3C61-9398-48CC-9303-D8A9A0BBDF94\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-02-22T02:54:40.1590039Z\",\n \"endTime\": - \"2021-02-22T02:55:11.5370327Z\"\n}" + string: "{\n \"name\": \"382D189B-4888-4E6C-8047-764460DE4E4D\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-04-07T06:40:56.87Z\",\n \"endTime\": + \"2021-04-07T06:41:27.8432276Z\"\n}" headers: cache-control: - no-cache content-length: - - '165' + - '160' content-type: - application/json date: - - Mon, 22 Feb 2021 02:55:13 GMT + - Wed, 07 Apr 2021 06:41:28 GMT expires: - '-1' pragma: @@ -1114,8 +1122,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template01?api-version=2020-02-14 response: @@ -1132,8 +1140,8 @@ interactions: \"Succeeded\",\n \"buildTimeoutInMinutes\": 0,\n \"vmProfile\": {\n \"vmSize\": \"\",\n \"osDiskSizeGB\": 0\n }\n },\n \"identity\": {\n \"type\": \"UserAssigned\",\n \ \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1\": - {\n \"principalId\": \"677aec5b-31a6-41e0-8d4c-2acccfa88c74\",\n \"clientId\": - \"98abfd59-3fb3-4a09-ae18-50b7f917b4d9\"\n }\n }\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template01\",\n + {\n \"principalId\": \"d8c1bd5f-da24-4c81-bef0-fc08409aa985\",\n \"clientId\": + \"861e0874-4c66-4b6d-92b0-6307dd9014e3\"\n }\n }\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template01\",\n \"name\": \"template01\",\n \"type\": \"Microsoft.VirtualMachineImages/imageTemplates\",\n \"location\": \"westus\",\n \"tags\": {}\n}" headers: @@ -1144,7 +1152,7 @@ interactions: content-type: - application/json date: - - Mon, 22 Feb 2021 02:55:13 GMT + - Wed, 07 Apr 2021 06:41:29 GMT expires: - '-1' pragma: @@ -1178,8 +1186,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: POST @@ -1189,17 +1197,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 cache-control: - no-cache content-length: - '0' date: - - Mon, 22 Feb 2021 02:55:16 GMT + - Wed, 07 Apr 2021 06:41:33 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 pragma: - no-cache server: @@ -1227,23 +1235,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" headers: cache-control: - no-cache content-length: - - '122' + - '117' content-type: - application/json date: - - Mon, 22 Feb 2021 02:55:46 GMT + - Wed, 07 Apr 2021 06:42:04 GMT expires: - '-1' pragma: @@ -1275,23 +1283,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" headers: cache-control: - no-cache content-length: - - '122' + - '117' content-type: - application/json date: - - Mon, 22 Feb 2021 02:56:17 GMT + - Wed, 07 Apr 2021 06:42:34 GMT expires: - '-1' pragma: @@ -1323,23 +1331,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" headers: cache-control: - no-cache content-length: - - '122' + - '117' content-type: - application/json date: - - Mon, 22 Feb 2021 02:56:47 GMT + - Wed, 07 Apr 2021 06:43:05 GMT expires: - '-1' pragma: @@ -1371,23 +1379,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" headers: cache-control: - no-cache content-length: - - '122' + - '117' content-type: - application/json date: - - Mon, 22 Feb 2021 02:57:18 GMT + - Wed, 07 Apr 2021 06:43:35 GMT expires: - '-1' pragma: @@ -1419,23 +1427,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" headers: cache-control: - no-cache content-length: - - '122' + - '117' content-type: - application/json date: - - Mon, 22 Feb 2021 02:57:48 GMT + - Wed, 07 Apr 2021 06:44:06 GMT expires: - '-1' pragma: @@ -1467,23 +1475,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" headers: cache-control: - no-cache content-length: - - '122' + - '117' content-type: - application/json date: - - Mon, 22 Feb 2021 02:58:19 GMT + - Wed, 07 Apr 2021 06:44:36 GMT expires: - '-1' pragma: @@ -1515,23 +1523,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" headers: cache-control: - no-cache content-length: - - '122' + - '117' content-type: - application/json date: - - Mon, 22 Feb 2021 02:58:50 GMT + - Wed, 07 Apr 2021 06:45:06 GMT expires: - '-1' pragma: @@ -1563,23 +1571,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" headers: cache-control: - no-cache content-length: - - '122' + - '117' content-type: - application/json date: - - Mon, 22 Feb 2021 02:59:20 GMT + - Wed, 07 Apr 2021 06:45:38 GMT expires: - '-1' pragma: @@ -1611,23 +1619,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" headers: cache-control: - no-cache content-length: - - '122' + - '117' content-type: - application/json date: - - Mon, 22 Feb 2021 02:59:50 GMT + - Wed, 07 Apr 2021 06:46:08 GMT expires: - '-1' pragma: @@ -1659,23 +1667,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" headers: cache-control: - no-cache content-length: - - '122' + - '117' content-type: - application/json date: - - Mon, 22 Feb 2021 03:00:22 GMT + - Wed, 07 Apr 2021 06:46:39 GMT expires: - '-1' pragma: @@ -1707,23 +1715,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" headers: cache-control: - no-cache content-length: - - '122' + - '117' content-type: - application/json date: - - Mon, 22 Feb 2021 03:00:52 GMT + - Wed, 07 Apr 2021 06:47:10 GMT expires: - '-1' pragma: @@ -1755,23 +1763,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" headers: cache-control: - no-cache content-length: - - '122' + - '117' content-type: - application/json date: - - Mon, 22 Feb 2021 03:01:23 GMT + - Wed, 07 Apr 2021 06:47:40 GMT expires: - '-1' pragma: @@ -1803,23 +1811,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" headers: cache-control: - no-cache content-length: - - '122' + - '117' content-type: - application/json date: - - Mon, 22 Feb 2021 03:01:53 GMT + - Wed, 07 Apr 2021 06:48:11 GMT expires: - '-1' pragma: @@ -1851,23 +1859,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" headers: cache-control: - no-cache content-length: - - '122' + - '117' content-type: - application/json date: - - Mon, 22 Feb 2021 03:02:23 GMT + - Wed, 07 Apr 2021 06:48:41 GMT expires: - '-1' pragma: @@ -1899,23 +1907,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" headers: cache-control: - no-cache content-length: - - '122' + - '117' content-type: - application/json date: - - Mon, 22 Feb 2021 03:02:54 GMT + - Wed, 07 Apr 2021 06:49:11 GMT expires: - '-1' pragma: @@ -1947,23 +1955,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" headers: cache-control: - no-cache content-length: - - '122' + - '117' content-type: - application/json date: - - Mon, 22 Feb 2021 03:03:24 GMT + - Wed, 07 Apr 2021 06:49:43 GMT expires: - '-1' pragma: @@ -1995,23 +2003,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" headers: cache-control: - no-cache content-length: - - '122' + - '117' content-type: - application/json date: - - Mon, 22 Feb 2021 03:03:55 GMT + - Wed, 07 Apr 2021 06:50:13 GMT expires: - '-1' pragma: @@ -2043,23 +2051,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" headers: cache-control: - no-cache content-length: - - '122' + - '117' content-type: - application/json date: - - Mon, 22 Feb 2021 03:04:26 GMT + - Wed, 07 Apr 2021 06:50:44 GMT expires: - '-1' pragma: @@ -2091,23 +2099,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" headers: cache-control: - no-cache content-length: - - '122' + - '117' content-type: - application/json date: - - Mon, 22 Feb 2021 03:04:56 GMT + - Wed, 07 Apr 2021 06:51:14 GMT expires: - '-1' pragma: @@ -2139,23 +2147,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" headers: cache-control: - no-cache content-length: - - '122' + - '117' content-type: - application/json date: - - Mon, 22 Feb 2021 03:05:27 GMT + - Wed, 07 Apr 2021 06:51:44 GMT expires: - '-1' pragma: @@ -2187,23 +2195,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" headers: cache-control: - no-cache content-length: - - '122' + - '117' content-type: - application/json date: - - Mon, 22 Feb 2021 03:05:58 GMT + - Wed, 07 Apr 2021 06:52:16 GMT expires: - '-1' pragma: @@ -2235,23 +2243,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" headers: cache-control: - no-cache content-length: - - '122' + - '117' content-type: - application/json date: - - Mon, 22 Feb 2021 03:06:29 GMT + - Wed, 07 Apr 2021 06:52:46 GMT expires: - '-1' pragma: @@ -2283,23 +2291,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" headers: cache-control: - no-cache content-length: - - '122' + - '117' content-type: - application/json date: - - Mon, 22 Feb 2021 03:06:59 GMT + - Wed, 07 Apr 2021 06:53:17 GMT expires: - '-1' pragma: @@ -2331,23 +2339,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" headers: cache-control: - no-cache content-length: - - '122' + - '117' content-type: - application/json date: - - Mon, 22 Feb 2021 03:07:29 GMT + - Wed, 07 Apr 2021 06:53:47 GMT expires: - '-1' pragma: @@ -2379,23 +2387,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" headers: cache-control: - no-cache content-length: - - '122' + - '117' content-type: - application/json date: - - Mon, 22 Feb 2021 03:07:59 GMT + - Wed, 07 Apr 2021 06:54:17 GMT expires: - '-1' pragma: @@ -2427,23 +2435,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" headers: cache-control: - no-cache content-length: - - '122' + - '117' content-type: - application/json date: - - Mon, 22 Feb 2021 03:08:30 GMT + - Wed, 07 Apr 2021 06:54:49 GMT expires: - '-1' pragma: @@ -2475,23 +2483,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" headers: cache-control: - no-cache content-length: - - '122' + - '117' content-type: - application/json date: - - Mon, 22 Feb 2021 03:09:01 GMT + - Wed, 07 Apr 2021 06:55:19 GMT expires: - '-1' pragma: @@ -2523,23 +2531,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" headers: cache-control: - no-cache content-length: - - '122' + - '117' content-type: - application/json date: - - Mon, 22 Feb 2021 03:09:31 GMT + - Wed, 07 Apr 2021 06:55:49 GMT expires: - '-1' pragma: @@ -2571,23 +2579,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" headers: cache-control: - no-cache content-length: - - '122' + - '117' content-type: - application/json date: - - Mon, 22 Feb 2021 03:10:02 GMT + - Wed, 07 Apr 2021 06:56:20 GMT expires: - '-1' pragma: @@ -2619,23 +2627,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" headers: cache-control: - no-cache content-length: - - '122' + - '117' content-type: - application/json date: - - Mon, 22 Feb 2021 03:10:33 GMT + - Wed, 07 Apr 2021 06:56:51 GMT expires: - '-1' pragma: @@ -2667,23 +2675,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" headers: cache-control: - no-cache content-length: - - '122' + - '117' content-type: - application/json date: - - Mon, 22 Feb 2021 03:11:03 GMT + - Wed, 07 Apr 2021 06:57:21 GMT expires: - '-1' pragma: @@ -2715,24 +2723,168 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\",\n \"endTime\": - \"2021-02-22T03:11:33.9585908Z\"\n}" + string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" headers: cache-control: - no-cache content-length: - - '165' + - '117' content-type: - application/json date: - - Mon, 22 Feb 2021 03:11:34 GMT + - Wed, 07 Apr 2021 06:57:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - image builder run + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 + response: + body: + string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" + headers: + cache-control: + - no-cache + content-length: + - '117' + content-type: + - application/json + date: + - Wed, 07 Apr 2021 06:58:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - image builder run + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 + response: + body: + string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" + headers: + cache-control: + - no-cache + content-length: + - '117' + content-type: + - application/json + date: + - Wed, 07 Apr 2021 06:58:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - image builder run + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 + response: + body: + string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\",\n \"endTime\": + \"2021-04-07T06:59:00.1137786Z\"\n}" + headers: + cache-control: + - no-cache + content-length: + - '160' + content-type: + - application/json + date: + - Wed, 07 Apr 2021 06:59:24 GMT expires: - '-1' pragma: @@ -2764,26 +2916,26 @@ interactions: ParameterSetName: - -n -g --output-name User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template01/runOutputs/image1?api-version=2020-02-14 response: body: - string: "{\n \"properties\": {\n \"artifactId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24627.7817\",\n + string: "{\n \"properties\": {\n \"artifactId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24685.21915\",\n \ \"provisioningState\": \"Succeeded\"\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template01/runOutputs/image1\",\n \"name\": \"image1\",\n \"type\": \"Microsoft.VirtualMachineImages/imageTemplates/runOutputs\"\n}" headers: cache-control: - no-cache content-length: - - '631' + - '632' content-type: - application/json date: - - Mon, 22 Feb 2021 03:11:35 GMT + - Wed, 07 Apr 2021 06:59:25 GMT expires: - '-1' pragma: @@ -2815,15 +2967,15 @@ interactions: ParameterSetName: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-22T02:52:13Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2832,7 +2984,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 03:11:35 GMT + - Wed, 07 Apr 2021 06:59:26 GMT expires: - '-1' pragma: @@ -2860,7 +3012,7 @@ interactions: ParameterSetName: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1?api-version=2020-09-30 response: @@ -2880,7 +3032,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 03:11:36 GMT + - Wed, 07 Apr 2021 06:59:27 GMT expires: - '-1' pragma: @@ -2897,7 +3049,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;599,Microsoft.Compute/GetGalleryImage30Min;2987 + - Microsoft.Compute/GetGalleryImage3Min;595,Microsoft.Compute/GetGalleryImage30Min;2947 status: code: 200 message: OK @@ -2915,21 +3067,21 @@ interactions: ParameterSetName: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24627.7817?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24685.21915?api-version=2019-12-01 response: body: - string: "{\r\n \"name\": \"0.24627.7817\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24627.7817\",\r\n + string: "{\r\n \"name\": \"0.24685.21915\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24685.21915\",\r\n \ \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": - \"westus\",\r\n \"tags\": {\r\n \"correlationId\": \"af8a9de1-31cf-44c1-8d99-95cb05c2036f\"\r\n + \"westus\",\r\n \"tags\": {\r\n \"correlationId\": \"3d7e83dc-1d4e-451a-ba08-230c00db37eb\"\r\n \ },\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n \ ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n - \ \"publishedDate\": \"2021-02-22T03:01:30.8118886+00:00\",\r\n \"storageAccountType\": + \ \"publishedDate\": \"2021-04-07T06:47:56.8725033+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IT_img_tmpl_sigsjytdmnod72md6g3opg6ewauhf3t_53b8f212-d9ac-4702-87a1-0608c76ca391/providers/Microsoft.Compute/images/IntermediateSnapImg_af8a9de1-31cf-44c1-8d99-95cb05c2036f_0\"\r\n + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IT_img_tmpl_sigs6qf4x7bo5xylmq34zwoby6pslua_e3565400-eac5-4fe9-9d77-044fd058e297/providers/Microsoft.Compute/images/IntermediateSnapImg_3d7e83dc-1d4e-451a-ba08-230c00db37eb_0\"\r\n \ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" @@ -2937,11 +3089,11 @@ interactions: cache-control: - no-cache content-length: - - '1305' + - '1307' content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 03:11:37 GMT + - Wed, 07 Apr 2021 06:59:28 GMT expires: - '-1' pragma: @@ -2958,7 +3110,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1994,Microsoft.Compute/GetGalleryImageVersion30Min;9992 + - Microsoft.Compute/GetGalleryImageVersion3Min;1995,Microsoft.Compute/GetGalleryImageVersion30Min;9976 status: code: 200 message: OK @@ -2976,7 +3128,7 @@ interactions: ParameterSetName: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 response: @@ -2990,7 +3142,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 03:11:37 GMT + - Wed, 07 Apr 2021 06:59:28 GMT expires: - '-1' pragma: @@ -3032,12 +3184,12 @@ interactions: {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic"}]}, "storageProfile": {"osDisk": {"createOption": "fromImage", "name": null, "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference": - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24627.7817"}}, + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24685.21915"}}, "osProfile": {"computerName": "custom-vm", "adminUsername": "azureuser", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj - fey@DESKTOP-ARGPJS4\n", "path": "/home/azureuser/.ssh/authorized_keys"}]}}}}}], - "outputs": {}}, "parameters": {}, "mode": "Incremental"}}' + fey@DESKTOP-ARGPJS4\n", "path": "/home/azureuser/.ssh/authorized_keys"}]}}}, + "securityProfile": {}}}], "outputs": {}}, "parameters": {}, "mode": "Incremental"}}' headers: Accept: - application/json @@ -3048,32 +3200,32 @@ interactions: Connection: - keep-alive Content-Length: - - '3928' + - '3952' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/vm_deploy_NOmMne4qvIkaESdmoDaNZfVow0F46aR3","name":"vm_deploy_NOmMne4qvIkaESdmoDaNZfVow0F46aR3","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17761373393567448849","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-02-22T03:11:44.1591279Z","duration":"PT2.6770805S","correlationId":"90055d61-e851-41fe-96c9-f31c2511b8c9","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/virtualNetworks/custom-vmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"custom-vmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkSecurityGroups/custom-vmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"custom-vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/publicIPAddresses/custom-vmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"custom-vmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"custom-vmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"custom-vmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"custom-vm"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/vm_deploy_fUdaL1taURe9PyrKbxIRSliLTz7UoiWc","name":"vm_deploy_fUdaL1taURe9PyrKbxIRSliLTz7UoiWc","type":"Microsoft.Resources/deployments","properties":{"templateHash":"451431972803702666","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-07T06:59:32.7901142Z","duration":"PT2.1444899S","correlationId":"82d6dfe2-25c5-474d-92f7-0440ef637307","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/virtualNetworks/custom-vmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"custom-vmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkSecurityGroups/custom-vmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"custom-vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/publicIPAddresses/custom-vmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"custom-vmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"custom-vmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"custom-vmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"custom-vm"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/vm_deploy_NOmMne4qvIkaESdmoDaNZfVow0F46aR3/operationStatuses/08585876433839955877?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/vm_deploy_fUdaL1taURe9PyrKbxIRSliLTz7UoiWc/operationStatuses/08585838281148320045?api-version=2020-10-01 cache-control: - no-cache content-length: - - '2815' + - '2813' content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 03:11:45 GMT + - Wed, 07 Apr 2021 06:59:33 GMT expires: - '-1' pragma: @@ -3101,10 +3253,10 @@ interactions: ParameterSetName: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585876433839955877?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585838281148320045?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -3116,7 +3268,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 03:12:15 GMT + - Wed, 07 Apr 2021 07:00:05 GMT expires: - '-1' pragma: @@ -3144,10 +3296,10 @@ interactions: ParameterSetName: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585876433839955877?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585838281148320045?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -3159,7 +3311,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 03:12:45 GMT + - Wed, 07 Apr 2021 07:00:35 GMT expires: - '-1' pragma: @@ -3187,10 +3339,10 @@ interactions: ParameterSetName: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585876433839955877?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585838281148320045?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -3202,7 +3354,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 03:13:17 GMT + - Wed, 07 Apr 2021 07:01:05 GMT expires: - '-1' pragma: @@ -3230,10 +3382,10 @@ interactions: ParameterSetName: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585876433839955877?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585838281148320045?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -3245,7 +3397,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 03:13:48 GMT + - Wed, 07 Apr 2021 07:01:35 GMT expires: - '-1' pragma: @@ -3273,22 +3425,22 @@ interactions: ParameterSetName: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/vm_deploy_NOmMne4qvIkaESdmoDaNZfVow0F46aR3","name":"vm_deploy_NOmMne4qvIkaESdmoDaNZfVow0F46aR3","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17761373393567448849","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-02-22T03:13:34.5800845Z","duration":"PT1M53.0980371S","correlationId":"90055d61-e851-41fe-96c9-f31c2511b8c9","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/virtualNetworks/custom-vmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"custom-vmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkSecurityGroups/custom-vmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"custom-vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/publicIPAddresses/custom-vmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"custom-vmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"custom-vmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"custom-vmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"custom-vm"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkSecurityGroups/custom-vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/publicIPAddresses/custom-vmPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/virtualNetworks/custom-vmVNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/vm_deploy_fUdaL1taURe9PyrKbxIRSliLTz7UoiWc","name":"vm_deploy_fUdaL1taURe9PyrKbxIRSliLTz7UoiWc","type":"Microsoft.Resources/deployments","properties":{"templateHash":"451431972803702666","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-07T07:01:18.8960593Z","duration":"PT1M48.250435S","correlationId":"82d6dfe2-25c5-474d-92f7-0440ef637307","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/virtualNetworks/custom-vmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"custom-vmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkSecurityGroups/custom-vmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"custom-vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/publicIPAddresses/custom-vmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"custom-vmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"custom-vmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"custom-vmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"custom-vm"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkSecurityGroups/custom-vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/publicIPAddresses/custom-vmPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/virtualNetworks/custom-vmVNET"}]}}' headers: cache-control: - no-cache content-length: - - '3912' + - '3909' content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 03:13:49 GMT + - Wed, 07 Apr 2021 07:01:36 GMT expires: - '-1' pragma: @@ -3316,22 +3468,22 @@ interactions: ParameterSetName: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm?$expand=instanceView&api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"custom-vm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"8c546c62-8482-4684-8b62-2429a2657faa\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"13d4b8e2-856b-4bf0-88f8-1e01acdf0b59\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24627.7817\",\r\n - \ \"exactVersion\": \"0.24627.7817\"\r\n },\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"custom-vm_OsDisk_1_76173987332f49f5b79050ca790efc0b\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24685.21915\",\r\n + \ \"exactVersion\": \"0.24685.21915\"\r\n },\r\n \"osDisk\": + {\r\n \"osType\": \"Linux\",\r\n \"name\": \"custom-vm_OsDisk_1_e440368f7fca4674922ab2f57f33e38a\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/disks/custom-vm_OsDisk_1_76173987332f49f5b79050ca790efc0b\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/disks/custom-vm_OsDisk_1_e440368f7fca4674922ab2f57f33e38a\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"custom-vm\",\r\n \ \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": {\r\n @@ -3348,16 +3500,16 @@ interactions: \ {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \ \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet - populated.\",\r\n \"time\": \"2021-02-22T03:13:49+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2021-04-07T07:01:37+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"custom-vm_OsDisk_1_76173987332f49f5b79050ca790efc0b\",\r\n \"statuses\": + \"custom-vm_OsDisk_1_e440368f7fca4674922ab2f57f33e38a\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-02-22T03:12:15.6854314+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-07T07:00:09.4763525+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-02-22T03:13:27.279245+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-07T07:01:15.4793472+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n \ }\r\n ]\r\n }\r\n }\r\n}" @@ -3365,11 +3517,11 @@ interactions: cache-control: - no-cache content-length: - - '3923' + - '3926' content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 03:13:49 GMT + - Wed, 07 Apr 2021 07:01:37 GMT expires: - '-1' pragma: @@ -3386,7 +3538,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31988 + - Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31924 status: code: 200 message: OK @@ -3404,18 +3556,18 @@ interactions: ParameterSetName: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"custom-vmVMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic\",\r\n - \ \"etag\": \"W/\\\"7c157d75-9804-4805-b070-856eb3780194\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"f32465ad-72fd-4e5d-843f-ec4d675fac48\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"c0da5358-1e8a-4806-9b87-f58e12a5f4ba\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"66b09863-e5ee-4950-a3c2-4ae4c287a3e8\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigcustom-vm\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic/ipConfigurations/ipconfigcustom-vm\",\r\n - \ \"etag\": \"W/\\\"7c157d75-9804-4805-b070-856eb3780194\\\"\",\r\n + \ \"etag\": \"W/\\\"f32465ad-72fd-4e5d-843f-ec4d675fac48\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -3424,8 +3576,8 @@ interactions: \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": - \"t5itqj3irlfedmzjklrmoi5e5h.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-22-48-04-DA-6A\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"vjds0zfvwolezb4tngfr44mwtg.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-22-48-04-5D-C9\",\r\n \"enableAcceleratedNetworking\": false,\r\n \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkSecurityGroups/custom-vmNSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -3439,9 +3591,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 03:13:50 GMT + - Wed, 07 Apr 2021 07:01:38 GMT etag: - - W/"7c157d75-9804-4805-b070-856eb3780194" + - W/"f32465ad-72fd-4e5d-843f-ec4d675fac48" expires: - '-1' pragma: @@ -3458,7 +3610,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a2466871-d2be-415a-bab8-9de8ece3c28c + - 08abf120-4ed4-4239-ad62-67c1c79b0097 status: code: 200 message: OK @@ -3476,16 +3628,16 @@ interactions: ParameterSetName: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/publicIPAddresses/custom-vmPublicIP?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"custom-vmPublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/publicIPAddresses/custom-vmPublicIP\",\r\n - \ \"etag\": \"W/\\\"57a6557d-b111-4118-a158-42d53846647f\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"96e73333-4061-4ace-924d-01163e4c9ca8\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"bc900f8e-bb12-47de-8485-0be268f38ea6\",\r\n - \ \"ipAddress\": \"40.78.67.159\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"2df26ea6-5f07-4365-a2d9-809e412578ca\",\r\n + \ \"ipAddress\": \"23.99.86.89\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic/ipConfigurations/ipconfigcustom-vm\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n @@ -3494,13 +3646,13 @@ interactions: cache-control: - no-cache content-length: - - '1020' + - '1019' content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 03:13:50 GMT + - Wed, 07 Apr 2021 07:01:38 GMT etag: - - W/"57a6557d-b111-4118-a158-42d53846647f" + - W/"96e73333-4061-4ace-924d-01163e4c9ca8" expires: - '-1' pragma: @@ -3517,7 +3669,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5301825d-ee7e-49aa-b33c-a313f337af7f + - 3e9e6435-f267-4c6d-ac2b-9eda67c8884b status: code: 200 message: OK @@ -3535,22 +3687,22 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"custom-vm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"8c546c62-8482-4684-8b62-2429a2657faa\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"13d4b8e2-856b-4bf0-88f8-1e01acdf0b59\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24627.7817\",\r\n - \ \"exactVersion\": \"0.24627.7817\"\r\n },\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"custom-vm_OsDisk_1_76173987332f49f5b79050ca790efc0b\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24685.21915\",\r\n + \ \"exactVersion\": \"0.24685.21915\"\r\n },\r\n \"osDisk\": + {\r\n \"osType\": \"Linux\",\r\n \"name\": \"custom-vm_OsDisk_1_e440368f7fca4674922ab2f57f33e38a\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/disks/custom-vm_OsDisk_1_76173987332f49f5b79050ca790efc0b\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/disks/custom-vm_OsDisk_1_e440368f7fca4674922ab2f57f33e38a\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"custom-vm\",\r\n \ \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": {\r\n @@ -3567,11 +3719,11 @@ interactions: cache-control: - no-cache content-length: - - '2712' + - '2714' content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 03:13:50 GMT + - Wed, 07 Apr 2021 07:01:39 GMT expires: - '-1' pragma: @@ -3588,7 +3740,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31987 + - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31923 status: code: 200 message: OK @@ -3606,15 +3758,15 @@ interactions: ParameterSetName: - -n -g --image-source --identity --shared-image-destinations --scripts User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-22T02:52:13Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3623,7 +3775,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 03:13:51 GMT + - Wed, 07 Apr 2021 07:01:39 GMT expires: - '-1' pragma: @@ -3651,8 +3803,8 @@ interactions: ParameterSetName: - -n -g --image-source --identity --shared-image-destinations --scripts User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET @@ -3683,7 +3835,9 @@ interactions: Kong","pairedRegion":[{"name":"southeastasia","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasia"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast","name":"japaneast","displayName":"Japan East","regionalDisplayName":"(Asia Pacific) Japan East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"139.77","latitude":"35.68","physicalLocation":"Tokyo, - Saitama","pairedRegion":[{"name":"japanwest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral","name":"koreacentral","displayName":"Korea + Saitama","pairedRegion":[{"name":"japanwest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiawest","name":"jioindiawest","displayName":"JIO + India West","regionalDisplayName":"(Asia Pacific) JIO India West","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia + Pacific","longitude":"70.05773","latitude":"22.470701","physicalLocation":"Jamnagar","pairedRegion":[{"name":"jioindiacentral","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiacentral"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral","name":"koreacentral","displayName":"Korea Central","regionalDisplayName":"(Asia Pacific) Korea Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"126.9780","latitude":"37.5665","physicalLocation":"Seoul","pairedRegion":[{"name":"koreasouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadacentral","name":"canadacentral","displayName":"Canada Central","regionalDisplayName":"(Canada) Canada Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Canada","longitude":"-79.383","latitude":"43.653","physicalLocation":"Toronto","pairedRegion":[{"name":"canadaeast","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadaeast"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francecentral","name":"francecentral","displayName":"France @@ -3723,7 +3877,9 @@ interactions: Southeast","regionalDisplayName":"(Asia Pacific) Australia Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"144.9631","latitude":"-37.8136","physicalLocation":"Victoria","pairedRegion":[{"name":"australiaeast","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiaeast"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest","name":"japanwest","displayName":"Japan West","regionalDisplayName":"(Asia Pacific) Japan West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia - Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth","name":"koreasouth","displayName":"Korea + Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiacentral","name":"jioindiacentral","displayName":"JIO + India Central","regionalDisplayName":"(Asia Pacific) JIO India Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia + Pacific","longitude":"79.08886","latitude":"21.146633","physicalLocation":"Nagpur","pairedRegion":[{"name":"jioindiawest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiawest"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth","name":"koreasouth","displayName":"Korea South","regionalDisplayName":"(Asia Pacific) Korea South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"129.0756","latitude":"35.1796","physicalLocation":"Busan","pairedRegion":[{"name":"koreacentral","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia","name":"southindia","displayName":"South India","regionalDisplayName":"(Asia Pacific) South India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia @@ -3745,11 +3901,11 @@ interactions: cache-control: - no-cache content-length: - - '25532' + - '26522' content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 03:13:51 GMT + - Wed, 07 Apr 2021 07:01:40 GMT expires: - '-1' pragma: @@ -3765,7 +3921,7 @@ interactions: message: OK - request: body: '{"location": "westus", "tags": {}, "properties": {"source": {"type": "SharedImageVersion", - "imageVersionId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24627.7817"}, + "imageVersionId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24685.21915"}, "customize": [{"name": "customizeScript.sh", "type": "Shell", "scriptUri": "https://raw.githubusercontent.com/danielsollondon/azvmimagebuilder/master/quickquickstarts/customizeScript.sh"}], "distribute": [{"runOutputName": "image1", "type": "SharedImage", "galleryImageId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1", @@ -3782,21 +3938,21 @@ interactions: Connection: - keep-alive Content-Length: - - '1157' + - '1158' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --image-source --identity --shared-image-destinations --scripts User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template02?api-version=2020-02-14 response: body: - string: "{\n \"properties\": {\n \"source\": {\n \"imageVersionId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24627.7817\",\n + string: "{\n \"properties\": {\n \"source\": {\n \"imageVersionId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24685.21915\",\n \ \"type\": \"SharedImageVersion\"\n },\n \"customize\": [\n {\n \"name\": \"customizeScript.sh\",\n \"scriptUri\": \"https://raw.githubusercontent.com/danielsollondon/azvmimagebuilder/master/quickquickstarts/customizeScript.sh\",\n \ \"type\": \"Shell\"\n }\n ],\n \"distribute\": [\n {\n \"artifactTags\": @@ -3811,15 +3967,15 @@ interactions: \"location\": \"westus\",\n \"tags\": {}\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/e2afd605-7901-4f4c-b558-2563facd75ca?api-version=2020-02-14 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/eb528df2-584d-4152-beb5-cda68fa61f20?api-version=2020-02-14 cache-control: - no-cache content-length: - - '1724' + - '1725' content-type: - application/json date: - - Mon, 22 Feb 2021 03:14:01 GMT + - Wed, 07 Apr 2021 07:01:53 GMT expires: - '-1' pragma: @@ -3831,7 +3987,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1194' status: code: 201 message: Created @@ -3849,24 +4005,24 @@ interactions: ParameterSetName: - -n -g --image-source --identity --shared-image-destinations --scripts User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/e2afd605-7901-4f4c-b558-2563facd75ca?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/eb528df2-584d-4152-beb5-cda68fa61f20?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"E2AFD605-7901-4F4C-B558-2563FACD75CA\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-02-22T03:13:59.8035733Z\",\n \"endTime\": - \"2021-02-22T03:14:32.0555939Z\"\n}" + string: "{\n \"name\": \"EB528DF2-584D-4152-BEB5-CDA68FA61F20\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-04-07T07:01:51.5166666Z\",\n \"endTime\": + \"2021-04-07T07:02:23.874337Z\"\n}" headers: cache-control: - no-cache content-length: - - '165' + - '164' content-type: - application/json date: - - Mon, 22 Feb 2021 03:14:32 GMT + - Wed, 07 Apr 2021 07:02:24 GMT expires: - '-1' pragma: @@ -3898,13 +4054,13 @@ interactions: ParameterSetName: - -n -g --image-source --identity --shared-image-destinations --scripts User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template02?api-version=2020-02-14 response: body: - string: "{\n \"properties\": {\n \"source\": {\n \"imageVersionId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24627.7817\",\n + string: "{\n \"properties\": {\n \"source\": {\n \"imageVersionId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24685.21915\",\n \ \"type\": \"SharedImageVersion\"\n },\n \"customize\": [\n {\n \"name\": \"customizeScript.sh\",\n \"scriptUri\": \"https://raw.githubusercontent.com/danielsollondon/azvmimagebuilder/master/quickquickstarts/customizeScript.sh\",\n \ \"sha256Checksum\": \"2c6ff6902a4a52deee69e8db26d0036a53388651008aaf31795bb20dabd21fd8\",\n @@ -3915,19 +4071,19 @@ interactions: \"Succeeded\",\n \"buildTimeoutInMinutes\": 0,\n \"vmProfile\": {\n \"vmSize\": \"\",\n \"osDiskSizeGB\": 0\n }\n },\n \"identity\": {\n \"type\": \"UserAssigned\",\n \ \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1\": - {\n \"principalId\": \"677aec5b-31a6-41e0-8d4c-2acccfa88c74\",\n \"clientId\": - \"98abfd59-3fb3-4a09-ae18-50b7f917b4d9\"\n }\n }\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template02\",\n + {\n \"principalId\": \"d8c1bd5f-da24-4c81-bef0-fc08409aa985\",\n \"clientId\": + \"861e0874-4c66-4b6d-92b0-6307dd9014e3\"\n }\n }\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template02\",\n \"name\": \"template02\",\n \"type\": \"Microsoft.VirtualMachineImages/imageTemplates\",\n \"location\": \"westus\",\n \"tags\": {}\n}" headers: cache-control: - no-cache content-length: - - '1933' + - '1934' content-type: - application/json date: - - Mon, 22 Feb 2021 03:14:33 GMT + - Wed, 07 Apr 2021 07:02:25 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_specialized_image.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_specialized_image.yaml index e4b693b9d5c..c25be44d7d8 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_specialized_image.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_specialized_image.yaml @@ -14,14 +14,14 @@ interactions: - -g --gallery-name User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-09T07:15:14Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:15:16 GMT + - Wed, 07 Apr 2021 06:38:29 GMT expires: - '-1' pragma: @@ -62,7 +62,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01 response: @@ -70,11 +70,11 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_34XE6GOZ7RA7\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_IW6VJJ3JP5ZB\"\r\n },\r\n \ \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/78b4b1f8-981a-4b33-97f5-959106b7e26f?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/5c0d1c3d-a0fb-4165-a296-d953992b9005?api-version=2019-12-01 cache-control: - no-cache content-length: @@ -82,7 +82,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:15:22 GMT + - Wed, 07 Apr 2021 06:38:36 GMT expires: - '-1' pragma: @@ -95,9 +95,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299 + - Microsoft.Compute/CreateUpdateGallery3Min;48,Microsoft.Compute/CreateUpdateGallery30Min;298 x-ms-ratelimit-remaining-subscription-writes: - - '1172' + - '1199' status: code: 201 message: Created @@ -115,14 +115,14 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/78b4b1f8-981a-4b33-97f5-959106b7e26f?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/5c0d1c3d-a0fb-4165-a296-d953992b9005?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T07:15:21.5287108+00:00\",\r\n \"endTime\": - \"2021-02-09T07:15:21.7786882+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"78b4b1f8-981a-4b33-97f5-959106b7e26f\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:38:35.1412398+00:00\",\r\n \"endTime\": + \"2021-04-07T06:38:35.2506147+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"5c0d1c3d-a0fb-4165-a296-d953992b9005\"\r\n}" headers: cache-control: - no-cache @@ -131,7 +131,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:15:52 GMT + - Wed, 07 Apr 2021 06:39:06 GMT expires: - '-1' pragma: @@ -148,7 +148,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4190 + - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4194 status: code: 200 message: OK @@ -166,7 +166,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01 response: @@ -174,7 +174,7 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_34XE6GOZ7RA7\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_IW6VJJ3JP5ZB\"\r\n },\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -184,7 +184,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:15:53 GMT + - Wed, 07 Apr 2021 06:39:07 GMT expires: - '-1' pragma: @@ -201,7 +201,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2492 + - Microsoft.Compute/GetGallery3Min;340,Microsoft.Compute/GetGallery30Min;2490 status: code: 200 message: OK @@ -220,14 +220,14 @@ interactions: - -g --gallery-name --gallery-image-definition --os-type --os-state -p -f -s User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-09T07:15:14Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -236,7 +236,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:15:53 GMT + - Wed, 07 Apr 2021 06:39:07 GMT expires: - '-1' pragma: @@ -270,7 +270,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type --os-state -p -f -s User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -284,7 +284,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d4000501-490b-4510-be79-fcd2a00cf873?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/ea016098-1530-4a69-a56e-5e06f85a3d4e?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -292,7 +292,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:15:57 GMT + - Wed, 07 Apr 2021 06:39:14 GMT expires: - '-1' pragma: @@ -305,9 +305,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;749 + - Microsoft.Compute/CreateUpdateGalleryImage3Min;148,Microsoft.Compute/CreateUpdateGalleryImage30Min;748 x-ms-ratelimit-remaining-subscription-writes: - - '1165' + - '1198' status: code: 201 message: Created @@ -325,14 +325,14 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type --os-state -p -f -s User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d4000501-490b-4510-be79-fcd2a00cf873?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/ea016098-1530-4a69-a56e-5e06f85a3d4e?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T07:15:56.6068174+00:00\",\r\n \"endTime\": - \"2021-02-09T07:15:56.7161975+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"d4000501-490b-4510-be79-fcd2a00cf873\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:39:13.0632191+00:00\",\r\n \"endTime\": + \"2021-04-07T06:39:13.1569681+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"ea016098-1530-4a69-a56e-5e06f85a3d4e\"\r\n}" headers: cache-control: - no-cache @@ -341,7 +341,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:16:27 GMT + - Wed, 07 Apr 2021 06:39:44 GMT expires: - '-1' pragma: @@ -358,7 +358,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4188 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4189 status: code: 200 message: OK @@ -376,7 +376,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type --os-state -p -f -s User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -396,7 +396,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:16:27 GMT + - Wed, 07 Apr 2021 06:39:44 GMT expires: - '-1' pragma: @@ -413,7 +413,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;596,Microsoft.Compute/GetGalleryImage30Min;2993 + - Microsoft.Compute/GetGalleryImage3Min;588,Microsoft.Compute/GetGalleryImage30Min;2988 status: code: 200 message: OK @@ -432,14 +432,14 @@ interactions: - -g -n --image --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-09T07:15:14Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -448,7 +448,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:16:29 GMT + - Wed, 07 Apr 2021 06:39:45 GMT expires: - '-1' pragma: @@ -472,7 +472,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.25.1 + - python-requests/2.22.0 method: GET uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-compute/quickstart-templates/aliases.json response: @@ -527,17 +527,17 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Tue, 09 Feb 2021 07:16:30 GMT + - Wed, 07 Apr 2021 06:39:46 GMT etag: - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" expires: - - Tue, 09 Feb 2021 07:21:30 GMT + - Wed, 07 Apr 2021 06:44:46 GMT source-age: - - '225' + - '284' strict-transport-security: - max-age=31536000 vary: - - Authorization,Accept-Encoding, Accept-Encoding + - Authorization,Accept-Encoding via: - 1.1 varnish x-cache: @@ -547,15 +547,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - bcdba9e18f67d50e0d516bc0160270267e17cddb + - c1485ce59a4d48e8567b09d9fe87de76b33041cb x-frame-options: - deny x-github-request-id: - - 5F66:4D94:DC2B:ECD5:60217BA5 + - F382:5F6B:C6E59:EBF3D:606D47A2 x-served-by: - - cache-sin18049-SIN + - cache-qpg1239-QPG x-timer: - - S1612854990.414493,VS0,VE1 + - S1617777587.587406,VS0,VE0 x-xss-protection: - 1; mode=block status: @@ -575,7 +575,7 @@ interactions: ParameterSetName: - -g -n --image --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 response: @@ -589,7 +589,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:16:30 GMT + - Wed, 07 Apr 2021 06:39:46 GMT expires: - '-1' pragma: @@ -629,8 +629,9 @@ interactions: "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference": {"publisher": "Canonical", "offer": "UbuntuServer", "sku": "18.04-LTS", "version": "latest"}}, "osProfile": {"computerName": "vm1", "adminUsername": "azureuser", - "adminPassword": "[parameters(''adminPassword'')]"}}}], "outputs": {}}, "parameters": - {"adminPassword": {"value": "testPassword0"}}, "mode": "Incremental"}}' + "adminPassword": "[parameters(''adminPassword'')]"}, "securityProfile": {}}}], + "outputs": {}}, "parameters": {"adminPassword": {"value": "testPassword0"}}, + "mode": "Incremental"}}' headers: Accept: - application/json @@ -641,32 +642,32 @@ interactions: Connection: - keep-alive Content-Length: - - '3036' + - '3059' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --image --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_oK1VrRumztjBQUZYf4WpebrU2As9niqf","name":"vm_deploy_oK1VrRumztjBQUZYf4WpebrU2As9niqf","type":"Microsoft.Resources/deployments","properties":{"templateHash":"10464419225661885846","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-02-09T07:16:34.4469788Z","duration":"PT2.2451618S","correlationId":"35822697-eb12-4d6b-a65e-7bc6d0df05e7","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_nrIQr0WiH97p72tNc1MW54PxsInQcIym","name":"vm_deploy_nrIQr0WiH97p72tNc1MW54PxsInQcIym","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6193419592610016669","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-07T06:39:49.8619132Z","duration":"PT1.1678796S","correlationId":"f1a52f2a-760e-4de8-9c77-dd0b2fa6cb85","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_oK1VrRumztjBQUZYf4WpebrU2As9niqf/operationStatuses/08585887518932758141?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_nrIQr0WiH97p72tNc1MW54PxsInQcIym/operationStatuses/08585838292967836531?api-version=2020-10-01 cache-control: - no-cache content-length: - - '2782' + - '2781' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:16:35 GMT + - Wed, 07 Apr 2021 06:39:51 GMT expires: - '-1' pragma: @@ -676,7 +677,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1180' + - '1199' status: code: 201 message: Created @@ -695,9 +696,9 @@ interactions: - -g -n --image --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585887518932758141?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585838292967836531?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -709,7 +710,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:17:05 GMT + - Wed, 07 Apr 2021 06:40:21 GMT expires: - '-1' pragma: @@ -738,9 +739,9 @@ interactions: - -g -n --image --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585887518932758141?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585838292967836531?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -752,7 +753,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:17:35 GMT + - Wed, 07 Apr 2021 06:40:53 GMT expires: - '-1' pragma: @@ -781,21 +782,21 @@ interactions: - -g -n --image --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_oK1VrRumztjBQUZYf4WpebrU2As9niqf","name":"vm_deploy_oK1VrRumztjBQUZYf4WpebrU2As9niqf","type":"Microsoft.Resources/deployments","properties":{"templateHash":"10464419225661885846","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-02-09T07:17:17.6196551Z","duration":"PT45.4178381S","correlationId":"35822697-eb12-4d6b-a65e-7bc6d0df05e7","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_nrIQr0WiH97p72tNc1MW54PxsInQcIym","name":"vm_deploy_nrIQr0WiH97p72tNc1MW54PxsInQcIym","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6193419592610016669","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-07T06:40:30.7052459Z","duration":"PT42.0112123S","correlationId":"f1a52f2a-760e-4de8-9c77-dd0b2fa6cb85","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}' headers: cache-control: - no-cache content-length: - - '3847' + - '3846' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:17:36 GMT + - Wed, 07 Apr 2021 06:40:53 GMT expires: - '-1' pragma: @@ -823,23 +824,23 @@ interactions: ParameterSetName: - -g -n --image --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"44de8f25-26c5-4fa0-8001-c93da2e744a6\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"77bd0a16-e27b-4d4a-afdb-4fee1e806a73\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202101290\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"vm1_disk1_bb42b60024994c3f871e9ad393a1cb85\",\r\n + \"18.04.202103250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"vm1_disk1_1a2fa795a1e340349cb7cd373b2854fa\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_bb42b60024994c3f871e9ad393a1cb85\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_1a2fa795a1e340349cb7cd373b2854fa\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n \ \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": {\r\n @@ -850,19 +851,19 @@ interactions: {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\": \"vm1\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n - \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.53\",\r\n \"statuses\": + \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.54.2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \ \"message\": \"Guest Agent is running\",\r\n \"time\": - \"2021-02-09T07:17:36+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_disk1_bb42b60024994c3f871e9ad393a1cb85\",\r\n + \"2021-04-07T06:40:51+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_disk1_1a2fa795a1e340349cb7cd373b2854fa\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-02-09T07:17:04.4284158+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-07T06:40:14.5148274+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-02-09T07:17:15.819541+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-07T06:40:29.8161898+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n \ }\r\n ]\r\n }\r\n }\r\n}" @@ -870,11 +871,11 @@ interactions: cache-control: - no-cache content-length: - - '3250' + - '3253' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:17:38 GMT + - Wed, 07 Apr 2021 06:40:54 GMT expires: - '-1' pragma: @@ -891,7 +892,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3959,Microsoft.Compute/LowCostGet30Min;31777 + - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31951 status: code: 200 message: OK @@ -909,18 +910,18 @@ interactions: ParameterSetName: - -g -n --image --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"vm1VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\r\n - \ \"etag\": \"W/\\\"14644bd3-0230-461c-a35c-72c3337f88ff\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"3542fa26-757a-4aa1-8492-8ebc72c5dd18\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"79981538-1ced-48bb-adb3-ac1e5e423e29\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"40dd08e3-0d1f-4362-a88e-abc834866970\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm1\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\r\n - \ \"etag\": \"W/\\\"14644bd3-0230-461c-a35c-72c3337f88ff\\\"\",\r\n + \ \"etag\": \"W/\\\"3542fa26-757a-4aa1-8492-8ebc72c5dd18\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -929,8 +930,8 @@ interactions: \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": - \"zt55i0nnpdbepc2oxlbtdy454e.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-22-48-03-BA-30\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"arwansdoionerkksu3wj2bxajc.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-22-48-04-71-59\",\r\n \"enableAcceleratedNetworking\": false,\r\n \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -944,9 +945,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:17:38 GMT + - Wed, 07 Apr 2021 06:40:54 GMT etag: - - W/"14644bd3-0230-461c-a35c-72c3337f88ff" + - W/"3542fa26-757a-4aa1-8492-8ebc72c5dd18" expires: - '-1' pragma: @@ -963,7 +964,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 652586af-1a81-4c89-8fc7-a56625eae49f + - 9256c58e-ed6c-46cf-a9d1-f2449cb6dcdf status: code: 200 message: OK @@ -981,17 +982,17 @@ interactions: ParameterSetName: - -g -n --image --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"vm1PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\r\n - \ \"etag\": \"W/\\\"1886f520-bc2e-4fae-a2a5-0ed845750dc0\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"986abc3f-04cf-4ee1-a460-40ff0da9b626\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"5b81d4f8-d658-468c-9c5b-3be57b3f51ea\",\r\n - \ \"ipAddress\": \"168.62.198.116\",\r\n \"publicIPAddressVersion\": - \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + \"Succeeded\",\r\n \"resourceGuid\": \"6948cb4d-6bdb-425a-8a05-81675e5213f5\",\r\n + \ \"ipAddress\": \"104.42.212.79\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" @@ -999,13 +1000,13 @@ interactions: cache-control: - no-cache content-length: - - '998' + - '997' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:17:38 GMT + - Wed, 07 Apr 2021 06:40:54 GMT etag: - - W/"1886f520-bc2e-4fae-a2a5-0ed845750dc0" + - W/"986abc3f-04cf-4ee1-a460-40ff0da9b626" expires: - '-1' pragma: @@ -1022,7 +1023,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 09173e37-f96b-464f-bc22-6b7b1553fb13 + - e236aac4-926b-4e4f-8df9-27782291c2ba status: code: 200 message: OK @@ -1040,23 +1041,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"44de8f25-26c5-4fa0-8001-c93da2e744a6\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"77bd0a16-e27b-4d4a-afdb-4fee1e806a73\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"18.04.202101290\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"vm1_disk1_bb42b60024994c3f871e9ad393a1cb85\",\r\n + \"18.04.202103250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"vm1_disk1_1a2fa795a1e340349cb7cd373b2854fa\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_bb42b60024994c3f871e9ad393a1cb85\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_1a2fa795a1e340349cb7cd373b2854fa\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n \ \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": {\r\n @@ -1074,7 +1075,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:17:39 GMT + - Wed, 07 Apr 2021 06:40:56 GMT expires: - '-1' pragma: @@ -1091,7 +1092,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3958,Microsoft.Compute/LowCostGet30Min;31776 + - Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31950 status: code: 200 message: OK @@ -1109,12 +1110,12 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/vm1_disk1_bb42b60024994c3f871e9ad393a1cb85?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/vm1_disk1_1a2fa795a1e340349cb7cd373b2854fa?api-version=2020-05-01 response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/vm1_disk1_bb42b60024994c3f871e9ad393a1cb85'' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/vm1_disk1_1a2fa795a1e340349cb7cd373b2854fa'' under resource group ''cli_test_test_specialized_image_000001'' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: @@ -1125,7 +1126,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:17:40 GMT + - Wed, 07 Apr 2021 06:40:56 GMT expires: - '-1' pragma: @@ -1153,24 +1154,24 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_bb42b60024994c3f871e9ad393a1cb85?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_1a2fa795a1e340349cb7cd373b2854fa?api-version=2020-09-30 response: body: - string: "{\r\n \"name\": \"vm1_disk1_bb42b60024994c3f871e9ad393a1cb85\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_bb42b60024994c3f871e9ad393a1cb85\",\r\n + string: "{\r\n \"name\": \"vm1_disk1_1a2fa795a1e340349cb7cd373b2854fa\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_1a2fa795a1e340349cb7cd373b2854fa\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n \ },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"FromImage\",\r\n \"imageReference\": {\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/canonical/ArtifactTypes/VMImage/Offers/ubuntuserver/Skus/18.04-lts/Versions/18.04.202101290\"\r\n + \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/canonical/ArtifactTypes/VMImage/Offers/ubuntuserver/Skus/18.04-lts/Versions/18.04.202103250\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-02-09T07:17:03.2401589+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-07T06:40:13.5199181+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"bb42b600-2499-4c3f-871e-9ad393a1cb85\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"1a2fa795-a1e3-4034-9cb7-cd373b2854fa\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -1180,7 +1181,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:17:40 GMT + - Wed, 07 Apr 2021 06:40:57 GMT expires: - '-1' pragma: @@ -1197,7 +1198,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4984,Microsoft.Compute/LowCostGet30Min;39892 + - Microsoft.Compute/LowCostGet3Min;4977,Microsoft.Compute/LowCostGet30Min;39976 status: code: 200 message: OK @@ -1216,14 +1217,14 @@ interactions: - -g -n --source User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-09T07:15:14Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1232,7 +1233,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:17:40 GMT + - Wed, 07 Apr 2021 06:40:58 GMT expires: - '-1' pragma: @@ -1248,7 +1249,7 @@ interactions: message: OK - request: body: '{"location": "westus", "tags": {}, "sku": {"name": "Standard_LRS"}, "properties": - {"creationData": {"createOption": "Copy", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_bb42b60024994c3f871e9ad393a1cb85"}}}' + {"creationData": {"createOption": "Copy", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_1a2fa795a1e340349cb7cd373b2854fa"}}}' headers: Accept: - application/json @@ -1265,7 +1266,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 response: @@ -1273,13 +1274,13 @@ interactions: string: "{\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \ \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n - \ \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_bb42b60024994c3f871e9ad393a1cb85\",\r\n - \ \"sourceUniqueId\": \"bb42b600-2499-4c3f-871e-9ad393a1cb85\"\r\n },\r\n + \ \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_1a2fa795a1e340349cb7cd373b2854fa\",\r\n + \ \"sourceUniqueId\": \"1a2fa795-a1e3-4034-9cb7-cd373b2854fa\"\r\n },\r\n \ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/94ce706d-af1e-4504-bec8-ee1eb52ddee1?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/798c809e-48b5-4f04-9941-9045484fa332?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1287,11 +1288,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:17:45 GMT + - Wed, 07 Apr 2021 06:41:03 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/94ce706d-af1e-4504-bec8-ee1eb52ddee1?monitor=true&api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/798c809e-48b5-4f04-9941-9045484fa332?monitor=true&api-version=2020-05-01 pragma: - no-cache server: @@ -1302,9 +1303,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7999 + - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;998,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7998 x-ms-ratelimit-remaining-subscription-writes: - - '1170' + - '1199' status: code: 202 message: Accepted @@ -1322,27 +1323,27 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/94ce706d-af1e-4504-bec8-ee1eb52ddee1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/798c809e-48b5-4f04-9941-9045484fa332?api-version=2020-05-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T07:17:45.8048123+00:00\",\r\n \"endTime\": - \"2021-02-09T07:17:46.7423509+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-07T06:41:03.6295998+00:00\",\r\n \"endTime\": + \"2021-04-07T06:41:04.2702253+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\",\r\n \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \ \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_bb42b60024994c3f871e9ad393a1cb85\",\r\n - \ \"sourceUniqueId\": \"bb42b600-2499-4c3f-871e-9ad393a1cb85\"\r\n },\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_1a2fa795a1e340349cb7cd373b2854fa\",\r\n + \ \"sourceUniqueId\": \"1a2fa795-a1e3-4034-9cb7-cd373b2854fa\"\r\n },\r\n \ \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-02-09T07:17:45.8048123+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-07T06:41:03.6295998+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"b6594243-c76e-43b9-ac17-598db6287ca2\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"9ca613fb-5206-4a75-8b1e-217c50ef180a\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"94ce706d-af1e-4504-bec8-ee1eb52ddee1\"\r\n}" + \"798c809e-48b5-4f04-9941-9045484fa332\"\r\n}" headers: cache-control: - no-cache @@ -1351,7 +1352,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:17:47 GMT + - Wed, 07 Apr 2021 06:41:05 GMT expires: - '-1' pragma: @@ -1368,7 +1369,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49995,Microsoft.Compute/GetOperation30Min;399958 + - Microsoft.Compute/GetOperation3Min;49985,Microsoft.Compute/GetOperation30Min;399985 status: code: 200 message: OK @@ -1386,7 +1387,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 response: @@ -1396,12 +1397,12 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \ \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_bb42b60024994c3f871e9ad393a1cb85\",\r\n - \ \"sourceUniqueId\": \"bb42b600-2499-4c3f-871e-9ad393a1cb85\"\r\n },\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_1a2fa795a1e340349cb7cd373b2854fa\",\r\n + \ \"sourceUniqueId\": \"1a2fa795-a1e3-4034-9cb7-cd373b2854fa\"\r\n },\r\n \ \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-02-09T07:17:45.8048123+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-07T06:41:03.6295998+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"b6594243-c76e-43b9-ac17-598db6287ca2\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"9ca613fb-5206-4a75-8b1e-217c50ef180a\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -1411,7 +1412,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:17:47 GMT + - Wed, 07 Apr 2021 06:41:06 GMT expires: - '-1' pragma: @@ -1428,7 +1429,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4983,Microsoft.Compute/LowCostGet30Min;39891 + - Microsoft.Compute/LowCostGet3Min;4976,Microsoft.Compute/LowCostGet30Min;39975 status: code: 200 message: OK @@ -1447,14 +1448,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-09T07:15:14Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1463,7 +1464,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:17:48 GMT + - Wed, 07 Apr 2021 06:41:06 GMT expires: - '-1' pragma: @@ -1497,7 +1498,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2019-12-01 response: @@ -1508,7 +1509,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-09T07:17:51.2005527+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-07T06:41:11.3591832+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"hostCaching\": \"ReadWrite\",\r\n \ \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -1516,7 +1517,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8df21e63-e6f9-4314-adc6-718a607786d9?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/b63f60bb-6258-4c9a-b355-bb7f0b7057c9?api-version=2019-12-01 cache-control: - no-cache content-length: @@ -1524,7 +1525,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:17:51 GMT + - Wed, 07 Apr 2021 06:41:12 GMT expires: - '-1' pragma: @@ -1537,9 +1538,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1199 + - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;373,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1198 x-ms-ratelimit-remaining-subscription-writes: - - '1168' + - '1198' status: code: 201 message: Created @@ -1557,13 +1558,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8df21e63-e6f9-4314-adc6-718a607786d9?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/b63f60bb-6258-4c9a-b355-bb7f0b7057c9?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T07:17:51.1848968+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"8df21e63-e6f9-4314-adc6-718a607786d9\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:41:11.3591832+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"b63f60bb-6258-4c9a-b355-bb7f0b7057c9\"\r\n}" headers: cache-control: - no-cache @@ -1572,7 +1573,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:18:52 GMT + - Wed, 07 Apr 2021 06:42:12 GMT expires: - '-1' pragma: @@ -1589,7 +1590,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4187 + - Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;4178 status: code: 200 message: OK @@ -1607,13 +1608,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8df21e63-e6f9-4314-adc6-718a607786d9?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/b63f60bb-6258-4c9a-b355-bb7f0b7057c9?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T07:17:51.1848968+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"8df21e63-e6f9-4314-adc6-718a607786d9\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:41:11.3591832+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"b63f60bb-6258-4c9a-b355-bb7f0b7057c9\"\r\n}" headers: cache-control: - no-cache @@ -1622,7 +1623,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:19:52 GMT + - Wed, 07 Apr 2021 06:43:13 GMT expires: - '-1' pragma: @@ -1639,7 +1640,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4185 + - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4175 status: code: 200 message: OK @@ -1657,13 +1658,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8df21e63-e6f9-4314-adc6-718a607786d9?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/b63f60bb-6258-4c9a-b355-bb7f0b7057c9?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T07:17:51.1848968+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"8df21e63-e6f9-4314-adc6-718a607786d9\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:41:11.3591832+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"b63f60bb-6258-4c9a-b355-bb7f0b7057c9\"\r\n}" headers: cache-control: - no-cache @@ -1672,7 +1673,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:20:53 GMT + - Wed, 07 Apr 2021 06:44:13 GMT expires: - '-1' pragma: @@ -1689,7 +1690,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4189 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4171 status: code: 200 message: OK @@ -1707,13 +1708,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8df21e63-e6f9-4314-adc6-718a607786d9?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/b63f60bb-6258-4c9a-b355-bb7f0b7057c9?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T07:17:51.1848968+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"8df21e63-e6f9-4314-adc6-718a607786d9\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:41:11.3591832+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"b63f60bb-6258-4c9a-b355-bb7f0b7057c9\"\r\n}" headers: cache-control: - no-cache @@ -1722,7 +1723,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:21:53 GMT + - Wed, 07 Apr 2021 06:45:14 GMT expires: - '-1' pragma: @@ -1739,7 +1740,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4187 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4167 status: code: 200 message: OK @@ -1757,13 +1758,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8df21e63-e6f9-4314-adc6-718a607786d9?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/b63f60bb-6258-4c9a-b355-bb7f0b7057c9?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T07:17:51.1848968+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"8df21e63-e6f9-4314-adc6-718a607786d9\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:41:11.3591832+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"b63f60bb-6258-4c9a-b355-bb7f0b7057c9\"\r\n}" headers: cache-control: - no-cache @@ -1772,7 +1773,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:22:53 GMT + - Wed, 07 Apr 2021 06:46:16 GMT expires: - '-1' pragma: @@ -1789,7 +1790,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4185 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4163 status: code: 200 message: OK @@ -1807,13 +1808,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8df21e63-e6f9-4314-adc6-718a607786d9?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/b63f60bb-6258-4c9a-b355-bb7f0b7057c9?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T07:17:51.1848968+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"8df21e63-e6f9-4314-adc6-718a607786d9\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:41:11.3591832+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"b63f60bb-6258-4c9a-b355-bb7f0b7057c9\"\r\n}" headers: cache-control: - no-cache @@ -1822,7 +1823,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:23:54 GMT + - Wed, 07 Apr 2021 06:47:16 GMT expires: - '-1' pragma: @@ -1839,7 +1840,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4183 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4159 status: code: 200 message: OK @@ -1857,13 +1858,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8df21e63-e6f9-4314-adc6-718a607786d9?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/b63f60bb-6258-4c9a-b355-bb7f0b7057c9?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T07:17:51.1848968+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"8df21e63-e6f9-4314-adc6-718a607786d9\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:41:11.3591832+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"b63f60bb-6258-4c9a-b355-bb7f0b7057c9\"\r\n}" headers: cache-control: - no-cache @@ -1872,7 +1873,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:24:54 GMT + - Wed, 07 Apr 2021 06:48:17 GMT expires: - '-1' pragma: @@ -1889,7 +1890,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4181 + - Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4154 status: code: 200 message: OK @@ -1907,13 +1908,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8df21e63-e6f9-4314-adc6-718a607786d9?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/b63f60bb-6258-4c9a-b355-bb7f0b7057c9?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T07:17:51.1848968+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"8df21e63-e6f9-4314-adc6-718a607786d9\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:41:11.3591832+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"b63f60bb-6258-4c9a-b355-bb7f0b7057c9\"\r\n}" headers: cache-control: - no-cache @@ -1922,7 +1923,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:25:54 GMT + - Wed, 07 Apr 2021 06:49:18 GMT expires: - '-1' pragma: @@ -1939,7 +1940,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4181 + - Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4150 status: code: 200 message: OK @@ -1957,13 +1958,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8df21e63-e6f9-4314-adc6-718a607786d9?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/b63f60bb-6258-4c9a-b355-bb7f0b7057c9?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T07:17:51.1848968+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"8df21e63-e6f9-4314-adc6-718a607786d9\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:41:11.3591832+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"b63f60bb-6258-4c9a-b355-bb7f0b7057c9\"\r\n}" headers: cache-control: - no-cache @@ -1972,7 +1973,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:26:55 GMT + - Wed, 07 Apr 2021 06:50:19 GMT expires: - '-1' pragma: @@ -1989,7 +1990,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4179 + - Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;4145 status: code: 200 message: OK @@ -2007,14 +2008,14 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8df21e63-e6f9-4314-adc6-718a607786d9?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/b63f60bb-6258-4c9a-b355-bb7f0b7057c9?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-09T07:17:51.1848968+00:00\",\r\n \"endTime\": - \"2021-02-09T07:27:37.7805345+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"8df21e63-e6f9-4314-adc6-718a607786d9\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:41:11.3591832+00:00\",\r\n \"endTime\": + \"2021-04-07T06:50:57.3766784+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"b63f60bb-6258-4c9a-b355-bb7f0b7057c9\"\r\n}" headers: cache-control: - no-cache @@ -2023,7 +2024,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:27:55 GMT + - Wed, 07 Apr 2021 06:51:19 GMT expires: - '-1' pragma: @@ -2040,7 +2041,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4177 + - Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;4140 status: code: 200 message: OK @@ -2058,7 +2059,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2019-12-01 response: @@ -2069,7 +2070,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-09T07:17:51.2005527+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-07T06:41:11.3591832+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": \"ReadWrite\",\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2083,7 +2084,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:27:56 GMT + - Wed, 07 Apr 2021 06:51:20 GMT expires: - '-1' pragma: @@ -2100,7 +2101,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9996 + - Microsoft.Compute/GetGalleryImageVersion3Min;1995,Microsoft.Compute/GetGalleryImageVersion30Min;9987 status: code: 200 message: OK @@ -2119,14 +2120,14 @@ interactions: - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-09T07:15:14Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2135,7 +2136,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:27:56 GMT + - Wed, 07 Apr 2021 06:51:20 GMT expires: - '-1' pragma: @@ -2163,7 +2164,7 @@ interactions: ParameterSetName: - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -2183,7 +2184,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:27:58 GMT + - Wed, 07 Apr 2021 06:51:21 GMT expires: - '-1' pragma: @@ -2200,7 +2201,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;594,Microsoft.Compute/GetGalleryImage30Min;2989 + - Microsoft.Compute/GetGalleryImage3Min;586,Microsoft.Compute/GetGalleryImage30Min;2960 status: code: 200 message: OK @@ -2218,7 +2219,7 @@ interactions: ParameterSetName: - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2019-12-01 response: @@ -2229,7 +2230,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-09T07:17:51.2005527+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-07T06:41:11.3591832+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": \"ReadWrite\",\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2243,7 +2244,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:27:58 GMT + - Wed, 07 Apr 2021 06:51:22 GMT expires: - '-1' pragma: @@ -2260,7 +2261,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1998,Microsoft.Compute/GetGalleryImageVersion30Min;9995 + - Microsoft.Compute/GetGalleryImageVersion3Min;1994,Microsoft.Compute/GetGalleryImageVersion30Min;9986 status: code: 200 message: OK @@ -2278,37 +2279,37 @@ interactions: ParameterSetName: - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vm1VNET\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\r\n - \ \"etag\": \"W/\\\"a9f63bb8-052a-4257-995f-e3536e05913b\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"b24d7ddb-4e79-4d65-9972-ec7c2a0e962f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"69f4ffcc-78ad-47c2-8b8e-bac331e3dff4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"c8066c04-436e-489a-a952-a76c9e06e04a\",\r\n \ \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n \ ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"vm1Subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\r\n - \ \"etag\": \"W/\\\"a9f63bb8-052a-4257-995f-e3536e05913b\\\"\",\r\n + \ \"etag\": \"W/\\\"b24d7ddb-4e79-4d65-9972-ec7c2a0e962f\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \ \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n }\r\n ]\r\n}" + false\r\n }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '1750' + - '1712' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:27:59 GMT + - Wed, 07 Apr 2021 06:51:23 GMT expires: - '-1' pragma: @@ -2325,7 +2326,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 222d7d06-0bce-4425-ab6f-130547969a85 + - 1a3ffbf6-7199-4090-b82c-2dc7065a1411 status: code: 200 message: OK @@ -2350,9 +2351,9 @@ interactions: {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"}]}, "storageProfile": {"osDisk": {"createOption": "fromImage", "name": null, "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference": - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0"}}}}], - "outputs": {}}, "parameters": {"adminPassword": {"value": "testPassword0"}}, - "mode": "Incremental"}}' + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0"}}, + "securityProfile": {}}}], "outputs": {}}, "parameters": {"adminPassword": {"value": + "testPassword0"}}, "mode": "Incremental"}}' headers: Accept: - application/json @@ -2363,32 +2364,32 @@ interactions: Connection: - keep-alive Content-Length: - - '2722' + - '2745' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_ryefiA3CmqBGnt4bXtt9XrF0bLrea4lP","name":"vm_deploy_ryefiA3CmqBGnt4bXtt9XrF0bLrea4lP","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7130659274670664949","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-02-09T07:28:03.4548007Z","duration":"PT2.327452S","correlationId":"6cf69f4b-1114-444c-9de9-78b8b9ed77ef","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_xfvHSfNkaV4gUASsTgrhTaXUBd5MS2rI","name":"vm_deploy_xfvHSfNkaV4gUASsTgrhTaXUBd5MS2rI","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8412955923434586431","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-07T06:51:27.5736553Z","duration":"PT2.2393876S","correlationId":"0bafcc1f-b39e-453d-9b53-7892158cc2b9","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_ryefiA3CmqBGnt4bXtt9XrF0bLrea4lP/operationStatuses/08585887512043502851?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_xfvHSfNkaV4gUASsTgrhTaXUBd5MS2rI/operationStatuses/08585838286001433624?api-version=2020-10-01 cache-control: - no-cache content-length: - - '2442' + - '2443' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:28:04 GMT + - Wed, 07 Apr 2021 06:51:28 GMT expires: - '-1' pragma: @@ -2398,7 +2399,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1168' + - '1198' status: code: 201 message: Created @@ -2417,52 +2418,9 @@ interactions: - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585887512043502851?api-version=2020-10-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 09 Feb 2021 07:28:34 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type - User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585887512043502851?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585838286001433624?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -2474,7 +2432,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:29:05 GMT + - Wed, 07 Apr 2021 06:51:59 GMT expires: - '-1' pragma: @@ -2503,9 +2461,9 @@ interactions: - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585887512043502851?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585838286001433624?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -2517,7 +2475,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:29:36 GMT + - Wed, 07 Apr 2021 06:52:30 GMT expires: - '-1' pragma: @@ -2546,12 +2504,12 @@ interactions: - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_ryefiA3CmqBGnt4bXtt9XrF0bLrea4lP","name":"vm_deploy_ryefiA3CmqBGnt4bXtt9XrF0bLrea4lP","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7130659274670664949","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-02-09T07:29:08.9418037Z","duration":"PT1M7.814455S","correlationId":"6cf69f4b-1114-444c-9de9-78b8b9ed77ef","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_xfvHSfNkaV4gUASsTgrhTaXUBd5MS2rI","name":"vm_deploy_xfvHSfNkaV4gUASsTgrhTaXUBd5MS2rI","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8412955923434586431","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-07T06:52:06.7564893Z","duration":"PT41.4222216S","correlationId":"0bafcc1f-b39e-453d-9b53-7892158cc2b9","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"}]}}' headers: cache-control: - no-cache @@ -2560,7 +2518,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:29:36 GMT + - Wed, 07 Apr 2021 06:52:30 GMT expires: - '-1' pragma: @@ -2588,22 +2546,22 @@ interactions: ParameterSetName: - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2?$expand=instanceView&api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"vm2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"fa930c59-af85-4417-9c19-f3adf2f2fda2\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"b4c20e14-2657-4115-aa08-1821dcbf48bc\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0\",\r\n \ \"exactVersion\": \"1.0.0\"\r\n },\r\n \"osDisk\": {\r\n - \ \"osType\": \"Linux\",\r\n \"name\": \"vm2_OsDisk_1_6767a598fad24aea984db20d84b9ca41\",\r\n + \ \"osType\": \"Linux\",\r\n \"name\": \"vm2_OsDisk_1_9ccc9833c26c4e63b8ccb32a596fefcc\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm2_OsDisk_1_6767a598fad24aea984db20d84b9ca41\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm2_OsDisk_1_9ccc9833c26c4e63b8ccb32a596fefcc\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\"}]},\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": @@ -2611,18 +2569,18 @@ interactions: \ {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \ \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet - populated.\",\r\n \"time\": \"2021-02-09T07:29:38+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2021-04-07T06:52:31+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"vm2_OsDisk_1_6767a598fad24aea984db20d84b9ca41\",\r\n \"statuses\": + \"vm2_OsDisk_1_9ccc9833c26c4e63b8ccb32a596fefcc\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-02-09T07:28:53.242193+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-07T06:51:50.9381049+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"OSState/specialized\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM specialized\"\r\n \ },\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-02-09T07:29:05.4770677+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-07T06:52:05.3762496+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n \ }\r\n ]\r\n }\r\n }\r\n}" @@ -2630,11 +2588,11 @@ interactions: cache-control: - no-cache content-length: - - '3018' + - '3019' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:29:38 GMT + - Wed, 07 Apr 2021 06:52:31 GMT expires: - '-1' pragma: @@ -2651,7 +2609,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3978,Microsoft.Compute/LowCostGet30Min;31745 + - Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31939 status: code: 200 message: OK @@ -2669,18 +2627,18 @@ interactions: ParameterSetName: - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"vm2VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\",\r\n - \ \"etag\": \"W/\\\"a23338ae-6ad7-404a-9284-0e233a089d72\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"de2578a8-5667-4c1d-a8b8-482822d21b52\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"74b15644-0c62-453d-bfdc-ff0cd19359e7\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"b8983c93-498d-41c6-a1a3-b6acfa50945b\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm2\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2\",\r\n - \ \"etag\": \"W/\\\"a23338ae-6ad7-404a-9284-0e233a089d72\\\"\",\r\n + \ \"etag\": \"W/\\\"de2578a8-5667-4c1d-a8b8-482822d21b52\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": @@ -2689,8 +2647,8 @@ interactions: \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": - \"zt55i0nnpdbepc2oxlbtdy454e.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-22-48-03-F4-FD\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"arwansdoionerkksu3wj2bxajc.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-22-48-06-E8-6D\",\r\n \"enableAcceleratedNetworking\": false,\r\n \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -2704,9 +2662,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:29:38 GMT + - Wed, 07 Apr 2021 06:52:31 GMT etag: - - W/"a23338ae-6ad7-404a-9284-0e233a089d72" + - W/"de2578a8-5667-4c1d-a8b8-482822d21b52" expires: - '-1' pragma: @@ -2723,7 +2681,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9609a809-5d7d-4ea5-bb69-9b3a19252c77 + - 3cce88ae-4401-4a84-8656-9c7d166dfbff status: code: 200 message: OK @@ -2741,17 +2699,17 @@ interactions: ParameterSetName: - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"vm2PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\",\r\n - \ \"etag\": \"W/\\\"ee1dca11-35aa-4afe-9bee-bd0ce50db73e\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"62861409-a3d5-42ae-87ea-beb3db31f98b\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"337ebbed-1d5d-4eeb-9818-91eb8318b25b\",\r\n - \ \"ipAddress\": \"104.210.43.18\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n - \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + \"Succeeded\",\r\n \"resourceGuid\": \"a1999384-92b2-4526-926c-33741de27ff6\",\r\n + \ \"ipAddress\": \"40.112.186.199\",\r\n \"publicIPAddressVersion\": + \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" @@ -2759,13 +2717,13 @@ interactions: cache-control: - no-cache content-length: - - '997' + - '998' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:29:38 GMT + - Wed, 07 Apr 2021 06:52:31 GMT etag: - - W/"ee1dca11-35aa-4afe-9bee-bd0ce50db73e" + - W/"62861409-a3d5-42ae-87ea-beb3db31f98b" expires: - '-1' pragma: @@ -2782,7 +2740,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7a1d67ff-a7b8-411d-851a-df10aef18178 + - f0d092fa-3a4b-42dd-828c-87f9c2f0c88f status: code: 200 message: OK @@ -2801,14 +2759,14 @@ interactions: - -g -n --image --specialized --admin-username --admin-password --authentication-type User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-09T07:15:14Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2817,7 +2775,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:29:38 GMT + - Wed, 07 Apr 2021 06:52:32 GMT expires: - '-1' pragma: @@ -2845,7 +2803,7 @@ interactions: ParameterSetName: - -g -n --image --specialized --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -2865,7 +2823,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:29:39 GMT + - Wed, 07 Apr 2021 06:52:33 GMT expires: - '-1' pragma: @@ -2882,7 +2840,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;597,Microsoft.Compute/GetGalleryImage30Min;2988 + - Microsoft.Compute/GetGalleryImage3Min;589,Microsoft.Compute/GetGalleryImage30Min;2957 status: code: 200 message: OK @@ -2900,7 +2858,7 @@ interactions: ParameterSetName: - -g -n --image --specialized --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2019-12-01 response: @@ -2911,7 +2869,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-09T07:17:51.2005527+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-07T06:41:11.3591832+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": \"ReadWrite\",\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2925,7 +2883,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:29:40 GMT + - Wed, 07 Apr 2021 06:52:34 GMT expires: - '-1' pragma: @@ -2942,7 +2900,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1995,Microsoft.Compute/GetGalleryImageVersion30Min;9992 + - Microsoft.Compute/GetGalleryImageVersion3Min;1992,Microsoft.Compute/GetGalleryImageVersion30Min;9983 status: code: 200 message: OK @@ -2960,21 +2918,21 @@ interactions: ParameterSetName: - -g -n --image --specialized --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vm1VNET\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\r\n - \ \"etag\": \"W/\\\"06d9c398-2960-4ed2-af55-c4b9266403eb\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9e7b57fc-2dbc-4a31-b998-3f2e2e76cdb1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"69f4ffcc-78ad-47c2-8b8e-bac331e3dff4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"c8066c04-436e-489a-a952-a76c9e06e04a\",\r\n \ \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n \ ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"vm1Subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\r\n - \ \"etag\": \"W/\\\"06d9c398-2960-4ed2-af55-c4b9266403eb\\\"\",\r\n + \ \"etag\": \"W/\\\"9e7b57fc-2dbc-4a31-b998-3f2e2e76cdb1\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n @@ -2982,16 +2940,16 @@ interactions: \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \ \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n }\r\n ]\r\n}" + false\r\n }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '2043' + - '2005' content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:29:39 GMT + - Wed, 07 Apr 2021 06:52:34 GMT expires: - '-1' pragma: @@ -3008,7 +2966,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3f3ad755-6a7a-41a2-b44b-761bb3a283d2 + - 8d4119ce-b855-4439-974c-2315ef849db4 status: code: 200 message: OK @@ -3033,8 +2991,8 @@ interactions: true, "upgradePolicy": {"mode": "manual"}, "virtualMachineProfile": {"storageProfile": {"osDisk": {"createOption": "FromImage", "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0"}}, - "networkProfile": {"networkInterfaceConfigurations": [{"name": "vmss14e5dNic", - "properties": {"primary": "true", "ipConfigurations": [{"name": "vmss14e5dIPConfig", + "networkProfile": {"networkInterfaceConfigurations": [{"name": "vmss138adNic", + "properties": {"primary": "true", "ipConfigurations": [{"name": "vmss138adIPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"}, "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}], "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}}, @@ -3059,17 +3017,17 @@ interactions: - -g -n --image --specialized --admin-username --admin-password --authentication-type User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_NXe9bkGSrVqWqu4srQWsiJDOCHmU49ka","name":"vmss_deploy_NXe9bkGSrVqWqu4srQWsiJDOCHmU49ka","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17698337296698734894","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-02-09T07:29:45.1494041Z","duration":"PT2.0695288S","correlationId":"8d92ba22-246b-4718-b364-4e5cd98eca71","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_Z32j6Brn4zhBkAi0U8bvwpvfcPzduCJY","name":"vmss_deploy_Z32j6Brn4zhBkAi0U8bvwpvfcPzduCJY","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15694384757085163444","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-07T06:52:39.5339321Z","duration":"PT1.9961447S","correlationId":"409ea1b8-fa57-4eab-a05e-05e134b213bf","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_NXe9bkGSrVqWqu4srQWsiJDOCHmU49ka/operationStatuses/08585887511023977518?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_Z32j6Brn4zhBkAi0U8bvwpvfcPzduCJY/operationStatuses/08585838285279398413?api-version=2020-10-01 cache-control: - no-cache content-length: @@ -3077,7 +3035,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:29:46 GMT + - Wed, 07 Apr 2021 06:52:41 GMT expires: - '-1' pragma: @@ -3087,7 +3045,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1165' + - '1198' status: code: 201 message: Created @@ -3106,9 +3064,9 @@ interactions: - -g -n --image --specialized --admin-username --admin-password --authentication-type User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585887511023977518?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585838285279398413?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -3120,7 +3078,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:30:18 GMT + - Wed, 07 Apr 2021 06:53:12 GMT expires: - '-1' pragma: @@ -3149,9 +3107,9 @@ interactions: - -g -n --image --specialized --admin-username --admin-password --authentication-type User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585887511023977518?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585838285279398413?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -3163,7 +3121,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:30:48 GMT + - Wed, 07 Apr 2021 06:53:43 GMT expires: - '-1' pragma: @@ -3192,12 +3150,12 @@ interactions: - -g -n --image --specialized --admin-username --admin-password --authentication-type User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_NXe9bkGSrVqWqu4srQWsiJDOCHmU49ka","name":"vmss_deploy_NXe9bkGSrVqWqu4srQWsiJDOCHmU49ka","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17698337296698734894","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-02-09T07:30:40.4622178Z","duration":"PT57.3823425S","correlationId":"8d92ba22-246b-4718-b364-4e5cd98eca71","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss14e5dNic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss14e5dIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"21543def-f659-41f3-9ce0-303ed51a151b"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_Z32j6Brn4zhBkAi0U8bvwpvfcPzduCJY","name":"vmss_deploy_Z32j6Brn4zhBkAi0U8bvwpvfcPzduCJY","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15694384757085163444","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-07T06:53:18.9376643Z","duration":"PT41.3998769S","correlationId":"409ea1b8-fa57-4eab-a05e-05e134b213bf","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss138adNic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss138adIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"ea06ddf3-98f4-4db9-ab7b-ad8ca7078733"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"}]}}' headers: cache-control: - no-cache @@ -3206,7 +3164,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:30:48 GMT + - Wed, 07 Apr 2021 06:53:44 GMT expires: - '-1' pragma: @@ -3235,14 +3193,14 @@ interactions: - -g -n --specialized User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-09T07:15:14Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3251,7 +3209,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:30:49 GMT + - Wed, 07 Apr 2021 06:53:44 GMT expires: - '-1' pragma: @@ -3280,14 +3238,14 @@ interactions: - -g -n --specialized User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-09T07:15:14Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3296,7 +3254,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 09 Feb 2021 07:30:50 GMT + - Wed, 07 Apr 2021 06:53:44 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_disk_max_shares_etc.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_disk_max_shares_etc.yaml index c00702df355..d8420fb4758 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_disk_max_shares_etc.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_disk_max_shares_etc.yaml @@ -14,14 +14,14 @@ interactions: - -g -n --size-gb --sku --disk-iops-read-only --disk-mbps-read-only User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-05T06:26:13Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:26:18 GMT + - Wed, 07 Apr 2021 06:38:29 GMT expires: - '-1' pragma: @@ -64,7 +64,7 @@ interactions: ParameterSetName: - -g -n --size-gb --sku --disk-iops-read-only --disk-mbps-read-only User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-09-30 response: @@ -78,7 +78,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/c5269252-227f-4538-90de-f7bdaa38c38e?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4233986a-b2d7-4176-803d-e95a00e5488c?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -86,11 +86,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:26:24 GMT + - Wed, 07 Apr 2021 06:38:33 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/c5269252-227f-4538-90de-f7bdaa38c38e?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4233986a-b2d7-4176-803d-e95a00e5488c?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -121,13 +121,13 @@ interactions: ParameterSetName: - -g -n --size-gb --sku --disk-iops-read-only --disk-mbps-read-only User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/c5269252-227f-4538-90de-f7bdaa38c38e?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4233986a-b2d7-4176-803d-e95a00e5488c?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-03-05T06:26:24.4234382+00:00\",\r\n \"endTime\": - \"2021-03-05T06:26:25.298417+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-07T06:38:33.4236793+00:00\",\r\n \"endTime\": + \"2021-04-07T06:38:34.3142903+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n @@ -137,20 +137,20 @@ interactions: 10,\r\n \"diskIOPSReadWrite\": 100,\r\n \"diskMBpsReadWrite\": 13,\r\n \ \"readOnly\": false,\r\n \"diskIOPSReadOnly\": 200,\r\n \"diskMBpsReadOnly\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-03-05T06:26:24.4234382+00:00\",\r\n + \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-07T06:38:33.4392671+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"b3008d43-b893-4f17-aa16-7aa6a869d3b0\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"026bbd94-be6c-4316-909a-e5dc90483b55\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"c5269252-227f-4538-90de-f7bdaa38c38e\"\r\n}" + \"4233986a-b2d7-4176-803d-e95a00e5488c\"\r\n}" headers: cache-control: - no-cache content-length: - - '1228' + - '1229' content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:26:26 GMT + - Wed, 07 Apr 2021 06:38:36 GMT expires: - '-1' pragma: @@ -185,7 +185,7 @@ interactions: ParameterSetName: - -g -n --size-gb --sku --disk-iops-read-only --disk-mbps-read-only User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-09-30 response: @@ -198,9 +198,9 @@ interactions: 10,\r\n \"diskIOPSReadWrite\": 100,\r\n \"diskMBpsReadWrite\": 13,\r\n \ \"readOnly\": false,\r\n \"diskIOPSReadOnly\": 200,\r\n \"diskMBpsReadOnly\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-03-05T06:26:24.4234382+00:00\",\r\n + \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-07T06:38:33.4392671+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"b3008d43-b893-4f17-aa16-7aa6a869d3b0\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"026bbd94-be6c-4316-909a-e5dc90483b55\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -210,7 +210,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:26:26 GMT + - Wed, 07 Apr 2021 06:38:36 GMT expires: - '-1' pragma: @@ -227,7 +227,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4998,Microsoft.Compute/LowCostGet30Min;39983 + - Microsoft.Compute/LowCostGet3Min;4999,Microsoft.Compute/LowCostGet30Min;39998 status: code: 200 message: OK @@ -245,7 +245,7 @@ interactions: ParameterSetName: - -g -n --disk-iops-read-only --disk-mbps-read-only User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-09-30 response: @@ -258,9 +258,9 @@ interactions: 10,\r\n \"diskIOPSReadWrite\": 100,\r\n \"diskMBpsReadWrite\": 13,\r\n \ \"readOnly\": false,\r\n \"diskIOPSReadOnly\": 200,\r\n \"diskMBpsReadOnly\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-03-05T06:26:24.4234382+00:00\",\r\n + \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-07T06:38:33.4392671+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"b3008d43-b893-4f17-aa16-7aa6a869d3b0\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"026bbd94-be6c-4316-909a-e5dc90483b55\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -270,7 +270,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:26:27 GMT + - Wed, 07 Apr 2021 06:38:36 GMT expires: - '-1' pragma: @@ -287,7 +287,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4997,Microsoft.Compute/LowCostGet30Min;39982 + - Microsoft.Compute/LowCostGet3Min;4998,Microsoft.Compute/LowCostGet30Min;39997 status: code: 200 message: OK @@ -296,7 +296,7 @@ interactions: {"creationData": {"createOption": "Empty", "logicalSectorSize": 4096}, "diskSizeGB": 10, "diskIOPSReadWrite": 100, "diskMBpsReadWrite": 13, "diskIOPSReadOnly": 250, "diskMBpsReadOnly": 40, "encryption": {"type": "EncryptionAtRestWithPlatformKey"}, - "maxShares": 1, "networkAccessPolicy": "AllowAll", "burstingEnabled": false}}' + "maxShares": 1, "networkAccessPolicy": "AllowAll"}}' headers: Accept: - application/json @@ -307,13 +307,13 @@ interactions: Connection: - keep-alive Content-Length: - - '407' + - '381' Content-Type: - application/json ParameterSetName: - -g -n --disk-iops-read-only --disk-mbps-read-only User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-09-30 response: @@ -329,7 +329,7 @@ interactions: \ \"faultDomain\": 0,\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/fc7648eb-3a6b-47ec-8ff9-7f9822e8db22?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f7021a03-e7d0-4901-ae71-328dc0b6a6ce?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -337,11 +337,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:26:29 GMT + - Wed, 07 Apr 2021 06:38:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/fc7648eb-3a6b-47ec-8ff9-7f9822e8db22?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f7021a03-e7d0-4901-ae71-328dc0b6a6ce?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -372,13 +372,13 @@ interactions: ParameterSetName: - -g -n --disk-iops-read-only --disk-mbps-read-only User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/fc7648eb-3a6b-47ec-8ff9-7f9822e8db22?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f7021a03-e7d0-4901-ae71-328dc0b6a6ce?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-03-05T06:26:29.8465289+00:00\",\r\n \"endTime\": - \"2021-03-05T06:26:30.0028342+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-07T06:38:39.1580501+00:00\",\r\n \"endTime\": + \"2021-04-07T06:38:39.3143038+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n @@ -388,11 +388,11 @@ interactions: 10,\r\n \"diskIOPSReadWrite\": 100,\r\n \"diskMBpsReadWrite\": 13,\r\n \ \"readOnly\": false,\r\n \"diskIOPSReadOnly\": 250,\r\n \"diskMBpsReadOnly\": 40,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-03-05T06:26:24.4234382+00:00\",\r\n + \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-07T06:38:33.4392671+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"b3008d43-b893-4f17-aa16-7aa6a869d3b0\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"026bbd94-be6c-4316-909a-e5dc90483b55\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"fc7648eb-3a6b-47ec-8ff9-7f9822e8db22\"\r\n}" + \"f7021a03-e7d0-4901-ae71-328dc0b6a6ce\"\r\n}" headers: cache-control: - no-cache @@ -401,7 +401,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:26:32 GMT + - Wed, 07 Apr 2021 06:38:41 GMT expires: - '-1' pragma: @@ -418,7 +418,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399997 + - Microsoft.Compute/GetOperation3Min;49998,Microsoft.Compute/GetOperation30Min;399998 status: code: 200 message: OK @@ -436,7 +436,7 @@ interactions: ParameterSetName: - -g -n --disk-iops-read-only --disk-mbps-read-only User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-09-30 response: @@ -449,9 +449,9 @@ interactions: 10,\r\n \"diskIOPSReadWrite\": 100,\r\n \"diskMBpsReadWrite\": 13,\r\n \ \"readOnly\": false,\r\n \"diskIOPSReadOnly\": 250,\r\n \"diskMBpsReadOnly\": 40,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-03-05T06:26:24.4234382+00:00\",\r\n + \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-07T06:38:33.4392671+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"b3008d43-b893-4f17-aa16-7aa6a869d3b0\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"026bbd94-be6c-4316-909a-e5dc90483b55\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -461,7 +461,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:26:32 GMT + - Wed, 07 Apr 2021 06:38:41 GMT expires: - '-1' pragma: @@ -478,7 +478,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4995,Microsoft.Compute/LowCostGet30Min;39980 + - Microsoft.Compute/LowCostGet3Min;4997,Microsoft.Compute/LowCostGet30Min;39996 status: code: 200 message: OK @@ -497,14 +497,14 @@ interactions: - -g -n --image-reference User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-05T06:26:13Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -513,7 +513,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:26:32 GMT + - Wed, 07 Apr 2021 06:38:41 GMT expires: - '-1' pragma: @@ -546,7 +546,7 @@ interactions: ParameterSetName: - -g -n --image-reference User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d2?api-version=2020-09-30 response: @@ -560,7 +560,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/e7efb101-9656-4d89-9cbe-f6cefa560603?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1c0d50e2-fa22-42e0-a01f-44687f97e9fe?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -568,11 +568,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:26:34 GMT + - Wed, 07 Apr 2021 06:38:46 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/e7efb101-9656-4d89-9cbe-f6cefa560603?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1c0d50e2-fa22-42e0-a01f-44687f97e9fe?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -585,7 +585,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7997 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' status: code: 202 message: Accepted @@ -603,13 +603,13 @@ interactions: ParameterSetName: - -g -n --image-reference User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/e7efb101-9656-4d89-9cbe-f6cefa560603?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1c0d50e2-fa22-42e0-a01f-44687f97e9fe?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-03-05T06:26:34.8309626+00:00\",\r\n \"endTime\": - \"2021-03-05T06:26:35.5497015+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-07T06:38:46.5018101+00:00\",\r\n \"endTime\": + \"2021-04-07T06:38:47.5330674+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d2\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n @@ -619,11 +619,11 @@ interactions: \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202002180\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-03-05T06:26:34.8622092+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-07T06:38:46.5174315+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"180b1e50-f1b6-4f02-b754-cb91d4de0513\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"cc168e4d-b50a-40fe-87cb-2d7dd45c9bff\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"e7efb101-9656-4d89-9cbe-f6cefa560603\"\r\n}" + \ },\r\n \"name\": \"1c0d50e2-fa22-42e0-a01f-44687f97e9fe\"\r\n}" headers: cache-control: - no-cache @@ -632,7 +632,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:26:36 GMT + - Wed, 07 Apr 2021 06:38:48 GMT expires: - '-1' pragma: @@ -667,7 +667,7 @@ interactions: ParameterSetName: - -g -n --image-reference User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d2?api-version=2020-09-30 response: @@ -680,9 +680,9 @@ interactions: \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202002180\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-03-05T06:26:34.8622092+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-07T06:38:46.5174315+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"180b1e50-f1b6-4f02-b754-cb91d4de0513\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"cc168e4d-b50a-40fe-87cb-2d7dd45c9bff\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}" headers: cache-control: @@ -692,7 +692,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:26:36 GMT + - Wed, 07 Apr 2021 06:38:48 GMT expires: - '-1' pragma: @@ -709,7 +709,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4992,Microsoft.Compute/LowCostGet30Min;39977 + - Microsoft.Compute/LowCostGet3Min;4993,Microsoft.Compute/LowCostGet30Min;39992 status: code: 200 message: OK @@ -728,14 +728,14 @@ interactions: - -g -n --image-reference User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-05T06:26:13Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -744,7 +744,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:26:38 GMT + - Wed, 07 Apr 2021 06:38:49 GMT expires: - '-1' pragma: @@ -772,7 +772,7 @@ interactions: ParameterSetName: - -g -n --image-reference User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202002180?api-version=2020-12-01 response: @@ -792,7 +792,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:26:39 GMT + - Wed, 07 Apr 2021 06:38:50 GMT expires: - '-1' pragma: @@ -832,7 +832,7 @@ interactions: ParameterSetName: - -g -n --image-reference User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d3?api-version=2020-09-30 response: @@ -846,7 +846,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/e9ec5892-0128-4ff6-933d-644a4669eb3b?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f6f2af61-f34c-4d21-abc5-38bba2d9b2b9?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -854,11 +854,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:26:45 GMT + - Wed, 07 Apr 2021 06:38:55 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/e9ec5892-0128-4ff6-933d-644a4669eb3b?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f6f2af61-f34c-4d21-abc5-38bba2d9b2b9?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -871,7 +871,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateDisks3Min;996,Microsoft.Compute/CreateUpdateDisks30Min;7996 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted @@ -889,13 +889,13 @@ interactions: ParameterSetName: - -g -n --image-reference User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/e9ec5892-0128-4ff6-933d-644a4669eb3b?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f6f2af61-f34c-4d21-abc5-38bba2d9b2b9?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-03-05T06:26:45.0497366+00:00\",\r\n \"endTime\": - \"2021-03-05T06:26:45.455981+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-07T06:38:56.6893153+00:00\",\r\n \"endTime\": + \"2021-04-07T06:38:57.3143077+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d3\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n @@ -905,20 +905,20 @@ interactions: \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202002180\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-03-05T06:26:45.0497366+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-07T06:38:56.6893153+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"1be0ee2b-f631-406c-ae80-4c95a3e3d2c4\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"aa0ff7c5-a8b8-4243-b311-2cdbf33c7b23\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"e9ec5892-0128-4ff6-933d-644a4669eb3b\"\r\n}" + \ },\r\n \"name\": \"f6f2af61-f34c-4d21-abc5-38bba2d9b2b9\"\r\n}" headers: cache-control: - no-cache content-length: - - '1423' + - '1424' content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:26:47 GMT + - Wed, 07 Apr 2021 06:38:59 GMT expires: - '-1' pragma: @@ -953,7 +953,7 @@ interactions: ParameterSetName: - -g -n --image-reference User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d3?api-version=2020-09-30 response: @@ -966,9 +966,9 @@ interactions: \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202002180\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-03-05T06:26:45.0497366+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-07T06:38:56.6893153+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"1be0ee2b-f631-406c-ae80-4c95a3e3d2c4\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"aa0ff7c5-a8b8-4243-b311-2cdbf33c7b23\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}" headers: cache-control: @@ -978,7 +978,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:26:47 GMT + - Wed, 07 Apr 2021 06:38:59 GMT expires: - '-1' pragma: @@ -995,7 +995,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4988,Microsoft.Compute/LowCostGet30Min;39973 + - Microsoft.Compute/LowCostGet3Min;4989,Microsoft.Compute/LowCostGet30Min;39988 status: code: 200 message: OK @@ -1014,14 +1014,14 @@ interactions: - -g --gallery-name User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-05T06:26:13Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1030,7 +1030,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:26:48 GMT + - Wed, 07 Apr 2021 06:39:00 GMT expires: - '-1' pragma: @@ -1062,7 +1062,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002?api-version=2019-12-01 response: @@ -1070,11 +1070,11 @@ interactions: string: "{\r\n \"name\": \"g1000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-G1OPEKOWBN5PHTJTJTCK\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-G17JBCBTR4ISJA56UDX7\"\r\n },\r\n \ \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/886fdc06-5120-4183-9307-345d605c53ac?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/6a66eb31-7389-48b5-b7c9-ffc7509191c6?api-version=2019-12-01 cache-control: - no-cache content-length: @@ -1082,7 +1082,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:26:54 GMT + - Wed, 07 Apr 2021 06:39:05 GMT expires: - '-1' pragma: @@ -1095,9 +1095,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299 + - Microsoft.Compute/CreateUpdateGallery3Min;47,Microsoft.Compute/CreateUpdateGallery30Min;297 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -1115,14 +1115,14 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/886fdc06-5120-4183-9307-345d605c53ac?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/6a66eb31-7389-48b5-b7c9-ffc7509191c6?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-03-05T06:26:53.9744519+00:00\",\r\n \"endTime\": - \"2021-03-05T06:26:54.9744491+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"886fdc06-5120-4183-9307-345d605c53ac\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:39:04.4069935+00:00\",\r\n \"endTime\": + \"2021-04-07T06:39:04.5007224+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"6a66eb31-7389-48b5-b7c9-ffc7509191c6\"\r\n}" headers: cache-control: - no-cache @@ -1131,7 +1131,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:27:24 GMT + - Wed, 07 Apr 2021 06:39:35 GMT expires: - '-1' pragma: @@ -1148,7 +1148,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4198 + - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4190 status: code: 200 message: OK @@ -1166,7 +1166,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002?api-version=2019-12-01 response: @@ -1174,7 +1174,7 @@ interactions: string: "{\r\n \"name\": \"g1000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-G1OPEKOWBN5PHTJTJTCK\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-G17JBCBTR4ISJA56UDX7\"\r\n },\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -1184,7 +1184,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:27:24 GMT + - Wed, 07 Apr 2021 06:39:35 GMT expires: - '-1' pragma: @@ -1201,7 +1201,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2496 + - Microsoft.Compute/GetGallery3Min;337,Microsoft.Compute/GetGallery30Min;2487 status: code: 200 message: OK @@ -1221,14 +1221,14 @@ interactions: --hyper-v-generation User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-05T06:26:13Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1237,7 +1237,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:27:26 GMT + - Wed, 07 Apr 2021 06:39:37 GMT expires: - '-1' pragma: @@ -1273,7 +1273,7 @@ interactions: - -g --gallery-name --gallery-image-definition --os-type -p -f -s --features --hyper-v-generation User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image?api-version=2020-09-30 response: @@ -1288,7 +1288,7 @@ interactions: \ },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/dd8ee8b1-a5d7-4b87-97cb-19e5aca9fad8?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/5f508d53-8b3f-4c34-b74b-831b2a00aa2d?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -1296,7 +1296,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:27:31 GMT + - Wed, 07 Apr 2021 06:39:43 GMT expires: - '-1' pragma: @@ -1309,7 +1309,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;749 + - Microsoft.Compute/CreateUpdateGalleryImage3Min;147,Microsoft.Compute/CreateUpdateGalleryImage30Min;747 x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -1330,14 +1330,14 @@ interactions: - -g --gallery-name --gallery-image-definition --os-type -p -f -s --features --hyper-v-generation User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/dd8ee8b1-a5d7-4b87-97cb-19e5aca9fad8?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/5f508d53-8b3f-4c34-b74b-831b2a00aa2d?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-03-05T06:27:30.3198339+00:00\",\r\n \"endTime\": - \"2021-03-05T06:27:30.4448322+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"dd8ee8b1-a5d7-4b87-97cb-19e5aca9fad8\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:39:42.4695261+00:00\",\r\n \"endTime\": + \"2021-04-07T06:39:42.5788751+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"5f508d53-8b3f-4c34-b74b-831b2a00aa2d\"\r\n}" headers: cache-control: - no-cache @@ -1346,7 +1346,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:28:01 GMT + - Wed, 07 Apr 2021 06:40:13 GMT expires: - '-1' pragma: @@ -1363,7 +1363,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4196 + - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;4185 status: code: 200 message: OK @@ -1382,7 +1382,7 @@ interactions: - -g --gallery-name --gallery-image-definition --os-type -p -f -s --features --hyper-v-generation User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image?api-version=2020-09-30 response: @@ -1403,7 +1403,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:28:01 GMT + - Wed, 07 Apr 2021 06:40:13 GMT expires: - '-1' pragma: @@ -1420,7 +1420,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;596,Microsoft.Compute/GetGalleryImage30Min;2996 + - Microsoft.Compute/GetGalleryImage3Min;585,Microsoft.Compute/GetGalleryImage30Min;2985 status: code: 200 message: OK @@ -1439,14 +1439,14 @@ interactions: - -g -n --size-gb User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-05T06:26:13Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1455,7 +1455,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:28:02 GMT + - Wed, 07 Apr 2021 06:40:14 GMT expires: - '-1' pragma: @@ -1488,7 +1488,7 @@ interactions: ParameterSetName: - -g -n --size-gb User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk?api-version=2020-09-30 response: @@ -1500,7 +1500,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/9a71e281-ec0f-4de0-80f4-96e140e00c0c?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/8c853c59-2676-4055-854a-56f4ea3e046d?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -1508,11 +1508,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:28:07 GMT + - Wed, 07 Apr 2021 06:40:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/9a71e281-ec0f-4de0-80f4-96e140e00c0c?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/8c853c59-2676-4055-854a-56f4ea3e046d?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -1525,7 +1525,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateDisks3Min;995,Microsoft.Compute/CreateUpdateDisks30Min;7995 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted @@ -1543,13 +1543,13 @@ interactions: ParameterSetName: - -g -n --size-gb User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/9a71e281-ec0f-4de0-80f4-96e140e00c0c?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/8c853c59-2676-4055-854a-56f4ea3e046d?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-03-05T06:28:08.2558838+00:00\",\r\n \"endTime\": - \"2021-03-05T06:28:08.3808952+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-07T06:40:19.7230121+00:00\",\r\n \"endTime\": + \"2021-04-07T06:40:19.8167952+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"disk\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n @@ -1558,10 +1558,10 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-03-05T06:28:08.2558838+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-07T06:40:19.7230121+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"c967e3bb-4844-4492-8172-4017f04d07d6\",\r\n \"networkAccessPolicy\": - \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"9a71e281-ec0f-4de0-80f4-96e140e00c0c\"\r\n}" + \ \"uniqueId\": \"91945790-d9a5-45bc-bd72-bafbfefc4aa0\",\r\n \"networkAccessPolicy\": + \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"8c853c59-2676-4055-854a-56f4ea3e046d\"\r\n}" headers: cache-control: - no-cache @@ -1570,7 +1570,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:28:09 GMT + - Wed, 07 Apr 2021 06:40:21 GMT expires: - '-1' pragma: @@ -1605,7 +1605,7 @@ interactions: ParameterSetName: - -g -n --size-gb User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk?api-version=2020-09-30 response: @@ -1617,9 +1617,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-03-05T06:28:08.2558838+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-07T06:40:19.7230121+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"c967e3bb-4844-4492-8172-4017f04d07d6\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"91945790-d9a5-45bc-bd72-bafbfefc4aa0\",\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: @@ -1629,7 +1629,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:28:10 GMT + - Wed, 07 Apr 2021 06:40:22 GMT expires: - '-1' pragma: @@ -1646,7 +1646,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4985,Microsoft.Compute/LowCostGet30Min;39969 + - Microsoft.Compute/LowCostGet3Min;4985,Microsoft.Compute/LowCostGet30Min;39984 status: code: 200 message: OK @@ -1664,7 +1664,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/disk?api-version=2020-05-01 response: @@ -1680,7 +1680,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:28:11 GMT + - Wed, 07 Apr 2021 06:40:23 GMT expires: - '-1' pragma: @@ -1708,7 +1708,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk?api-version=2020-09-30 response: @@ -1720,9 +1720,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-03-05T06:28:08.2558838+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-07T06:40:19.7230121+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"c967e3bb-4844-4492-8172-4017f04d07d6\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"91945790-d9a5-45bc-bd72-bafbfefc4aa0\",\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: @@ -1732,7 +1732,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:28:11 GMT + - Wed, 07 Apr 2021 06:40:23 GMT expires: - '-1' pragma: @@ -1749,7 +1749,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4984,Microsoft.Compute/LowCostGet30Min;39968 + - Microsoft.Compute/LowCostGet3Min;4984,Microsoft.Compute/LowCostGet30Min;39983 status: code: 200 message: OK @@ -1768,14 +1768,14 @@ interactions: - -g -n --source User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-05T06:26:13Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1784,7 +1784,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:28:12 GMT + - Wed, 07 Apr 2021 06:40:23 GMT expires: - '-1' pragma: @@ -1817,7 +1817,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 response: @@ -1825,12 +1825,12 @@ interactions: string: "{\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \ \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk\",\r\n - \ \"sourceUniqueId\": \"c967e3bb-4844-4492-8172-4017f04d07d6\"\r\n },\r\n + \ \"sourceUniqueId\": \"91945790-d9a5-45bc-bd72-bafbfefc4aa0\"\r\n },\r\n \ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/03db8f67-3540-4454-b014-f9d2f0ae3342?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/8025fe88-9553-45ff-bb12-82a00df1ca6b?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1838,11 +1838,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:28:17 GMT + - Wed, 07 Apr 2021 06:40:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/03db8f67-3540-4454-b014-f9d2f0ae3342?monitor=true&api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/8025fe88-9553-45ff-bb12-82a00df1ca6b?monitor=true&api-version=2020-05-01 pragma: - no-cache server: @@ -1855,7 +1855,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7999 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted @@ -1873,35 +1873,35 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/03db8f67-3540-4454-b014-f9d2f0ae3342?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/8025fe88-9553-45ff-bb12-82a00df1ca6b?api-version=2020-05-01 response: body: - string: "{\r\n \"startTime\": \"2021-03-05T06:28:17.6778939+00:00\",\r\n \"endTime\": - \"2021-03-05T06:28:18.3341919+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-07T06:40:30.051151+00:00\",\r\n \"endTime\": + \"2021-04-07T06:40:31.1452408+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1\",\r\n \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk\",\r\n - \ \"sourceUniqueId\": \"c967e3bb-4844-4492-8172-4017f04d07d6\"\r\n },\r\n + \ \"sourceUniqueId\": \"91945790-d9a5-45bc-bd72-bafbfefc4aa0\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-03-05T06:28:17.6778939+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-07T06:40:30.0667471+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"f6b5e9c2-10a1-4998-82bf-e5a657df7487\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"f5acec80-61db-4497-b07e-943d53115b19\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"03db8f67-3540-4454-b014-f9d2f0ae3342\"\r\n}" + \"8025fe88-9553-45ff-bb12-82a00df1ca6b\"\r\n}" headers: cache-control: - no-cache content-length: - - '1344' + - '1343' content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:28:19 GMT + - Wed, 07 Apr 2021 06:40:32 GMT expires: - '-1' pragma: @@ -1936,7 +1936,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 response: @@ -1946,11 +1946,11 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk\",\r\n - \ \"sourceUniqueId\": \"c967e3bb-4844-4492-8172-4017f04d07d6\"\r\n },\r\n + \ \"sourceUniqueId\": \"91945790-d9a5-45bc-bd72-bafbfefc4aa0\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-03-05T06:28:17.6778939+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-07T06:40:30.0667471+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"f6b5e9c2-10a1-4998-82bf-e5a657df7487\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"f5acec80-61db-4497-b07e-943d53115b19\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -1960,7 +1960,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:28:19 GMT + - Wed, 07 Apr 2021 06:40:32 GMT expires: - '-1' pragma: @@ -1977,7 +1977,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4981,Microsoft.Compute/LowCostGet30Min;39965 + - Microsoft.Compute/LowCostGet3Min;4981,Microsoft.Compute/LowCostGet30Min;39980 status: code: 200 message: OK @@ -1996,14 +1996,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-05T06:26:13Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2012,7 +2012,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:28:20 GMT + - Wed, 07 Apr 2021 06:40:33 GMT expires: - '-1' pragma: @@ -2046,7 +2046,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0?api-version=2019-12-01 response: @@ -2057,7 +2057,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-03-05T06:28:54.7611707+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-07T06:40:38.3913316+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"hostCaching\": \"ReadWrite\",\r\n \ \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2065,7 +2065,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/dddfd394-ffee-43aa-846f-1349ed581f7f?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/818758fd-1cc5-4cf2-87b2-ff11ed2e3e2e?api-version=2019-12-01 cache-control: - no-cache content-length: @@ -2073,7 +2073,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:28:55 GMT + - Wed, 07 Apr 2021 06:40:39 GMT expires: - '-1' pragma: @@ -2088,7 +2088,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1199 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' status: code: 201 message: Created @@ -2106,63 +2106,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/dddfd394-ffee-43aa-846f-1349ed581f7f?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2021-03-05T06:28:54.7455443+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"dddfd394-ffee-43aa-846f-1349ed581f7f\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 05 Mar 2021 06:29:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4194 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version create - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot - User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/dddfd394-ffee-43aa-846f-1349ed581f7f?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/818758fd-1cc5-4cf2-87b2-ff11ed2e3e2e?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-03-05T06:28:54.7455443+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"dddfd394-ffee-43aa-846f-1349ed581f7f\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:40:38.3913316+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"818758fd-1cc5-4cf2-87b2-ff11ed2e3e2e\"\r\n}" headers: cache-control: - no-cache @@ -2171,7 +2121,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:30:56 GMT + - Wed, 07 Apr 2021 06:41:39 GMT expires: - '-1' pragma: @@ -2188,7 +2138,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4193 + - Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;4181 status: code: 200 message: OK @@ -2206,13 +2156,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/dddfd394-ffee-43aa-846f-1349ed581f7f?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/818758fd-1cc5-4cf2-87b2-ff11ed2e3e2e?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-03-05T06:28:54.7455443+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"dddfd394-ffee-43aa-846f-1349ed581f7f\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:40:38.3913316+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"818758fd-1cc5-4cf2-87b2-ff11ed2e3e2e\"\r\n}" headers: cache-control: - no-cache @@ -2221,7 +2171,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:31:56 GMT + - Wed, 07 Apr 2021 06:42:40 GMT expires: - '-1' pragma: @@ -2238,7 +2188,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4191 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4177 status: code: 200 message: OK @@ -2256,13 +2206,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/dddfd394-ffee-43aa-846f-1349ed581f7f?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/818758fd-1cc5-4cf2-87b2-ff11ed2e3e2e?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-03-05T06:28:54.7455443+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"dddfd394-ffee-43aa-846f-1349ed581f7f\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:40:38.3913316+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"818758fd-1cc5-4cf2-87b2-ff11ed2e3e2e\"\r\n}" headers: cache-control: - no-cache @@ -2271,7 +2221,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:32:57 GMT + - Wed, 07 Apr 2021 06:43:40 GMT expires: - '-1' pragma: @@ -2288,7 +2238,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4189 + - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4173 status: code: 200 message: OK @@ -2306,13 +2256,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/dddfd394-ffee-43aa-846f-1349ed581f7f?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/818758fd-1cc5-4cf2-87b2-ff11ed2e3e2e?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-03-05T06:28:54.7455443+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"dddfd394-ffee-43aa-846f-1349ed581f7f\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:40:38.3913316+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"818758fd-1cc5-4cf2-87b2-ff11ed2e3e2e\"\r\n}" headers: cache-control: - no-cache @@ -2321,7 +2271,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:33:57 GMT + - Wed, 07 Apr 2021 06:44:41 GMT expires: - '-1' pragma: @@ -2338,7 +2288,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4187 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4169 status: code: 200 message: OK @@ -2356,13 +2306,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/dddfd394-ffee-43aa-846f-1349ed581f7f?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/818758fd-1cc5-4cf2-87b2-ff11ed2e3e2e?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-03-05T06:28:54.7455443+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"dddfd394-ffee-43aa-846f-1349ed581f7f\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:40:38.3913316+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"818758fd-1cc5-4cf2-87b2-ff11ed2e3e2e\"\r\n}" headers: cache-control: - no-cache @@ -2371,7 +2321,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:34:58 GMT + - Wed, 07 Apr 2021 06:45:43 GMT expires: - '-1' pragma: @@ -2388,7 +2338,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4185 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4165 status: code: 200 message: OK @@ -2406,13 +2356,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/dddfd394-ffee-43aa-846f-1349ed581f7f?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/818758fd-1cc5-4cf2-87b2-ff11ed2e3e2e?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-03-05T06:28:54.7455443+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"dddfd394-ffee-43aa-846f-1349ed581f7f\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:40:38.3913316+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"818758fd-1cc5-4cf2-87b2-ff11ed2e3e2e\"\r\n}" headers: cache-control: - no-cache @@ -2421,7 +2371,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:35:59 GMT + - Wed, 07 Apr 2021 06:46:43 GMT expires: - '-1' pragma: @@ -2438,7 +2388,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4183 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4161 status: code: 200 message: OK @@ -2456,14 +2406,14 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/dddfd394-ffee-43aa-846f-1349ed581f7f?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/818758fd-1cc5-4cf2-87b2-ff11ed2e3e2e?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-03-05T06:28:54.7455443+00:00\",\r\n \"endTime\": - \"2021-03-05T06:36:29.1566166+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"dddfd394-ffee-43aa-846f-1349ed581f7f\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-07T06:40:38.3913316+00:00\",\r\n \"endTime\": + \"2021-04-07T06:47:33.0960459+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"818758fd-1cc5-4cf2-87b2-ff11ed2e3e2e\"\r\n}" headers: cache-control: - no-cache @@ -2472,7 +2422,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:37:00 GMT + - Wed, 07 Apr 2021 06:47:44 GMT expires: - '-1' pragma: @@ -2489,7 +2439,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4181 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4157 status: code: 200 message: OK @@ -2507,7 +2457,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0?api-version=2019-12-01 response: @@ -2518,7 +2468,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-03-05T06:28:54.7611707+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-07T06:40:38.3913316+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 10,\r\n \"hostCaching\": \"ReadWrite\",\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2532,7 +2482,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:37:00 GMT + - Wed, 07 Apr 2021 06:47:44 GMT expires: - '-1' pragma: @@ -2549,7 +2499,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9997 + - Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9995 status: code: 200 message: OK @@ -2568,14 +2518,14 @@ interactions: - -g -n --gallery-image-reference User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-05T06:26:13Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2584,7 +2534,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:37:01 GMT + - Wed, 07 Apr 2021 06:47:45 GMT expires: - '-1' pragma: @@ -2618,7 +2568,7 @@ interactions: ParameterSetName: - -g -n --gallery-image-reference User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d4?api-version=2020-09-30 response: @@ -2632,7 +2582,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/82302d5c-e7e6-488d-9143-950dd3ea0506?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/58a24602-858f-487c-985f-a6c984c8832b?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -2640,11 +2590,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:37:07 GMT + - Wed, 07 Apr 2021 06:47:49 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/82302d5c-e7e6-488d-9143-950dd3ea0506?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/58a24602-858f-487c-985f-a6c984c8832b?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -2655,7 +2605,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7993 + - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7992 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -2675,13 +2625,13 @@ interactions: ParameterSetName: - -g -n --gallery-image-reference User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/82302d5c-e7e6-488d-9143-950dd3ea0506?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/58a24602-858f-487c-985f-a6c984c8832b?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-03-05T06:37:07.8110883+00:00\",\r\n \"endTime\": - \"2021-03-05T06:37:08.4048313+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-07T06:47:49.3500098+00:00\",\r\n \"endTime\": + \"2021-04-07T06:47:50.1158336+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d4\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n @@ -2692,11 +2642,11 @@ interactions: \ },\r\n \"galleryImageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-03-05T06:37:07.9048707+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-07T06:47:49.3812591+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"fe33ccf0-077d-4c49-96c8-fee749a33337\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"41e991ca-0ee5-47aa-ada1-0dcb9cd0ac26\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"82302d5c-e7e6-488d-9143-950dd3ea0506\"\r\n}" + \ },\r\n \"name\": \"58a24602-858f-487c-985f-a6c984c8832b\"\r\n}" headers: cache-control: - no-cache @@ -2705,7 +2655,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:37:09 GMT + - Wed, 07 Apr 2021 06:47:51 GMT expires: - '-1' pragma: @@ -2722,7 +2672,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399971 + - Microsoft.Compute/GetOperation3Min;49987,Microsoft.Compute/GetOperation30Min;399953 status: code: 200 message: OK @@ -2740,7 +2690,7 @@ interactions: ParameterSetName: - -g -n --gallery-image-reference User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d4?api-version=2020-09-30 response: @@ -2754,9 +2704,9 @@ interactions: \ },\r\n \"galleryImageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-03-05T06:37:07.9048707+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-07T06:47:49.3812591+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"fe33ccf0-077d-4c49-96c8-fee749a33337\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"41e991ca-0ee5-47aa-ada1-0dcb9cd0ac26\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: @@ -2766,7 +2716,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:37:09 GMT + - Wed, 07 Apr 2021 06:47:51 GMT expires: - '-1' pragma: @@ -2783,7 +2733,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4987,Microsoft.Compute/LowCostGet30Min;39959 + - Microsoft.Compute/LowCostGet3Min;4999,Microsoft.Compute/LowCostGet30Min;39972 status: code: 200 message: OK @@ -2807,7 +2757,7 @@ interactions: ParameterSetName: - -g -n --size-gb --max-shares -l User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6?api-version=2020-09-30 response: @@ -2820,7 +2770,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/9567ae05-ad66-4df5-9798-dc6cdafa2b27?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/8b87b130-8ef9-4641-90c2-7620c3c2fcad?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -2828,11 +2778,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:37:16 GMT + - Wed, 07 Apr 2021 06:47:55 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/9567ae05-ad66-4df5-9798-dc6cdafa2b27?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/8b87b130-8ef9-4641-90c2-7620c3c2fcad?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -2845,7 +2795,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted @@ -2863,13 +2813,13 @@ interactions: ParameterSetName: - -g -n --size-gb --max-shares -l User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/9567ae05-ad66-4df5-9798-dc6cdafa2b27?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/8b87b130-8ef9-4641-90c2-7620c3c2fcad?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-03-05T06:37:15.9641395+00:00\",\r\n \"endTime\": - \"2021-03-05T06:37:16.1491471+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-07T06:47:55.8230457+00:00\",\r\n \"endTime\": + \"2021-04-07T06:47:55.9980769+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"centraluseuap\",\r\n @@ -2878,11 +2828,11 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 256,\r\n \ \"diskIOPSReadWrite\": 1100,\r\n \"diskMBpsReadWrite\": 125,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"maxShares\": - 2,\r\n \"timeCreated\": \"2021-03-05T06:37:15.9691397+00:00\",\r\n \"provisioningState\": + 2,\r\n \"timeCreated\": \"2021-04-07T06:47:55.8281004+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 274877906944,\r\n \"uniqueId\": \"9594545e-8736-4062-a4dc-b708b156a4e2\",\r\n + 274877906944,\r\n \"uniqueId\": \"534c3025-e62b-47b8-a374-75c84a901e3b\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"9567ae05-ad66-4df5-9798-dc6cdafa2b27\"\r\n}" + \ },\r\n \"name\": \"8b87b130-8ef9-4641-90c2-7620c3c2fcad\"\r\n}" headers: cache-control: - no-cache @@ -2891,7 +2841,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:37:18 GMT + - Wed, 07 Apr 2021 06:47:57 GMT expires: - '-1' pragma: @@ -2926,7 +2876,7 @@ interactions: ParameterSetName: - -g -n --size-gb --max-shares -l User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6?api-version=2020-09-30 response: @@ -2938,9 +2888,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 256,\r\n \ \"diskIOPSReadWrite\": 1100,\r\n \"diskMBpsReadWrite\": 125,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"maxShares\": - 2,\r\n \"timeCreated\": \"2021-03-05T06:37:15.9691397+00:00\",\r\n \"provisioningState\": + 2,\r\n \"timeCreated\": \"2021-04-07T06:47:55.8281004+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 274877906944,\r\n \"uniqueId\": \"9594545e-8736-4062-a4dc-b708b156a4e2\",\r\n + 274877906944,\r\n \"uniqueId\": \"534c3025-e62b-47b8-a374-75c84a901e3b\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}" headers: cache-control: @@ -2950,7 +2900,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:37:18 GMT + - Wed, 07 Apr 2021 06:47:58 GMT expires: - '-1' pragma: @@ -2967,7 +2917,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14999,Microsoft.Compute/LowCostGet30Min;119998 + - Microsoft.Compute/LowCostGet3Min;14999,Microsoft.Compute/LowCostGet30Min;119999 status: code: 200 message: OK @@ -2985,7 +2935,7 @@ interactions: ParameterSetName: - -g -n --max-shares User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6?api-version=2020-09-30 response: @@ -2997,9 +2947,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 256,\r\n \ \"diskIOPSReadWrite\": 1100,\r\n \"diskMBpsReadWrite\": 125,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"maxShares\": - 2,\r\n \"timeCreated\": \"2021-03-05T06:37:15.9691397+00:00\",\r\n \"provisioningState\": + 2,\r\n \"timeCreated\": \"2021-04-07T06:47:55.8281004+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 274877906944,\r\n \"uniqueId\": \"9594545e-8736-4062-a4dc-b708b156a4e2\",\r\n + 274877906944,\r\n \"uniqueId\": \"534c3025-e62b-47b8-a374-75c84a901e3b\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}" headers: cache-control: @@ -3009,7 +2959,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:37:19 GMT + - Wed, 07 Apr 2021 06:47:59 GMT expires: - '-1' pragma: @@ -3026,7 +2976,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14998,Microsoft.Compute/LowCostGet30Min;119997 + - Microsoft.Compute/LowCostGet3Min;14998,Microsoft.Compute/LowCostGet30Min;119998 status: code: 200 message: OK @@ -3035,7 +2985,7 @@ interactions: "properties": {"creationData": {"createOption": "Empty"}, "diskSizeGB": 256, "diskIOPSReadWrite": 1100, "diskMBpsReadWrite": 125, "encryption": {"type": "EncryptionAtRestWithPlatformKey"}, "maxShares": 1, "networkAccessPolicy": "AllowAll", - "tier": "P15", "burstingEnabled": false}}' + "tier": "P15"}}' headers: Accept: - application/json @@ -3046,13 +2996,13 @@ interactions: Connection: - keep-alive Content-Length: - - '355' + - '329' Content-Type: - application/json ParameterSetName: - -g -n --max-shares User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6?api-version=2020-09-30 response: @@ -3066,7 +3016,7 @@ interactions: \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/58674fc1-42bc-410b-b138-ebd825312bec?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/b49fad27-fce0-401f-9d6e-4a25778d282a?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -3074,11 +3024,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:37:21 GMT + - Wed, 07 Apr 2021 06:48:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/58674fc1-42bc-410b-b138-ebd825312bec?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/b49fad27-fce0-401f-9d6e-4a25778d282a?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -3091,7 +3041,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7998 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted @@ -3109,13 +3059,13 @@ interactions: ParameterSetName: - -g -n --max-shares User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/58674fc1-42bc-410b-b138-ebd825312bec?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/b49fad27-fce0-401f-9d6e-4a25778d282a?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-03-05T06:37:21.9009764+00:00\",\r\n \"endTime\": - \"2021-03-05T06:37:22.0810543+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-07T06:48:02.1981093+00:00\",\r\n \"endTime\": + \"2021-04-07T06:48:02.373157+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"centraluseuap\",\r\n @@ -3124,20 +3074,20 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 256,\r\n \ \"diskIOPSReadWrite\": 1100,\r\n \"diskMBpsReadWrite\": 125,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"maxShares\": - 1,\r\n \"timeCreated\": \"2021-03-05T06:37:15.9691397+00:00\",\r\n \"provisioningState\": + 1,\r\n \"timeCreated\": \"2021-04-07T06:47:55.8281004+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 274877906944,\r\n \"uniqueId\": \"9594545e-8736-4062-a4dc-b708b156a4e2\",\r\n + 274877906944,\r\n \"uniqueId\": \"534c3025-e62b-47b8-a374-75c84a901e3b\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"58674fc1-42bc-410b-b138-ebd825312bec\"\r\n}" + \ },\r\n \"name\": \"b49fad27-fce0-401f-9d6e-4a25778d282a\"\r\n}" headers: cache-control: - no-cache content-length: - - '1144' + - '1143' content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:37:23 GMT + - Wed, 07 Apr 2021 06:48:04 GMT expires: - '-1' pragma: @@ -3172,7 +3122,7 @@ interactions: ParameterSetName: - -g -n --max-shares User-Agent: - - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6?api-version=2020-09-30 response: @@ -3184,9 +3134,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 256,\r\n \ \"diskIOPSReadWrite\": 1100,\r\n \"diskMBpsReadWrite\": 125,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"maxShares\": - 1,\r\n \"timeCreated\": \"2021-03-05T06:37:15.9691397+00:00\",\r\n \"provisioningState\": + 1,\r\n \"timeCreated\": \"2021-04-07T06:47:55.8281004+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 274877906944,\r\n \"uniqueId\": \"9594545e-8736-4062-a4dc-b708b156a4e2\",\r\n + 274877906944,\r\n \"uniqueId\": \"534c3025-e62b-47b8-a374-75c84a901e3b\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}" headers: cache-control: @@ -3196,7 +3146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 05 Mar 2021 06:37:24 GMT + - Wed, 07 Apr 2021 06:48:05 GMT expires: - '-1' pragma: @@ -3213,7 +3163,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14996,Microsoft.Compute/LowCostGet30Min;119995 + - Microsoft.Compute/LowCostGet3Min;14996,Microsoft.Compute/LowCostGet30Min;119996 status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py index 0881ab41c87..07621cda2b3 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py @@ -3791,7 +3791,7 @@ def test_gallery_image_version_vhd(self, resource_group): }) self.cmd('sig create -g {rg} --gallery-name {gallery}') self.cmd('sig image-definition create -g {rg} --gallery-name {gallery} --gallery-image-definition image1 --os-type linux -p publisher1 -f offer1 -s sku1') - self.cmd('sig image-version create -g {rg} --gallery-name {gallery} --gallery-image-definition image1 --gallery-image-version 1.0.0 --vhd {vhd} --vhd-storage-account {stac} --replica-count 1', checks=[ + self.cmd('sig image-version create -g {rg} --gallery-name {gallery} --gallery-image-definition image1 --gallery-image-version 1.0.0 --os-vhd {vhd} --os-vhd-storage-account {stac} --replica-count 1', checks=[ self.check('storageProfile.osDiskImage.source.uri', vhd_uri) ]) From 6336e15de66b26f29a4a6b2e9666d587d3e0c2eb Mon Sep 17 00:00:00 2001 From: Feiyue Yu Date: Fri, 9 Apr 2021 11:47:55 +0800 Subject: [PATCH 11/18] test --- .../azure/cli/core/profiles/_shared.py | 2 +- .../test_gallery_image_version_vhd.yaml | 791 +++++++++++++++--- 2 files changed, 688 insertions(+), 105 deletions(-) diff --git a/src/azure-cli-core/azure/cli/core/profiles/_shared.py b/src/azure-cli-core/azure/cli/core/profiles/_shared.py index 5f1feae16e9..f4e550edf21 100644 --- a/src/azure-cli-core/azure/cli/core/profiles/_shared.py +++ b/src/azure-cli-core/azure/cli/core/profiles/_shared.py @@ -145,7 +145,7 @@ def default_api_version(self): 'snapshots': '2020-05-01', 'galleries': '2019-12-01', 'gallery_images': '2020-09-30', - 'gallery_image_versions': '2019-12-01', + 'gallery_image_versions': '2020-09-30', 'virtual_machine_scale_sets': '2020-12-01' }), ResourceType.MGMT_RESOURCE_FEATURES: '2015-12-01', diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_image_version_vhd.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_image_version_vhd.yaml index 076622e7073..6f58cfa398f 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_image_version_vhd.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_image_version_vhd.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001","name":"cli_test_gallery_image_version_vhd000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:51:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001","name":"cli_test_gallery_image_version_vhd000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:32:38Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:51:57 GMT + - Fri, 09 Apr 2021 03:32:42 GMT expires: - '-1' pragma: @@ -109,13 +109,13 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Wed, 07 Apr 2021 06:51:58 GMT + - Fri, 09 Apr 2021 03:32:43 GMT etag: - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" expires: - - Wed, 07 Apr 2021 06:56:58 GMT + - Fri, 09 Apr 2021 03:37:43 GMT source-age: - - '84' + - '24' strict-transport-security: - max-age=31536000 vary: @@ -129,15 +129,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 1a49620424ae943570c2801ce166e91ada36b574 + - 1c26184c5d84d4b93dcba7ed7b863a7b456a7229 x-frame-options: - deny x-github-request-id: - - F382:5F6B:C6E59:EBF3D:606D47A2 + - C62E:4586:4AE6C2:58C97E:606FB659 x-served-by: - - cache-qpg1255-QPG + - cache-qpg1282-QPG x-timer: - - S1617778318.167205,VS0,VE0 + - S1617939164.573393,VS0,VE0 x-xss-protection: - 1; mode=block status: @@ -171,7 +171,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:51:58 GMT + - Fri, 09 Apr 2021 03:32:43 GMT expires: - '-1' pragma: @@ -213,7 +213,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:51:58 GMT + - Fri, 09 Apr 2021 03:32:44 GMT expires: - '-1' pragma: @@ -230,7 +230,7 @@ interactions: - request: body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": {}, "variables": {}, "resources": - [{"type": "Microsoft.Storage/storageAccounts", "name": "vhdstorage2a243d38c829b4", + [{"type": "Microsoft.Storage/storageAccounts", "name": "vhdstorage1a626868697e4c", "apiVersion": "2015-06-15", "location": "westus", "tags": {}, "dependsOn": [], "properties": {"accountType": "Premium_LRS"}}, {"name": "vm1VNET", "type": "Microsoft.Network/virtualNetworks", "location": "westus", "apiVersion": "2015-06-15", "dependsOn": [], "tags": {}, @@ -248,12 +248,12 @@ interactions: "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"}}}], "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"}}}, {"apiVersion": "2020-12-01", "type": "Microsoft.Compute/virtualMachines", "name": - "vm1", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Storage/storageAccounts/vhdstorage2a243d38c829b4", + "vm1", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Storage/storageAccounts/vhdstorage1a626868697e4c", "Microsoft.Network/networkInterfaces/vm1VMNic"], "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"}]}, - "storageProfile": {"osDisk": {"createOption": "fromImage", "name": "osdisk_2a243d38c8", - "caching": "ReadWrite", "vhd": {"uri": "https://vhdstorage2a243d38c829b4.blob.core.windows.net/vhds/osdisk_2a243d38c8.vhd"}}, + "storageProfile": {"osDisk": {"createOption": "fromImage", "name": "osdisk_1a62686869", + "caching": "ReadWrite", "vhd": {"uri": "https://vhdstorage1a626868697e4c.blob.core.windows.net/vhds/osdisk_1a62686869.vhd"}}, "imageReference": {"publisher": "OpenLogic", "offer": "CentOS", "sku": "7.5", "version": "latest"}}, "osProfile": {"computerName": "vm1", "adminUsername": "fey", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": @@ -284,18 +284,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/vm_deploy_GIbZF2ckUQhy8wxkQazJPm1wqEySHNxO","name":"vm_deploy_GIbZF2ckUQhy8wxkQazJPm1wqEySHNxO","type":"Microsoft.Resources/deployments","properties":{"templateHash":"11695746293253421809","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-07T06:52:02.8500619Z","duration":"PT2.3194384S","correlationId":"abe5deee-2f15-4722-a21a-0c52c00823b3","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Storage/storageAccounts/vhdstorage2a243d38c829b4","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstorage2a243d38c829b4"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/vm_deploy_U7gWui2V4NaBhgRthSL2wToZkmDbYJxD","name":"vm_deploy_U7gWui2V4NaBhgRthSL2wToZkmDbYJxD","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8744553287868360303","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-09T03:32:48.2358949Z","duration":"PT2.1773726S","correlationId":"c17a7c27-81c9-435c-ba0b-9c6492fb3986","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Storage/storageAccounts/vhdstorage1a626868697e4c","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstorage1a626868697e4c"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/vm_deploy_GIbZF2ckUQhy8wxkQazJPm1wqEySHNxO/operationStatuses/08585838285649470271?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/vm_deploy_U7gWui2V4NaBhgRthSL2wToZkmDbYJxD/operationStatuses/08585836677194191191?api-version=2020-10-01 cache-control: - no-cache content-length: - - '3167' + - '3166' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:52:03 GMT + - Fri, 09 Apr 2021 03:32:48 GMT expires: - '-1' pragma: @@ -326,7 +326,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585838285649470271?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836677194191191?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -338,7 +338,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:52:34 GMT + - Fri, 09 Apr 2021 03:33:19 GMT expires: - '-1' pragma: @@ -369,7 +369,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585838285649470271?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836677194191191?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -381,7 +381,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:53:04 GMT + - Fri, 09 Apr 2021 03:33:50 GMT expires: - '-1' pragma: @@ -412,7 +412,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585838285649470271?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836677194191191?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -424,7 +424,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:53:35 GMT + - Fri, 09 Apr 2021 03:34:21 GMT expires: - '-1' pragma: @@ -455,7 +455,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585838285649470271?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836677194191191?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -467,7 +467,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:54:05 GMT + - Fri, 09 Apr 2021 03:34:51 GMT expires: - '-1' pragma: @@ -501,7 +501,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/vm_deploy_GIbZF2ckUQhy8wxkQazJPm1wqEySHNxO","name":"vm_deploy_GIbZF2ckUQhy8wxkQazJPm1wqEySHNxO","type":"Microsoft.Resources/deployments","properties":{"templateHash":"11695746293253421809","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-07T06:53:45.668868Z","duration":"PT1M45.1382445S","correlationId":"abe5deee-2f15-4722-a21a-0c52c00823b3","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Storage/storageAccounts/vhdstorage2a243d38c829b4","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstorage2a243d38c829b4"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Storage/storageAccounts/vhdstorage2a243d38c829b4"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/vm_deploy_U7gWui2V4NaBhgRthSL2wToZkmDbYJxD","name":"vm_deploy_U7gWui2V4NaBhgRthSL2wToZkmDbYJxD","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8744553287868360303","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-09T03:34:27.4553531Z","duration":"PT1M41.3968308S","correlationId":"c17a7c27-81c9-435c-ba0b-9c6492fb3986","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Storage/storageAccounts/vhdstorage1a626868697e4c","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstorage1a626868697e4c"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Storage/storageAccounts/vhdstorage1a626868697e4c"}]}}' headers: cache-control: - no-cache @@ -510,7 +510,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:54:06 GMT + - Fri, 09 Apr 2021 03:34:51 GMT expires: - '-1' pragma: @@ -545,14 +545,14 @@ interactions: body: string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"b3eab87f-b45e-46f8-8947-1304f1cd04f4\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"95c07b69-8300-4fc0-b675-d73a492a0fe4\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"OpenLogic\",\r\n \"offer\": \"CentOS\",\r\n \"sku\": \"7.5\",\r\n \ \"version\": \"latest\",\r\n \"exactVersion\": \"7.5.201808150\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"osdisk_2a243d38c8\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": - {\r\n \"uri\": \"https://vhdstorage2a243d38c829b4.blob.core.windows.net/vhds/osdisk_2a243d38c8.vhd\"\r\n + \"osdisk_1a62686869\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": + {\r\n \"uri\": \"https://vhdstorage1a626868697e4c.blob.core.windows.net/vhds/osdisk_1a62686869.vhd\"\r\n \ },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"fey\",\r\n @@ -571,15 +571,15 @@ interactions: [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \ \"message\": \"Guest Agent is running\",\r\n \"time\": - \"2021-04-07T06:54:03+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osdisk_2a243d38c8\",\r\n + \"2021-04-09T03:34:48+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osdisk_1a62686869\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-07T06:52:35.2526522+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-09T03:33:23.4167434+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-07T06:53:44.3807519+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-09T03:34:25.9977213+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n \ }\r\n ]\r\n }\r\n }\r\n}" @@ -591,7 +591,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:54:07 GMT + - Fri, 09 Apr 2021 03:34:53 GMT expires: - '-1' pragma: @@ -608,7 +608,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31936 + - Microsoft.Compute/LowCostGet3Min;3968,Microsoft.Compute/LowCostGet30Min;31606 status: code: 200 message: OK @@ -632,12 +632,12 @@ interactions: response: body: string: "{\r\n \"name\": \"vm1VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\r\n - \ \"etag\": \"W/\\\"184ff364-db10-42fb-b53c-86e4eec887aa\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"11477d04-5dab-4a8e-a37b-b23f25da92d2\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"381a84e5-42d8-4264-82df-cf4c4b98ac35\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"5479f59b-839c-4ff7-be9e-4db8434ce67d\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm1\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\r\n - \ \"etag\": \"W/\\\"184ff364-db10-42fb-b53c-86e4eec887aa\\\"\",\r\n + \ \"etag\": \"W/\\\"11477d04-5dab-4a8e-a37b-b23f25da92d2\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -646,8 +646,8 @@ interactions: \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": - \"3n4dhbnmorpexm0qz2syuxa2va.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-22-48-08-AE-98\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"ygsgdt4h3p5uxav342wlmfodag.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-59-5F-DD\",\r\n \"enableAcceleratedNetworking\": false,\r\n \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -661,9 +661,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:54:08 GMT + - Fri, 09 Apr 2021 03:34:53 GMT etag: - - W/"184ff364-db10-42fb-b53c-86e4eec887aa" + - W/"11477d04-5dab-4a8e-a37b-b23f25da92d2" expires: - '-1' pragma: @@ -680,7 +680,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 91e7a542-2dd2-41e7-9a07-cd9773d11881 + - e88b37ff-bc7f-4a37-b16e-b1890b383081 status: code: 200 message: OK @@ -704,11 +704,11 @@ interactions: response: body: string: "{\r\n \"name\": \"vm1PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\r\n - \ \"etag\": \"W/\\\"cead7d18-2fc9-4538-8a87-e11009e6eddb\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"6b1eb47d-548c-4da5-b77e-39b7c07d820f\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"40647f25-6da9-4f6a-a06c-3b8603429476\",\r\n - \ \"ipAddress\": \"138.91.164.153\",\r\n \"publicIPAddressVersion\": - \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + \"Succeeded\",\r\n \"resourceGuid\": \"41d9c647-161e-4d9e-bda6-aa65db775602\",\r\n + \ \"ipAddress\": \"13.93.176.85\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" @@ -716,13 +716,13 @@ interactions: cache-control: - no-cache content-length: - - '998' + - '996' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:54:08 GMT + - Fri, 09 Apr 2021 03:34:53 GMT etag: - - W/"cead7d18-2fc9-4538-8a87-e11009e6eddb" + - W/"6b1eb47d-548c-4da5-b77e-39b7c07d820f" expires: - '-1' pragma: @@ -739,7 +739,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ed37aadc-64f6-4e4f-a82c-1a43189f8199 + - a518a27b-90de-4343-991a-976ab7eedcc2 status: code: 200 message: OK @@ -764,14 +764,14 @@ interactions: body: string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"b3eab87f-b45e-46f8-8947-1304f1cd04f4\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"95c07b69-8300-4fc0-b675-d73a492a0fe4\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"OpenLogic\",\r\n \"offer\": \"CentOS\",\r\n \"sku\": \"7.5\",\r\n \ \"version\": \"latest\",\r\n \"exactVersion\": \"7.5.201808150\"\r\n \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": - \"osdisk_2a243d38c8\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": - {\r\n \"uri\": \"https://vhdstorage2a243d38c829b4.blob.core.windows.net/vhds/osdisk_2a243d38c8.vhd\"\r\n + \"osdisk_1a62686869\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": + {\r\n \"uri\": \"https://vhdstorage1a626868697e4c.blob.core.windows.net/vhds/osdisk_1a62686869.vhd\"\r\n \ },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"fey\",\r\n @@ -793,7 +793,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:54:09 GMT + - Fri, 09 Apr 2021 03:34:54 GMT expires: - '-1' pragma: @@ -810,7 +810,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31935 + - Microsoft.Compute/LowCostGet3Min;3967,Microsoft.Compute/LowCostGet30Min;31605 status: code: 200 message: OK @@ -836,7 +836,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001","name":"cli_test_gallery_image_version_vhd000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:51:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001","name":"cli_test_gallery_image_version_vhd000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:32:38Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -845,7 +845,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:54:09 GMT + - Fri, 09 Apr 2021 03:34:55 GMT expires: - '-1' pragma: @@ -885,11 +885,11 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_A3WDKGOIXGUV\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_AQCU7QAV5BVB\"\r\n },\r\n \ \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/6c8a1d50-dcd2-46bc-b20e-4ce8d9254b43?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/07a6d42c-7c99-4f8c-b194-7998dc1c9116?api-version=2019-12-01 cache-control: - no-cache content-length: @@ -897,7 +897,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:54:14 GMT + - Fri, 09 Apr 2021 03:35:02 GMT expires: - '-1' pragma: @@ -910,9 +910,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;295 + - Microsoft.Compute/CreateUpdateGallery3Min;48,Microsoft.Compute/CreateUpdateGallery30Min;297 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -932,12 +932,12 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/6c8a1d50-dcd2-46bc-b20e-4ce8d9254b43?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/07a6d42c-7c99-4f8c-b194-7998dc1c9116?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:54:13.9559329+00:00\",\r\n \"endTime\": - \"2021-04-07T06:54:14.1903374+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"6c8a1d50-dcd2-46bc-b20e-4ce8d9254b43\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T03:35:02.0714854+00:00\",\r\n \"endTime\": + \"2021-04-09T03:35:02.1808508+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"07a6d42c-7c99-4f8c-b194-7998dc1c9116\"\r\n}" headers: cache-control: - no-cache @@ -946,7 +946,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:54:44 GMT + - Fri, 09 Apr 2021 03:35:33 GMT expires: - '-1' pragma: @@ -963,7 +963,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4129 + - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4186 status: code: 200 message: OK @@ -989,7 +989,7 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_A3WDKGOIXGUV\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_AQCU7QAV5BVB\"\r\n },\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -999,7 +999,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:54:45 GMT + - Fri, 09 Apr 2021 03:35:33 GMT expires: - '-1' pragma: @@ -1016,7 +1016,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGallery3Min;344,Microsoft.Compute/GetGallery30Min;2458 + - Microsoft.Compute/GetGallery3Min;335,Microsoft.Compute/GetGallery30Min;2474 status: code: 200 message: OK @@ -1042,7 +1042,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001","name":"cli_test_gallery_image_version_vhd000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:51:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001","name":"cli_test_gallery_image_version_vhd000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:32:38Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1051,7 +1051,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:54:46 GMT + - Fri, 09 Apr 2021 03:35:33 GMT expires: - '-1' pragma: @@ -1099,7 +1099,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/ef42ca42-175b-4a3e-a334-af56da4a8988?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/ffb5c40a-d8f6-4d21-86c5-bcd21622b979?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -1107,7 +1107,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:54:53 GMT + - Fri, 09 Apr 2021 03:35:40 GMT expires: - '-1' pragma: @@ -1120,7 +1120,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;745 + - Microsoft.Compute/CreateUpdateGalleryImage3Min;148,Microsoft.Compute/CreateUpdateGalleryImage30Min;747 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1142,21 +1142,21 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/ef42ca42-175b-4a3e-a334-af56da4a8988?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/ffb5c40a-d8f6-4d21-86c5-bcd21622b979?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:54:52.518392+00:00\",\r\n \"endTime\": - \"2021-04-07T06:54:52.6277389+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"ef42ca42-175b-4a3e-a334-af56da4a8988\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T03:35:40.7127051+00:00\",\r\n \"endTime\": + \"2021-04-09T03:35:40.8220775+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"ffb5c40a-d8f6-4d21-86c5-bcd21622b979\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:55:23 GMT + - Fri, 09 Apr 2021 03:36:11 GMT expires: - '-1' pragma: @@ -1173,7 +1173,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4124 + - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4182 status: code: 200 message: OK @@ -1211,7 +1211,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:55:24 GMT + - Fri, 09 Apr 2021 03:36:12 GMT expires: - '-1' pragma: @@ -1228,7 +1228,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;595,Microsoft.Compute/GetGalleryImage30Min;2953 + - Microsoft.Compute/GetGalleryImage3Min;586,Microsoft.Compute/GetGalleryImage30Min;2975 status: code: 200 message: OK @@ -1255,7 +1255,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001","name":"cli_test_gallery_image_version_vhd000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:51:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001","name":"cli_test_gallery_image_version_vhd000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:32:38Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1264,7 +1264,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:55:25 GMT + - Fri, 09 Apr 2021 03:36:12 GMT expires: - '-1' pragma: @@ -1281,7 +1281,8 @@ interactions: - request: body: '{"location": "westus", "tags": {}, "properties": {"publishingProfile": {"targetRegions": [{"name": "westus"}], "replicaCount": 1}, "storageProfile": - {}}}' + {"osDiskImage": {"source": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Storage/storageAccounts/vhdstorage1a626868697e4c", + "uri": "https://vhdstorage1a626868697e4c.blob.core.windows.net/vhds/osdisk_1a62686869.vhd"}}}}}' headers: Accept: - application/json @@ -1292,7 +1293,7 @@ interactions: Connection: - keep-alive Content-Length: - - '153' + - '493' Content-Type: - application/json ParameterSetName: @@ -1301,24 +1302,33 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2020-09-30 response: body: - string: "{\r\n \"error\": {\r\n \"code\": \"InvalidParameter\",\r\n \"message\": - \"The gallery artifact version source can only be specified either directly - under storageProfile or within individual OS or data disks. One and only one - source type (user image, snapshot, disk, virtual machine) can be provided.\",\r\n - \ \"target\": \"galleryImageVersion.properties.storageProfile.source.id\"\r\n + string: "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0\",\r\n + \ \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": + \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"publishingProfile\": + {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West + US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": + \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-09T03:36:17.0098546+00:00\",\r\n + \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": + {\r\n \"osDiskImage\": {\r\n \"hostCaching\": \"ReadWrite\",\r\n + \ \"source\": {\r\n \"uri\": \"https://vhdstorage1a626868697e4c.blob.core.windows.net/vhds/osdisk_1a62686869.vhd\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Storage/storageAccounts/vhdstorage1a626868697e4c\"\r\n + \ }\r\n }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n \ }\r\n}" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8cbab3e0-ff64-40a1-84c7-25827dd157f7?api-version=2020-09-30 cache-control: - no-cache content-length: - - '374' + - '1271' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:55:33 GMT + - Fri, 09 Apr 2021 03:36:17 GMT expires: - '-1' pragma: @@ -1331,10 +1341,583 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1196 + - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;373,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1197 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: - code: 400 - message: Bad Request + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --os-vhd + --os-vhd-storage-account --replica-count + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8cbab3e0-ff64-40a1-84c7-25827dd157f7?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-04-09T03:36:16.9942143+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"8cbab3e0-ff64-40a1-84c7-25827dd157f7\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:37:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4178 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --os-vhd + --os-vhd-storage-account --replica-count + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8cbab3e0-ff64-40a1-84c7-25827dd157f7?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-04-09T03:36:16.9942143+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"8cbab3e0-ff64-40a1-84c7-25827dd157f7\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:38:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4175 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --os-vhd + --os-vhd-storage-account --replica-count + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8cbab3e0-ff64-40a1-84c7-25827dd157f7?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-04-09T03:36:16.9942143+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"8cbab3e0-ff64-40a1-84c7-25827dd157f7\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:39:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4171 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --os-vhd + --os-vhd-storage-account --replica-count + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8cbab3e0-ff64-40a1-84c7-25827dd157f7?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-04-09T03:36:16.9942143+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"8cbab3e0-ff64-40a1-84c7-25827dd157f7\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:40:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4171 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --os-vhd + --os-vhd-storage-account --replica-count + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8cbab3e0-ff64-40a1-84c7-25827dd157f7?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-04-09T03:36:16.9942143+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"8cbab3e0-ff64-40a1-84c7-25827dd157f7\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:41:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;4165 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --os-vhd + --os-vhd-storage-account --replica-count + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8cbab3e0-ff64-40a1-84c7-25827dd157f7?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-04-09T03:36:16.9942143+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"8cbab3e0-ff64-40a1-84c7-25827dd157f7\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:42:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;4159 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --os-vhd + --os-vhd-storage-account --replica-count + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8cbab3e0-ff64-40a1-84c7-25827dd157f7?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-04-09T03:36:16.9942143+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"8cbab3e0-ff64-40a1-84c7-25827dd157f7\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:43:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4153 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --os-vhd + --os-vhd-storage-account --replica-count + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8cbab3e0-ff64-40a1-84c7-25827dd157f7?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-04-09T03:36:16.9942143+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"8cbab3e0-ff64-40a1-84c7-25827dd157f7\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:44:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4147 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --os-vhd + --os-vhd-storage-account --replica-count + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8cbab3e0-ff64-40a1-84c7-25827dd157f7?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-04-09T03:36:16.9942143+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"8cbab3e0-ff64-40a1-84c7-25827dd157f7\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:45:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4141 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --os-vhd + --os-vhd-storage-account --replica-count + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8cbab3e0-ff64-40a1-84c7-25827dd157f7?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-04-09T03:36:16.9942143+00:00\",\r\n \"endTime\": + \"2021-04-09T03:45:32.8711971+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"8cbab3e0-ff64-40a1-84c7-25827dd157f7\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '184' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:46:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;4137 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --os-vhd + --os-vhd-storage-account --replica-count + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2020-09-30 + response: + body: + string: "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0\",\r\n + \ \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": + \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"publishingProfile\": + {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West + US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": + \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-09T03:36:17.0098546+00:00\",\r\n + \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": + {\r\n \"osDiskImage\": {\r\n \"hostCaching\": \"ReadWrite\",\r\n + \ \"source\": {\r\n \"uri\": \"https://vhdstorage1a626868697e4c.blob.core.windows.net/vhds/osdisk_1a62686869.vhd\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Storage/storageAccounts/vhdstorage1a626868697e4c\"\r\n + \ }\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n + \ }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1272' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:46:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetGalleryImageVersion3Min;1994,Microsoft.Compute/GetGalleryImageVersion30Min;9985 + status: + code: 200 + message: OK version: 1 From 3dc65772d011c9d740ed7870be856eacb03be3f3 Mon Sep 17 00:00:00 2001 From: Feiyue Yu Date: Fri, 9 Apr 2021 12:42:30 +0800 Subject: [PATCH 12/18] test --- .../latest/recordings/test_gallery_e2e.yaml | 2201 ++++++++++------- .../test_image_build_shared_image.yaml | 688 +++--- .../recordings/test_specialized_image.yaml | 569 ++--- .../test_vm_disk_max_shares_etc.yaml | 562 ++--- 4 files changed, 2141 insertions(+), 1879 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_e2e.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_e2e.yaml index 51a406aa890..d29cddad368 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_e2e.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_e2e.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:38:28 GMT + - Fri, 09 Apr 2021 03:51:04 GMT expires: - '-1' pragma: @@ -70,11 +70,11 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_BLMSZYUHBZ7D\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_J4RZFNEYGLRT\"\r\n },\r\n \ \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9e6e4567-73b2-4516-9bed-3b238988198a?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/764a383a-2a9f-4f0e-b843-c0ff86d6b72e?api-version=2019-12-01 cache-control: - no-cache content-length: @@ -82,7 +82,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:38:35 GMT + - Fri, 09 Apr 2021 03:51:11 GMT expires: - '-1' pragma: @@ -95,7 +95,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299 + - Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;297 x-ms-ratelimit-remaining-subscription-writes: - '1197' status: @@ -117,21 +117,21 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9e6e4567-73b2-4516-9bed-3b238988198a?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/764a383a-2a9f-4f0e-b843-c0ff86d6b72e?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:38:34.630165+00:00\",\r\n \"endTime\": - \"2021-04-07T06:38:34.8332992+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"9e6e4567-73b2-4516-9bed-3b238988198a\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T03:51:10.2476509+00:00\",\r\n \"endTime\": + \"2021-04-09T03:51:10.4507834+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"764a383a-2a9f-4f0e-b843-c0ff86d6b72e\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:39:05 GMT + - Fri, 09 Apr 2021 03:51:41 GMT expires: - '-1' pragma: @@ -148,7 +148,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4198 + - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4139 status: code: 200 message: OK @@ -174,7 +174,7 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_BLMSZYUHBZ7D\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_J4RZFNEYGLRT\"\r\n },\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -184,7 +184,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:39:06 GMT + - Fri, 09 Apr 2021 03:51:41 GMT expires: - '-1' pragma: @@ -201,7 +201,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2496 + - Microsoft.Compute/GetGallery3Min;345,Microsoft.Compute/GetGallery30Min;2477 status: code: 200 message: OK @@ -225,10 +225,10 @@ interactions: response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"gallery_000002\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGWPCTGTBJQJZGAMMBFGMKFLW5EEJUF273P2L7QZLMHABKJQ7EMY2TUHFQCQHPVMFWR/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZUTQU5W32B7LX4VG2I2TJAAWPCYR3E4ZSKF7VQE7M5FNI4S4TOFLGIJSUHN5LUDGD/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": - {\r\n \"uniqueName\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_BLMSZYUHBZ7D\"\r\n + {\r\n \"uniqueName\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_J4RZFNEYGLRT\"\r\n \ },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n \ }\r\n ]\r\n}" headers: @@ -239,7 +239,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:39:06 GMT + - Fri, 09 Apr 2021 03:51:43 GMT expires: - '-1' pragma: @@ -256,7 +256,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListGalleryInResourceGroup3Min;99,Microsoft.Compute/ListGalleryInResourceGroup30Min;999 + - Microsoft.Compute/ListGalleryInResourceGroup3Min;99,Microsoft.Compute/ListGalleryInResourceGroup30Min;998 status: code: 200 message: OK @@ -282,7 +282,7 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_BLMSZYUHBZ7D\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_J4RZFNEYGLRT\"\r\n },\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -292,7 +292,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:39:08 GMT + - Fri, 09 Apr 2021 03:51:44 GMT expires: - '-1' pragma: @@ -309,7 +309,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGallery3Min;345,Microsoft.Compute/GetGallery30Min;2495 + - Microsoft.Compute/GetGallery3Min;344,Microsoft.Compute/GetGallery30Min;2476 status: code: 200 message: OK @@ -335,7 +335,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -344,7 +344,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:39:08 GMT + - Fri, 09 Apr 2021 03:51:44 GMT expires: - '-1' pragma: @@ -392,7 +392,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e27f01ce-4247-4a96-93ea-e0aeab939711?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/087c2dd0-b945-4d3a-a524-c07c8951c552?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -400,7 +400,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:39:15 GMT + - Fri, 09 Apr 2021 03:51:52 GMT expires: - '-1' pragma: @@ -413,9 +413,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;749 + - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;747 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -435,12 +435,12 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e27f01ce-4247-4a96-93ea-e0aeab939711?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/087c2dd0-b945-4d3a-a524-c07c8951c552?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:39:14.4910922+00:00\",\r\n \"endTime\": - \"2021-04-07T06:39:14.6004685+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"e27f01ce-4247-4a96-93ea-e0aeab939711\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T03:51:51.9524316+00:00\",\r\n \"endTime\": + \"2021-04-09T03:51:52.0461795+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"087c2dd0-b945-4d3a-a524-c07c8951c552\"\r\n}" headers: cache-control: - no-cache @@ -449,7 +449,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:39:46 GMT + - Fri, 09 Apr 2021 03:52:23 GMT expires: - '-1' pragma: @@ -466,7 +466,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4196 + - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4135 status: code: 200 message: OK @@ -504,7 +504,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:39:47 GMT + - Fri, 09 Apr 2021 03:52:24 GMT expires: - '-1' pragma: @@ -521,7 +521,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;596,Microsoft.Compute/GetGalleryImage30Min;2996 + - Microsoft.Compute/GetGalleryImage3Min;595,Microsoft.Compute/GetGalleryImage30Min;2974 status: code: 200 message: OK @@ -553,7 +553,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:39:49 GMT + - Fri, 09 Apr 2021 03:52:26 GMT expires: - '-1' pragma: @@ -565,42 +565,42 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 7cab6a03-24b5-43ef-a3e4-2df70be1eb41 - - a7f1343a-e3f0-43e2-9b90-ce07613ae73b - - 73da818d-f1b7-4853-81b5-f848ac72ebc6 - - 44c22bd8-5717-491d-92dc-951cd50512f1 - - c857e576-c1a5-4b37-9c8f-a589b11fb7c4 - - 4ad07927-635d-4de2-9dcd-1e72c9586058 - - 1aaef754-87ea-4c6e-b3ef-26a8ce6ebd3d - - 8e4a4e24-48bf-47b2-adca-727db5be227f - - c5844c28-f840-4c6e-94d2-276157b28c78 - - f5a9017b-daf6-4035-88cd-252894fa4a3d - - dfba4eee-cf31-425e-8e20-96c4ad556d69 - - 145ca64e-4005-4779-832b-d06715263001 - - 081494e9-0097-48f3-9bf5-c1debbaaa498 - - 29b77308-9739-41c1-931b-361c6e3edd19 - - 1507ef17-c9f1-46e2-a826-2edc7be97b0a - - c073be99-5e46-4bca-b596-95f96395d243 - - 2fd63acc-fbd1-4ee0-8fa3-2af8f5f32931 - - 33b1b8ee-ccc1-4fd1-9b70-4ee87607d834 - - a716190d-07ea-4e36-84d2-f97032be0b3b - - 95a1d347-74d0-40ee-b1de-ed257950e838 - - 12dd82b2-0edb-47bb-816a-53ba23990302 - - e47236bc-66ba-4632-9852-51baa0976549 - - 01380b5c-466c-4768-a1e4-968e38758291 - - b22a114c-71b3-4a3f-a61c-f8a8c56961f5 - - 573b4098-2b70-444a-8377-e9ee5006bec9 - - 9ccb6cc3-41cc-4c31-8201-8fc0eadc09a5 - - 88ea49c2-e4bf-49b7-a1d6-908ad768baba - - 3ac2d4f9-b3f4-46ca-9de6-7fb7d1fcaf85 - - e785a6d1-e7ad-43db-9bd3-7e6f2af21f7b - - edddfc7c-c7c1-4a24-8372-91761f410e57 - - 36cca465-acc7-4988-93aa-150a873910f2 - - 6d75a9f6-3ad1-42b0-bac9-922326089d08 - - 33f64fd5-1271-4c7e-9ee2-fa36840a1c8d - - 811d5d01-5ddb-49f5-9516-622cd7844f99 - - 0d30fbff-5f7b-4c4e-a204-99eb7c27e75b - - c7096877-0115-4671-a5ad-6a268b5b105b + - c24b60cd-aa60-4360-8f51-974f965082aa + - dd0b2bb1-e507-4fa3-ba9f-bb874facc1d3 + - aa4b046d-5861-4e63-97ae-c248d1085489 + - 0d8a4f03-0215-4f87-8630-f4a8eb4122de + - 0914a355-8e15-4b6b-b0e2-b2edc472be85 + - 3d5127e9-4a55-43ff-a39f-c6c5dbecb632 + - e66c7a6e-c27e-4e15-a336-17a69b0321e1 + - bc07c10c-6c63-4942-a6df-5c63fada5e82 + - d354a17e-b738-4ce2-a8d4-47b4af5123ef + - 7cfef67e-023b-44bc-951d-ce106c499342 + - 829587a0-bb72-40c8-8d60-6a3ba0fde772 + - e466262e-3258-4838-aead-5be43b828f8d + - 00ca2207-5970-478c-85c6-2321ec751682 + - 62bb2284-b9e1-437c-8447-5ddd2c8991c8 + - 0698ea86-f54c-4b14-8faa-a42b3268f921 + - 901e9384-5a7a-4027-89af-20163fd56737 + - c2eb9fc9-9812-471f-ad50-6979439dd6c5 + - b523d070-60ae-4dce-bdf4-f4f1399cfbc3 + - 4b7761c9-9943-49d9-b822-58007e09ae85 + - 72c6aac9-4904-4fde-a1f4-6d76b6f62cea + - 40831749-deb2-47f7-a248-699aa350b417 + - d0a6a22f-d8b3-49d6-b710-9da560c13c69 + - 3e776282-7690-425e-9794-12d14e95f222 + - e48ab707-750a-437f-9c92-00f31bf61b8a + - d7c2608b-f015-4a7e-a8d4-88a95e74ca7c + - 7ef93b87-9876-4a0b-9a5e-f96c241b534e + - 10563ef1-98a8-4a27-a6e4-b21cd7f8aedc + - 21e06094-250e-45d7-87a2-9f013b7163d4 + - 6523831c-6b27-457a-ac84-053dae6d9433 + - ced17e46-3ca4-4d9e-b9f8-a4aafb2d3053 + - dab4b176-68d7-482d-a71c-aa808ba0cdcc + - bbf9dec3-f234-46f2-9fe9-601d57ea882a + - 7e9af251-6b72-4670-91d4-a9a1bf99c2af + - 3b9c03f8-0547-45e6-a85b-2b21a1cf961f + - 95722782-96a8-4bd8-98dd-cb33e0259b4e + - 17dfa70a-61c2-4119-b1f0-995387a5829b status: code: 200 message: OK @@ -638,7 +638,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:39:49 GMT + - Fri, 09 Apr 2021 03:52:27 GMT expires: - '-1' pragma: @@ -655,7 +655,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;595,Microsoft.Compute/GetGalleryImage30Min;2995 + - Microsoft.Compute/GetGalleryImage3Min;594,Microsoft.Compute/GetGalleryImage30Min;2973 status: code: 200 message: OK @@ -681,7 +681,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -690,7 +690,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:39:50 GMT + - Fri, 09 Apr 2021 03:52:27 GMT expires: - '-1' pragma: @@ -769,13 +769,13 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Wed, 07 Apr 2021 06:39:51 GMT + - Fri, 09 Apr 2021 03:52:28 GMT etag: - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" expires: - - Wed, 07 Apr 2021 06:44:51 GMT + - Fri, 09 Apr 2021 03:57:28 GMT source-age: - - '288' + - '146' strict-transport-security: - max-age=31536000 vary: @@ -789,15 +789,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - b30fd0a40a078540cf16b0bcc39f905e7fcf9d83 + - 179da1072b13ffab25df86a1b81b6fab467c4999 x-frame-options: - deny x-github-request-id: - - F382:5F6B:C6E59:EBF3D:606D47A2 + - C62E:4586:4AE6C2:58C97E:606FB659 x-served-by: - - cache-qpg1231-QPG + - cache-qpg1251-QPG x-timer: - - S1617777591.036642,VS0,VE0 + - S1617940348.364630,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -831,7 +831,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:39:50 GMT + - Fri, 09 Apr 2021 03:52:28 GMT expires: - '-1' pragma: @@ -899,18 +899,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_dZaZiD9XSGSkvu98C1fdAIsn7AuRootI","name":"vm_deploy_dZaZiD9XSGSkvu98C1fdAIsn7AuRootI","type":"Microsoft.Resources/deployments","properties":{"templateHash":"10823136096144899161","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-07T06:39:56.0359189Z","duration":"PT2.6340007S","correlationId":"d8c1c2f9-16ff-428f-bcef-7ce9400fd316","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus2"]},{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_FaAmkrlqmBTZZs4eZLUEWiOWU4kJNG1T","name":"vm_deploy_FaAmkrlqmBTZZs4eZLUEWiOWU4kJNG1T","type":"Microsoft.Resources/deployments","properties":{"templateHash":"312016615491843100","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-09T03:52:34.9795136Z","duration":"PT3.3179698S","correlationId":"44943914-6533-466f-9e22-16685be0c09c","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus2"]},{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_dZaZiD9XSGSkvu98C1fdAIsn7AuRootI/operationStatuses/08585838292920757108?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_FaAmkrlqmBTZZs4eZLUEWiOWU4kJNG1T/operationStatuses/08585836665338160838?api-version=2020-10-01 cache-control: - no-cache content-length: - - '2748' + - '2746' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:39:57 GMT + - Fri, 09 Apr 2021 03:52:36 GMT expires: - '-1' pragma: @@ -920,7 +920,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -941,7 +941,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585838292920757108?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836665338160838?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -953,7 +953,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:40:28 GMT + - Fri, 09 Apr 2021 03:53:07 GMT expires: - '-1' pragma: @@ -984,7 +984,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585838292920757108?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836665338160838?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -996,7 +996,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:40:58 GMT + - Fri, 09 Apr 2021 03:53:38 GMT expires: - '-1' pragma: @@ -1030,16 +1030,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_dZaZiD9XSGSkvu98C1fdAIsn7AuRootI","name":"vm_deploy_dZaZiD9XSGSkvu98C1fdAIsn7AuRootI","type":"Microsoft.Resources/deployments","properties":{"templateHash":"10823136096144899161","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-07T06:40:43.7307499Z","duration":"PT50.3288317S","correlationId":"d8c1c2f9-16ff-428f-bcef-7ce9400fd316","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus2"]},{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_FaAmkrlqmBTZZs4eZLUEWiOWU4kJNG1T","name":"vm_deploy_FaAmkrlqmBTZZs4eZLUEWiOWU4kJNG1T","type":"Microsoft.Resources/deployments","properties":{"templateHash":"312016615491843100","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-09T03:53:09.6790358Z","duration":"PT38.017492S","correlationId":"44943914-6533-466f-9e22-16685be0c09c","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus2"]},{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}' headers: cache-control: - no-cache content-length: - - '3813' + - '3810' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:40:59 GMT + - Fri, 09 Apr 2021 03:53:38 GMT expires: - '-1' pragma: @@ -1074,21 +1074,21 @@ interactions: body: string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"8254bb93-e3e4-4193-9f73-2711f8e1d2cc\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"2d8c1f0e-52ce-484a-9fc4-dcf27109d87b\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202103250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"vm1_disk1_26aaac1b172342dc9891632f07e408ed\",\r\n + \"Linux\",\r\n \"name\": \"vm1_disk1_0a3dd4d450aa47f2afc0dc2ebcb7d8f0\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_26aaac1b172342dc9891632f07e408ed\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_0a3dd4d450aa47f2afc0dc2ebcb7d8f0\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": - [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1_disk2_f90cb9aaee394330aea9585aa525906a\",\r\n + [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1_disk2_a2d0f54ba6cd447480371766b3cf91bd\",\r\n \ \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_f90cb9aaee394330aea9585aa525906a\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_a2d0f54ba6cd447480371766b3cf91bd\"\r\n \ },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": @@ -1107,20 +1107,20 @@ interactions: [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \ \"message\": \"Guest Agent is running\",\r\n \"time\": - \"2021-04-07T06:40:55+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_disk1_26aaac1b172342dc9891632f07e408ed\",\r\n + \"2021-04-09T03:53:37+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_disk1_0a3dd4d450aa47f2afc0dc2ebcb7d8f0\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-07T06:40:25.8993708+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-09T03:52:55.8889361+00:00\"\r\n \ }\r\n ]\r\n },\r\n {\r\n \"name\": - \"vm1_disk2_f90cb9aaee394330aea9585aa525906a\",\r\n \"statuses\": + \"vm1_disk2_a2d0f54ba6cd447480371766b3cf91bd\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-07T06:40:25.8993708+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-09T03:52:55.8889361+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-07T06:40:41.4932249+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-09T03:53:07.576545+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n \ }\r\n ]\r\n }\r\n }\r\n}" @@ -1128,11 +1128,11 @@ interactions: cache-control: - no-cache content-length: - - '4781' + - '4780' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:41:00 GMT + - Fri, 09 Apr 2021 03:53:39 GMT expires: - '-1' pragma: @@ -1149,7 +1149,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31997 + - Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31957 status: code: 200 message: OK @@ -1173,12 +1173,12 @@ interactions: response: body: string: "{\r\n \"name\": \"vm1VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\r\n - \ \"etag\": \"W/\\\"89b76f74-5651-4ff6-abc6-60b73f049e3c\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"b91b4631-c4f9-4bac-a83f-22f862f80243\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"14bc5569-dba6-4290-a4fa-ac46abe31a30\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"02d0cb8b-0298-4caa-b580-3538d469cd6a\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm1\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\r\n - \ \"etag\": \"W/\\\"89b76f74-5651-4ff6-abc6-60b73f049e3c\\\"\",\r\n + \ \"etag\": \"W/\\\"b91b4631-c4f9-4bac-a83f-22f862f80243\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -1187,8 +1187,8 @@ interactions: \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": - \"iexrt4vvhrwurb4icymeisiqab.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-22-48-4B-D5-49\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"iakffmqzod0upcr44bizc1kizb.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-22-48-4D-D7-58\",\r\n \"enableAcceleratedNetworking\": false,\r\n \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -1202,9 +1202,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:41:00 GMT + - Fri, 09 Apr 2021 03:53:40 GMT etag: - - W/"89b76f74-5651-4ff6-abc6-60b73f049e3c" + - W/"b91b4631-c4f9-4bac-a83f-22f862f80243" expires: - '-1' pragma: @@ -1221,7 +1221,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a4215f26-f68f-4560-88d9-5043d5ec90e8 + - bab82415-bec0-4080-8f3c-f35fa9bee7a1 status: code: 200 message: OK @@ -1245,11 +1245,11 @@ interactions: response: body: string: "{\r\n \"name\": \"vm1PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\r\n - \ \"etag\": \"W/\\\"835ad7db-168a-4ee3-9c32-62dc94132d07\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"ca594335-ab97-428a-8dfd-e4cd28a7d9c7\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"9c87ef1e-edbb-48fe-8a57-e5925b8203ac\",\r\n - \ \"ipAddress\": \"52.184.179.193\",\r\n \"publicIPAddressVersion\": - \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + \"Succeeded\",\r\n \"resourceGuid\": \"b5314d9e-a24a-4978-8183-cba851aa4d58\",\r\n + \ \"ipAddress\": \"20.49.23.31\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" @@ -1257,13 +1257,13 @@ interactions: cache-control: - no-cache content-length: - - '999' + - '996' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:41:00 GMT + - Fri, 09 Apr 2021 03:53:40 GMT etag: - - W/"835ad7db-168a-4ee3-9c32-62dc94132d07" + - W/"ca594335-ab97-428a-8dfd-e4cd28a7d9c7" expires: - '-1' pragma: @@ -1280,7 +1280,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4c37f0d9-4f40-406c-914a-d49d5faac92f + - a80feb53-f05e-4e7a-a6f6-dd48600ece82 status: code: 200 message: OK @@ -1311,17 +1311,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/5698258b-ae16-4163-bf5a-70c5723f3364?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/04f86f8e-3317-4f04-a4a7-93be38d84537?api-version=2020-12-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 07 Apr 2021 06:41:01 GMT + - Fri, 09 Apr 2021 03:53:41 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/5698258b-ae16-4163-bf5a-70c5723f3364?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/04f86f8e-3317-4f04-a4a7-93be38d84537?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -1332,7 +1332,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1199 + - Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1197 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1354,15 +1354,15 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/5698258b-ae16-4163-bf5a-70c5723f3364?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/04f86f8e-3317-4f04-a4a7-93be38d84537?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:41:02.5089868+00:00\",\r\n \"endTime\": - \"2021-04-07T06:41:18.0559682+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-09T03:53:41.4986143+00:00\",\r\n \"endTime\": + \"2021-04-09T03:53:55.2018401+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\"value\":[{\"code\":\"ProvisioningState/succeeded\",\"level\":\"Info\",\"displayStatus\":\"Provisioning succeeded\",\"message\":\"Enable succeeded: \\n[stdout]\\n\\n[stderr]\\nwarning: - commands will be executed using /bin/sh\\njob 1 at Wed Apr 7 06:42:00 2021\\n\"}]}\r\n - \ },\r\n \"name\": \"5698258b-ae16-4163-bf5a-70c5723f3364\"\r\n}" + commands will be executed using /bin/sh\\njob 1 at Fri Apr 9 03:54:00 2021\\n\"}]}\r\n + \ },\r\n \"name\": \"04f86f8e-3317-4f04-a4a7-93be38d84537\"\r\n}" headers: cache-control: - no-cache @@ -1371,7 +1371,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:41:32 GMT + - Fri, 09 Apr 2021 03:54:11 GMT expires: - '-1' pragma: @@ -1388,7 +1388,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29996 + - Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29968 status: code: 200 message: OK @@ -1408,12 +1408,12 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/5698258b-ae16-4163-bf5a-70c5723f3364?monitor=true&api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/04f86f8e-3317-4f04-a4a7-93be38d84537?monitor=true&api-version=2020-12-01 response: body: string: '{"value":[{"code":"ProvisioningState/succeeded","level":"Info","displayStatus":"Provisioning succeeded","message":"Enable succeeded: \n[stdout]\n\n[stderr]\nwarning: commands - will be executed using /bin/sh\njob 1 at Wed Apr 7 06:42:00 2021\n"}]}' + will be executed using /bin/sh\njob 1 at Fri Apr 9 03:54:00 2021\n"}]}' headers: cache-control: - no-cache @@ -1422,7 +1422,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:41:33 GMT + - Fri, 09 Apr 2021 03:54:11 GMT expires: - '-1' pragma: @@ -1439,7 +1439,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29995 + - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29967 status: code: 200 message: OK @@ -1467,17 +1467,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/d2ad4ee0-4eb0-4f01-81fc-25d631ad01ec?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/0e3d20b0-e321-4449-8f31-a891b97e0658?api-version=2020-12-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 07 Apr 2021 06:42:44 GMT + - Fri, 09 Apr 2021 03:55:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/d2ad4ee0-4eb0-4f01-81fc-25d631ad01ec?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/0e3d20b0-e321-4449-8f31-a891b97e0658?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -1488,7 +1488,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1199 + - Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1197 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1510,261 +1510,11 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/d2ad4ee0-4eb0-4f01-81fc-25d631ad01ec?api-version=2020-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2021-04-07T06:42:44.4471893+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"d2ad4ee0-4eb0-4f01-81fc-25d631ad01ec\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 07 Apr 2021 06:42:54 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29994 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm deallocate - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/d2ad4ee0-4eb0-4f01-81fc-25d631ad01ec?api-version=2020-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2021-04-07T06:42:44.4471893+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"d2ad4ee0-4eb0-4f01-81fc-25d631ad01ec\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 07 Apr 2021 06:43:30 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29990 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm deallocate - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/d2ad4ee0-4eb0-4f01-81fc-25d631ad01ec?api-version=2020-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2021-04-07T06:42:44.4471893+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"d2ad4ee0-4eb0-4f01-81fc-25d631ad01ec\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 07 Apr 2021 06:44:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29988 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm deallocate - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/d2ad4ee0-4eb0-4f01-81fc-25d631ad01ec?api-version=2020-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2021-04-07T06:42:44.4471893+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"d2ad4ee0-4eb0-4f01-81fc-25d631ad01ec\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 07 Apr 2021 06:44:31 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29985 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm deallocate - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/d2ad4ee0-4eb0-4f01-81fc-25d631ad01ec?api-version=2020-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2021-04-07T06:42:44.4471893+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"d2ad4ee0-4eb0-4f01-81fc-25d631ad01ec\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 07 Apr 2021 06:45:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29982 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vm deallocate - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/d2ad4ee0-4eb0-4f01-81fc-25d631ad01ec?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/0e3d20b0-e321-4449-8f31-a891b97e0658?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:42:44.4471893+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"d2ad4ee0-4eb0-4f01-81fc-25d631ad01ec\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T03:55:23.1555159+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"0e3d20b0-e321-4449-8f31-a891b97e0658\"\r\n}" headers: cache-control: - no-cache @@ -1773,7 +1523,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:45:31 GMT + - Fri, 09 Apr 2021 03:55:32 GMT expires: - '-1' pragma: @@ -1790,7 +1540,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29979 + - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29976 status: code: 200 message: OK @@ -1810,12 +1560,12 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/d2ad4ee0-4eb0-4f01-81fc-25d631ad01ec?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/0e3d20b0-e321-4449-8f31-a891b97e0658?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:42:44.4471893+00:00\",\r\n \"endTime\": - \"2021-04-07T06:45:56.3704535+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"d2ad4ee0-4eb0-4f01-81fc-25d631ad01ec\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T03:55:23.1555159+00:00\",\r\n \"endTime\": + \"2021-04-09T03:55:50.5775864+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"0e3d20b0-e321-4449-8f31-a891b97e0658\"\r\n}" headers: cache-control: - no-cache @@ -1824,7 +1574,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:46:02 GMT + - Fri, 09 Apr 2021 03:56:09 GMT expires: - '-1' pragma: @@ -1841,7 +1591,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29976 + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29973 status: code: 200 message: OK @@ -1861,7 +1611,7 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/d2ad4ee0-4eb0-4f01-81fc-25d631ad01ec?monitor=true&api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/0e3d20b0-e321-4449-8f31-a891b97e0658?monitor=true&api-version=2020-12-01 response: body: string: '' @@ -1871,7 +1621,7 @@ interactions: content-length: - '0' date: - - Wed, 07 Apr 2021 06:46:03 GMT + - Fri, 09 Apr 2021 03:56:10 GMT expires: - '-1' pragma: @@ -1884,7 +1634,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29975 + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29972 status: code: 200 message: OK @@ -1916,7 +1666,7 @@ interactions: content-length: - '0' date: - - Wed, 07 Apr 2021 06:46:03 GMT + - Fri, 09 Apr 2021 03:56:10 GMT expires: - '-1' pragma: @@ -1929,9 +1679,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1198 + - Microsoft.Compute/UpdateVM3Min;238,Microsoft.Compute/UpdateVM30Min;1196 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -1956,19 +1706,19 @@ interactions: body: string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"8254bb93-e3e4-4193-9f73-2711f8e1d2cc\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"2d8c1f0e-52ce-484a-9fc4-dcf27109d87b\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202103250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"vm1_disk1_26aaac1b172342dc9891632f07e408ed\",\r\n + \"Linux\",\r\n \"name\": \"vm1_disk1_0a3dd4d450aa47f2afc0dc2ebcb7d8f0\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n - \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_26aaac1b172342dc9891632f07e408ed\"\r\n + \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_0a3dd4d450aa47f2afc0dc2ebcb7d8f0\"\r\n \ }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": - 0,\r\n \"name\": \"vm1_disk2_f90cb9aaee394330aea9585aa525906a\",\r\n + 0,\r\n \"name\": \"vm1_disk2_a2d0f54ba6cd447480371766b3cf91bd\",\r\n \ \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n - \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_f90cb9aaee394330aea9585aa525906a\"\r\n + \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_a2d0f54ba6cd447480371766b3cf91bd\"\r\n \ },\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n \ },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": @@ -1981,21 +1731,21 @@ interactions: true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"disks\": - [\r\n {\r\n \"name\": \"vm1_disk1_26aaac1b172342dc9891632f07e408ed\",\r\n + [\r\n {\r\n \"name\": \"vm1_disk1_0a3dd4d450aa47f2afc0dc2ebcb7d8f0\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-07T06:45:54.2610597+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-09T03:55:48.4838472+00:00\"\r\n \ }\r\n ]\r\n },\r\n {\r\n \"name\": - \"vm1_disk2_f90cb9aaee394330aea9585aa525906a\",\r\n \"statuses\": + \"vm1_disk2_a2d0f54ba6cd447480371766b3cf91bd\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-07T06:45:54.2610597+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-09T03:55:48.4838472+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"OSState/generalized\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM generalized\"\r\n \ },\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-07T06:45:54.2766895+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-09T03:55:48.4994513+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/deallocated\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n \ }\r\n ]\r\n }\r\n }\r\n}" @@ -2007,7 +1757,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:46:04 GMT + - Fri, 09 Apr 2021 03:56:11 GMT expires: - '-1' pragma: @@ -2024,7 +1774,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3999,Microsoft.Compute/LowCostGet30Min;31996 + - Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31966 status: code: 200 message: OK @@ -2050,7 +1800,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2059,7 +1809,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:46:05 GMT + - Fri, 09 Apr 2021 03:56:11 GMT expires: - '-1' pragma: @@ -2104,10 +1854,10 @@ interactions: \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\"\r\n \ },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"managedDisk\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_26aaac1b172342dc9891632f07e408ed\"\r\n + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_0a3dd4d450aa47f2afc0dc2ebcb7d8f0\"\r\n \ },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": - 0,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_f90cb9aaee394330aea9585aa525906a\"\r\n + 0,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_a2d0f54ba6cd447480371766b3cf91bd\"\r\n \ },\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Premium_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"hyperVGeneration\": \"V1\"\r\n }\r\n}" @@ -2115,7 +1865,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/c08e8547-40b5-4258-b578-4e1b13019ae9?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/2519bc83-8324-411d-8f03-57dfb07e6768?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -2123,7 +1873,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:46:12 GMT + - Fri, 09 Apr 2021 03:56:18 GMT expires: - '-1' pragma: @@ -2136,9 +1886,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateImages3Min;39,Microsoft.Compute/CreateImages30Min;199 + - Microsoft.Compute/CreateImages3Min;39,Microsoft.Compute/CreateImages30Min;198 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 201 message: Created @@ -2158,12 +1908,12 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/c08e8547-40b5-4258-b578-4e1b13019ae9?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/2519bc83-8324-411d-8f03-57dfb07e6768?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:46:10.9798304+00:00\",\r\n \"endTime\": - \"2021-04-07T06:46:16.0892605+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"c08e8547-40b5-4258-b578-4e1b13019ae9\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T03:56:17.2340347+00:00\",\r\n \"endTime\": + \"2021-04-09T03:56:22.3434106+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"2519bc83-8324-411d-8f03-57dfb07e6768\"\r\n}" headers: cache-control: - no-cache @@ -2172,7 +1922,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:46:43 GMT + - Fri, 09 Apr 2021 03:56:48 GMT expires: - '-1' pragma: @@ -2189,7 +1939,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29973 + - Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29970 status: code: 200 message: OK @@ -2218,11 +1968,11 @@ interactions: \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\"\r\n \ },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"diskSizeGB\": - 30,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_26aaac1b172342dc9891632f07e408ed\"\r\n + 30,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_0a3dd4d450aa47f2afc0dc2ebcb7d8f0\"\r\n \ },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"diskSizeGB\": 10,\r\n \"managedDisk\": {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_f90cb9aaee394330aea9585aa525906a\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_a2d0f54ba6cd447480371766b3cf91bd\"\r\n \ },\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Premium_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\r\n }\r\n}" @@ -2234,7 +1984,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:46:43 GMT + - Fri, 09 Apr 2021 03:56:49 GMT expires: - '-1' pragma: @@ -2251,7 +2001,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetImages3Min;358,Microsoft.Compute/GetImages30Min;1798 + - Microsoft.Compute/GetImages3Min;358,Microsoft.Compute/GetImages30Min;1792 status: code: 200 message: OK @@ -2278,7 +2028,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2287,7 +2037,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:46:44 GMT + - Fri, 09 Apr 2021 03:56:49 GMT expires: - '-1' pragma: @@ -2324,7 +2074,7 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"1.1.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2\",\r\n @@ -2333,21 +2083,21 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-07T06:46:51.4464299+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-09T03:56:55.964542+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n \ }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/d010f38c-e5e5-482c-b3bc-73a7369b13d8?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e87ef5fd-29a2-4592-93a2-cd37f65854a0?api-version=2020-09-30 cache-control: - no-cache content-length: - - '1075' + - '1074' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:46:53 GMT + - Fri, 09 Apr 2021 03:56:57 GMT expires: - '-1' pragma: @@ -2360,9 +2110,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1199 + - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1196 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -2383,20 +2133,20 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/d010f38c-e5e5-482c-b3bc-73a7369b13d8?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e87ef5fd-29a2-4592-93a2-cd37f65854a0?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:46:51.4464299+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"d010f38c-e5e5-482c-b3bc-73a7369b13d8\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T03:56:55.964542+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e87ef5fd-29a2-4592-93a2-cd37f65854a0\"\r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:47:53 GMT + - Fri, 09 Apr 2021 03:57:58 GMT expires: - '-1' pragma: @@ -2413,7 +2163,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4194 + - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4123 status: code: 200 message: OK @@ -2434,20 +2184,20 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/d010f38c-e5e5-482c-b3bc-73a7369b13d8?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e87ef5fd-29a2-4592-93a2-cd37f65854a0?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:46:51.4464299+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"d010f38c-e5e5-482c-b3bc-73a7369b13d8\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T03:56:55.964542+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e87ef5fd-29a2-4592-93a2-cd37f65854a0\"\r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:48:54 GMT + - Fri, 09 Apr 2021 03:59:00 GMT expires: - '-1' pragma: @@ -2464,7 +2214,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4193 + - Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4120 status: code: 200 message: OK @@ -2485,20 +2235,20 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/d010f38c-e5e5-482c-b3bc-73a7369b13d8?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e87ef5fd-29a2-4592-93a2-cd37f65854a0?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:46:51.4464299+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"d010f38c-e5e5-482c-b3bc-73a7369b13d8\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T03:56:55.964542+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e87ef5fd-29a2-4592-93a2-cd37f65854a0\"\r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:49:56 GMT + - Fri, 09 Apr 2021 03:59:59 GMT expires: - '-1' pragma: @@ -2515,7 +2265,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4191 + - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4124 status: code: 200 message: OK @@ -2523,33 +2273,581 @@ interactions: body: null headers: Accept: - - '*/*' + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image + --replica-count + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e87ef5fd-29a2-4592-93a2-cd37f65854a0?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-04-09T03:56:55.964542+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e87ef5fd-29a2-4592-93a2-cd37f65854a0\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '133' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 04:01:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4120 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image + --replica-count + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e87ef5fd-29a2-4592-93a2-cd37f65854a0?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-04-09T03:56:55.964542+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e87ef5fd-29a2-4592-93a2-cd37f65854a0\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '133' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 04:02:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4116 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image + --replica-count + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e87ef5fd-29a2-4592-93a2-cd37f65854a0?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-04-09T03:56:55.964542+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e87ef5fd-29a2-4592-93a2-cd37f65854a0\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '133' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 04:03:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4112 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image + --replica-count + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e87ef5fd-29a2-4592-93a2-cd37f65854a0?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-04-09T03:56:55.964542+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e87ef5fd-29a2-4592-93a2-cd37f65854a0\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '133' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 04:04:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4108 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image + --replica-count + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e87ef5fd-29a2-4592-93a2-cd37f65854a0?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-04-09T03:56:55.964542+00:00\",\r\n \"endTime\": + \"2021-04-09T04:04:03.7939673+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"e87ef5fd-29a2-4592-93a2-cd37f65854a0\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '183' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 04:05:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4122 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image + --replica-count + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2020-09-30 + response: + body: + string: "{\r\n \"name\": \"1.1.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2\",\r\n + \ \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": + \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"publishingProfile\": + {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East + US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": + \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-09T03:56:55.964542+00:00\",\r\n + \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": + {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n + \ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": + \"ReadWrite\",\r\n \"source\": {}\r\n },\r\n \"dataDiskImages\": + [\r\n {\r\n \"lun\": 0,\r\n \"sizeInGB\": 10,\r\n + \ \"hostCaching\": \"None\"\r\n }\r\n ]\r\n },\r\n + \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1333' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 04:05:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetGalleryImageVersion3Min;1997,Microsoft.Compute/GetGalleryImageVersion30Min;9980 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version list + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions?api-version=2020-09-30 + response: + body: + string: '{"value":[{"name":"1.1.2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2","type":"Microsoft.Compute/galleries/images/versions","location":"eastus2","tags":{},"properties":{"publishingProfile":{"targetRegions":[{"name":"East + US 2","regionalReplicaCount":1,"storageAccountType":"Standard_LRS"}],"replicaCount":1,"excludeFromLatest":false,"publishedDate":"2021-04-09T03:56:55.964542+00:00","storageAccountType":"Standard_LRS"},"storageProfile":{"source":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1"},"osDiskImage":{"sizeInGB":30,"hostCaching":"ReadWrite","source":{}},"dataDiskImages":[{"lun":0,"sizeInGB":10,"hostCaching":"None"}]},"provisioningState":"Succeeded"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1010' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 04:05:07 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - 3baea4c6-aa27-404e-8113-e0f2d50016af + - 97096964-bfea-4838-b748-f2dd2d77887b + - 0a681110-86b9-40ff-a5d3-0300fe2c087d + - 2d99cff5-cc74-41b4-98ab-a5b896ade3b3 + - 4e6eef6a-eee2-497b-82f2-1042b7b9e3a5 + - 9242686c-8537-4539-a8dd-3d4046b07a5b + - be4559dd-3c12-44b2-8957-3e7dded057dd + - 4623de0b-be63-4a3d-a65e-ad8c624f5fe9 + - 8cf65741-d330-4c1e-9c9e-43fa84385ab0 + - ac4ed535-a617-4bad-af5a-94b0f47a08c2 + - ece18745-4d05-4ebd-8c87-947334d40824 + - ea9bbe9e-f603-4690-9ede-cfc23c33e690 + - 114175d9-50c4-40ff-bd82-7f7ba9ecfcc9 + - 72adf364-b748-4c51-bde6-600634382b26 + - 9eb41150-4045-487e-a87c-6723a85919ee + - 70b2a007-9f3d-4b0a-8a20-ca82249b1295 + - 16760e73-0979-4242-b6f2-d181ed15ca48 + - b0902b81-749b-4c8b-9a5f-ce948b0d0ad6 + - a62fb6c1-b358-4064-a63f-7da301fe44e8 + - 4bc6bb21-cff4-45a3-94ca-b8bc70668dcb + - 0be232e6-3d77-4b94-8a48-5cb857e1ec9f + - 5f697804-c30e-4d10-87d4-4dbcaf341160 + - 1d6bb7f4-6f31-4228-b495-a6ddc0128f1c + - 5647bee5-0f3e-4b46-9660-d4fb58613322 + - dd8f5e07-2a4a-404e-9a8d-c033296c7271 + - f6a552ed-608c-481a-b815-df9d376f7844 + - 240b4129-df21-4bc2-b6ec-17bd188d8fc3 + - 84573435-b4c6-48c6-a176-6a9bfe1f48b6 + - 3d85c5f6-22d4-4898-a8a1-e58d3fb7f6a1 + - da32e956-e0cf-44fb-bb06-e865a1d42d3d + - 446cf4d0-9852-4f31-961b-78ab68d4e7ba + - 995cabfe-3fc7-4f4f-b3a3-04c074707bde + - 36a6ded6-a506-4431-a095-0faa404eeed2 + - 92d56143-4a16-413a-a244-58eb07173057 + - d8e49975-c5f5-4eaa-884c-bf0e755ea148 + - fad78676-f665-46c1-a8f1-6404a05e2bcf + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version show + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2020-09-30 + response: + body: + string: "{\r\n \"name\": \"1.1.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2\",\r\n + \ \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": + \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"publishingProfile\": + {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East + US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": + \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-09T03:56:55.964542+00:00\",\r\n + \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": + {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n + \ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": + \"ReadWrite\",\r\n \"source\": {}\r\n },\r\n \"dataDiskImages\": + [\r\n {\r\n \"lun\": 0,\r\n \"sizeInGB\": 10,\r\n + \ \"hostCaching\": \"None\"\r\n }\r\n ]\r\n },\r\n + \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1333' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 04:05:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetGalleryImageVersion3Min;1996,Microsoft.Compute/GetGalleryImageVersion30Min;9979 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version update + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions + --replica-count + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2020-09-30 + response: + body: + string: "{\r\n \"name\": \"1.1.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2\",\r\n + \ \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": + \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"publishingProfile\": + {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East + US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": + \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-09T03:56:55.964542+00:00\",\r\n + \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": + {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n + \ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": + \"ReadWrite\",\r\n \"source\": {}\r\n },\r\n \"dataDiskImages\": + [\r\n {\r\n \"lun\": 0,\r\n \"sizeInGB\": 10,\r\n + \ \"hostCaching\": \"None\"\r\n }\r\n ]\r\n },\r\n + \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1333' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 04:05:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetGalleryImageVersion3Min;1995,Microsoft.Compute/GetGalleryImageVersion30Min;9978 + status: + code: 200 + message: OK +- request: + body: '{"location": "eastus2", "tags": {}, "properties": {"publishingProfile": + {"targetRegions": [{"name": "westus2", "regionalReplicaCount": 1}, {"name": + "eastus2"}], "replicaCount": 2, "excludeFromLatest": false, "storageAccountType": + "Standard_LRS"}, "storageProfile": {"osDiskImage": {"hostCaching": "ReadWrite"}, + "dataDiskImages": [{"hostCaching": "None", "lun": 0}]}}}' + headers: + Accept: + - application/json Accept-Encoding: - gzip, deflate CommandName: - - sig image-version create + - sig image-version update Connection: - keep-alive + Content-Length: + - '367' + Content-Type: + - application/json ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image + - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/d010f38c-e5e5-482c-b3bc-73a7369b13d8?api-version=2019-12-01 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:46:51.4464299+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"d010f38c-e5e5-482c-b3bc-73a7369b13d8\"\r\n}" + string: "{\r\n \"name\": \"1.1.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2\",\r\n + \ \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": + \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"publishingProfile\": + {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West + US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": + \"Standard_LRS\"\r\n },\r\n {\r\n \"name\": \"East + US 2\",\r\n \"regionalReplicaCount\": 2,\r\n \"storageAccountType\": + \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 2,\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-09T03:56:55.964542+00:00\",\r\n + \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": + {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n + \ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": + \"ReadWrite\",\r\n \"source\": {}\r\n },\r\n \"dataDiskImages\": + [\r\n {\r\n \"lun\": 0,\r\n \"sizeInGB\": 10,\r\n + \ \"hostCaching\": \"None\"\r\n }\r\n ]\r\n },\r\n + \ \"provisioningState\": \"Updating\"\r\n }\r\n}" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a943606b-9d69-4d25-b4f7-373e080fa640?api-version=2020-09-30 cache-control: - no-cache content-length: - - '134' + - '1473' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:50:57 GMT + - Fri, 09 Apr 2021 04:05:10 GMT expires: - '-1' pragma: @@ -2566,7 +2864,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4189 + - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1197 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -2578,20 +2878,20 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sig image-version create + - sig image-version update Connection: - keep-alive ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image + - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/d010f38c-e5e5-482c-b3bc-73a7369b13d8?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a943606b-9d69-4d25-b4f7-373e080fa640?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:46:51.4464299+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"d010f38c-e5e5-482c-b3bc-73a7369b13d8\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T04:05:10.5934582+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"a943606b-9d69-4d25-b4f7-373e080fa640\"\r\n}" headers: cache-control: - no-cache @@ -2600,7 +2900,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:51:57 GMT + - Fri, 09 Apr 2021 04:06:10 GMT expires: - '-1' pragma: @@ -2617,7 +2917,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4187 + - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4119 status: code: 200 message: OK @@ -2629,20 +2929,20 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sig image-version create + - sig image-version update Connection: - keep-alive ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image + - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/d010f38c-e5e5-482c-b3bc-73a7369b13d8?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a943606b-9d69-4d25-b4f7-373e080fa640?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:46:51.4464299+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"d010f38c-e5e5-482c-b3bc-73a7369b13d8\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T04:05:10.5934582+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"a943606b-9d69-4d25-b4f7-373e080fa640\"\r\n}" headers: cache-control: - no-cache @@ -2651,7 +2951,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:52:58 GMT + - Fri, 09 Apr 2021 04:07:10 GMT expires: - '-1' pragma: @@ -2668,7 +2968,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4185 + - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4115 status: code: 200 message: OK @@ -2680,30 +2980,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sig image-version create + - sig image-version update Connection: - keep-alive ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image + - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/d010f38c-e5e5-482c-b3bc-73a7369b13d8?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a943606b-9d69-4d25-b4f7-373e080fa640?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:46:51.4464299+00:00\",\r\n \"endTime\": - \"2021-04-07T06:53:53.0253833+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"d010f38c-e5e5-482c-b3bc-73a7369b13d8\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T04:05:10.5934582+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"a943606b-9d69-4d25-b4f7-373e080fa640\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:53:59 GMT + - Fri, 09 Apr 2021 04:08:11 GMT expires: - '-1' pragma: @@ -2720,7 +3019,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4183 + - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4111 status: code: 200 message: OK @@ -2732,41 +3031,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sig image-version create + - sig image-version update Connection: - keep-alive ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image + - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a943606b-9d69-4d25-b4f7-373e080fa640?api-version=2020-09-30 response: body: - string: "{\r\n \"name\": \"1.1.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2\",\r\n - \ \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": - \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"publishingProfile\": - {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East - US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": - \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-07T06:46:51.4464299+00:00\",\r\n - \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": - {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n - \ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": - \"ReadWrite\",\r\n \"source\": {}\r\n },\r\n \"dataDiskImages\": - [\r\n {\r\n \"lun\": 0,\r\n \"sizeInGB\": 10,\r\n - \ \"hostCaching\": \"None\"\r\n }\r\n ]\r\n },\r\n - \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T04:05:10.5934582+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"a943606b-9d69-4d25-b4f7-373e080fa640\"\r\n}" headers: cache-control: - no-cache content-length: - - '1334' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:53:59 GMT + - Fri, 09 Apr 2021 04:09:12 GMT expires: - '-1' pragma: @@ -2783,7 +3070,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9997 + - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4107 status: code: 200 message: OK @@ -2791,79 +3078,50 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - sig image-version list + - sig image-version update Connection: - keep-alive ParameterSetName: - - -g --gallery-name --gallery-image-definition + - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions + --replica-count User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a943606b-9d69-4d25-b4f7-373e080fa640?api-version=2020-09-30 response: body: - string: '{"value":[{"name":"1.1.2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2","type":"Microsoft.Compute/galleries/images/versions","location":"eastus2","tags":{},"properties":{"publishingProfile":{"targetRegions":[{"name":"East - US 2","regionalReplicaCount":1,"storageAccountType":"Standard_LRS"}],"replicaCount":1,"excludeFromLatest":false,"publishedDate":"2021-04-07T06:46:51.4464299+00:00","storageAccountType":"Standard_LRS"},"storageProfile":{"source":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1"},"osDiskImage":{"sizeInGB":30,"hostCaching":"ReadWrite","source":{}},"dataDiskImages":[{"lun":0,"sizeInGB":10,"hostCaching":"None"}]},"provisioningState":"Succeeded"}}]}' + string: "{\r\n \"startTime\": \"2021-04-09T04:05:10.5934582+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"a943606b-9d69-4d25-b4f7-373e080fa640\"\r\n}" headers: cache-control: - no-cache content-length: - - '1011' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:54:01 GMT + - Fri, 09 Apr 2021 04:10:12 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: - nosniff - x-ms-original-request-ids: - - 759e9b16-32f6-4898-83e4-553cc85b6112 - - a0028a2e-a7b3-42eb-8f46-e4051e6368e1 - - 9a97d8f5-845f-415c-98d9-a67eaefdec5a - - ae740d05-77ba-4053-b7aa-ca4851a44ee4 - - 6441cd79-1e9e-422d-9d37-bce19f9fee17 - - f1f120ce-4d59-49c1-ab0f-1a3bcdda544a - - 780c94bf-536b-4a7d-97ac-4e3bf5574f19 - - 7c920cb9-0967-4d2d-b831-4ea3940ebcb6 - - ab7cafd7-890e-427e-a946-886344e9f721 - - a56b53cf-ace2-43f5-9f1d-6c17afcc6096 - - 58b53b00-d65d-456f-8dda-34f1a7c847b2 - - eec48aec-5b11-4984-8fc3-bac275aa4ee4 - - 79a029bf-5492-4e05-abfb-1cf971643693 - - ca361b3d-0b73-4a47-a30a-f326efb5bcb8 - - 7c1a85a5-1291-454f-b8cd-282608ebca13 - - 5fdcde48-b1a1-4712-8a36-2014315ea004 - - 1a84c0bc-2e6a-434c-a2fd-e5be86162435 - - 89039226-2974-4a64-a861-6323ad4e72be - - a5414573-18f4-456f-911b-02cc6cfc9830 - - a7ec42f8-11ef-4308-98ac-f08d1b6585c1 - - 6655e837-2182-46ed-94fb-3c5f2140e54b - - 0fe72043-a532-481a-b819-b2f0fd28d81e - - a1ec8830-ec4b-4e6d-8778-e02fd93acde2 - - 24b8bded-6d8f-4309-9180-f2dcfdaf2670 - - 29cd0112-5982-4d13-9155-4cb1b54ada34 - - 86e3838b-c4b8-4105-834b-23999d32bfd3 - - 30e43cae-93c2-4175-b235-32b41c613173 - - 08900ff9-3efa-4552-8ed4-3d5a547f6898 - - ad544ee0-a723-48e7-aebd-522c4f5fee02 - - 62a7de4d-7ac4-442a-b788-2880126564c5 - - f8d74445-ffd8-40ba-b955-12cd97011aff - - f4e15d67-75b6-473d-a6fb-3ce6af1534d4 - - 862a194e-f9c4-4fbd-a169-acf00aad4e05 - - 928d4f6a-2b46-4551-b7fd-10003ed0823b - - 71049401-5603-41c1-bba8-c876ec7771e3 - - 9ca3f2c2-d91c-493e-9313-85bdd8ae4391 + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4122 status: code: 200 message: OK @@ -2871,44 +3129,33 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - sig image-version show + - sig image-version update Connection: - keep-alive ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version + - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions + --replica-count User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a943606b-9d69-4d25-b4f7-373e080fa640?api-version=2020-09-30 response: body: - string: "{\r\n \"name\": \"1.1.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2\",\r\n - \ \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": - \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"publishingProfile\": - {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East - US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": - \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-07T06:46:51.4464299+00:00\",\r\n - \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": - {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n - \ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": - \"ReadWrite\",\r\n \"source\": {}\r\n },\r\n \"dataDiskImages\": - [\r\n {\r\n \"lun\": 0,\r\n \"sizeInGB\": 10,\r\n - \ \"hostCaching\": \"None\"\r\n }\r\n ]\r\n },\r\n - \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T04:05:10.5934582+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"a943606b-9d69-4d25-b4f7-373e080fa640\"\r\n}" headers: cache-control: - no-cache content-length: - - '1334' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:54:02 GMT + - Fri, 09 Apr 2021 04:11:14 GMT expires: - '-1' pragma: @@ -2925,7 +3172,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1998,Microsoft.Compute/GetGalleryImageVersion30Min;9996 + - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4118 status: code: 200 message: OK @@ -2933,7 +3180,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2946,32 +3193,20 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a943606b-9d69-4d25-b4f7-373e080fa640?api-version=2020-09-30 response: body: - string: "{\r\n \"name\": \"1.1.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2\",\r\n - \ \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": - \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"publishingProfile\": - {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East - US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": - \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-07T06:46:51.4464299+00:00\",\r\n - \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": - {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n - \ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": - \"ReadWrite\",\r\n \"source\": {}\r\n },\r\n \"dataDiskImages\": - [\r\n {\r\n \"lun\": 0,\r\n \"sizeInGB\": 10,\r\n - \ \"hostCaching\": \"None\"\r\n }\r\n ]\r\n },\r\n - \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T04:05:10.5934582+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"a943606b-9d69-4d25-b4f7-373e080fa640\"\r\n}" headers: cache-control: - no-cache content-length: - - '1334' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:54:03 GMT + - Fri, 09 Apr 2021 04:12:14 GMT expires: - '-1' pragma: @@ -2988,65 +3223,41 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1997,Microsoft.Compute/GetGalleryImageVersion30Min;9995 + - Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4116 status: code: 200 message: OK - request: - body: '{"location": "eastus2", "tags": {}, "properties": {"publishingProfile": - {"targetRegions": [{"name": "westus2", "regionalReplicaCount": 1}, {"name": - "eastus2"}], "replicaCount": 2, "excludeFromLatest": false, "storageAccountType": - "Standard_LRS"}, "storageProfile": {"osDiskImage": {"hostCaching": "ReadWrite"}, - "dataDiskImages": [{"hostCaching": "None", "lun": 0}]}}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - sig image-version update Connection: - keep-alive - Content-Length: - - '367' - Content-Type: - - application/json ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2019-12-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a943606b-9d69-4d25-b4f7-373e080fa640?api-version=2020-09-30 response: body: - string: "{\r\n \"name\": \"1.1.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2\",\r\n - \ \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": - \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"publishingProfile\": - {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West - US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": - \"Standard_LRS\"\r\n },\r\n {\r\n \"name\": \"East - US 2\",\r\n \"regionalReplicaCount\": 2,\r\n \"storageAccountType\": - \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 2,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-07T06:46:51.4464299+00:00\",\r\n - \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": - {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n - \ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": - \"ReadWrite\",\r\n \"source\": {}\r\n },\r\n \"dataDiskImages\": - [\r\n {\r\n \"lun\": 0,\r\n \"sizeInGB\": 10,\r\n - \ \"hostCaching\": \"None\"\r\n }\r\n ]\r\n },\r\n - \ \"provisioningState\": \"Updating\"\r\n }\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T04:05:10.5934582+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"a943606b-9d69-4d25-b4f7-373e080fa640\"\r\n}" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9aecd12f-8b4c-4964-9ca2-eea5919f7e59?api-version=2019-12-01 cache-control: - no-cache content-length: - - '1474' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:54:05 GMT + - Fri, 09 Apr 2021 04:13:15 GMT expires: - '-1' pragma: @@ -3063,9 +3274,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1198 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4112 status: code: 200 message: OK @@ -3086,11 +3295,11 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9aecd12f-8b4c-4964-9ca2-eea5919f7e59?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a943606b-9d69-4d25-b4f7-373e080fa640?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:54:05.6977975+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"9aecd12f-8b4c-4964-9ca2-eea5919f7e59\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T04:05:10.5934582+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"a943606b-9d69-4d25-b4f7-373e080fa640\"\r\n}" headers: cache-control: - no-cache @@ -3099,7 +3308,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:55:05 GMT + - Fri, 09 Apr 2021 04:14:16 GMT expires: - '-1' pragma: @@ -3116,7 +3325,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4181 + - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4108 status: code: 200 message: OK @@ -3137,11 +3346,11 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9aecd12f-8b4c-4964-9ca2-eea5919f7e59?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a943606b-9d69-4d25-b4f7-373e080fa640?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:54:05.6977975+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"9aecd12f-8b4c-4964-9ca2-eea5919f7e59\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T04:05:10.5934582+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"a943606b-9d69-4d25-b4f7-373e080fa640\"\r\n}" headers: cache-control: - no-cache @@ -3150,7 +3359,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:56:06 GMT + - Fri, 09 Apr 2021 04:15:17 GMT expires: - '-1' pragma: @@ -3167,7 +3376,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4179 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4114 status: code: 200 message: OK @@ -3188,11 +3397,11 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9aecd12f-8b4c-4964-9ca2-eea5919f7e59?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a943606b-9d69-4d25-b4f7-373e080fa640?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:54:05.6977975+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"9aecd12f-8b4c-4964-9ca2-eea5919f7e59\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T04:05:10.5934582+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"a943606b-9d69-4d25-b4f7-373e080fa640\"\r\n}" headers: cache-control: - no-cache @@ -3201,7 +3410,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:57:07 GMT + - Fri, 09 Apr 2021 04:16:17 GMT expires: - '-1' pragma: @@ -3218,7 +3427,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4177 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4110 status: code: 200 message: OK @@ -3239,11 +3448,11 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9aecd12f-8b4c-4964-9ca2-eea5919f7e59?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a943606b-9d69-4d25-b4f7-373e080fa640?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:54:05.6977975+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"9aecd12f-8b4c-4964-9ca2-eea5919f7e59\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T04:05:10.5934582+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"a943606b-9d69-4d25-b4f7-373e080fa640\"\r\n}" headers: cache-control: - no-cache @@ -3252,7 +3461,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:58:08 GMT + - Fri, 09 Apr 2021 04:17:19 GMT expires: - '-1' pragma: @@ -3269,7 +3478,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4175 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4106 status: code: 200 message: OK @@ -3290,11 +3499,11 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9aecd12f-8b4c-4964-9ca2-eea5919f7e59?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a943606b-9d69-4d25-b4f7-373e080fa640?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:54:05.6977975+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"9aecd12f-8b4c-4964-9ca2-eea5919f7e59\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T04:05:10.5934582+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"a943606b-9d69-4d25-b4f7-373e080fa640\"\r\n}" headers: cache-control: - no-cache @@ -3303,7 +3512,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:59:10 GMT + - Fri, 09 Apr 2021 04:18:20 GMT expires: - '-1' pragma: @@ -3320,7 +3529,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4173 + - Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4102 status: code: 200 message: OK @@ -3341,11 +3550,11 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9aecd12f-8b4c-4964-9ca2-eea5919f7e59?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a943606b-9d69-4d25-b4f7-373e080fa640?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:54:05.6977975+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"9aecd12f-8b4c-4964-9ca2-eea5919f7e59\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T04:05:10.5934582+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"a943606b-9d69-4d25-b4f7-373e080fa640\"\r\n}" headers: cache-control: - no-cache @@ -3354,7 +3563,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:00:09 GMT + - Fri, 09 Apr 2021 04:19:21 GMT expires: - '-1' pragma: @@ -3371,7 +3580,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4171 + - Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4098 status: code: 200 message: OK @@ -3392,11 +3601,11 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9aecd12f-8b4c-4964-9ca2-eea5919f7e59?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a943606b-9d69-4d25-b4f7-373e080fa640?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:54:05.6977975+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"9aecd12f-8b4c-4964-9ca2-eea5919f7e59\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T04:05:10.5934582+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"a943606b-9d69-4d25-b4f7-373e080fa640\"\r\n}" headers: cache-control: - no-cache @@ -3405,7 +3614,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:01:10 GMT + - Fri, 09 Apr 2021 04:20:21 GMT expires: - '-1' pragma: @@ -3422,7 +3631,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4169 + - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4110 status: code: 200 message: OK @@ -3443,12 +3652,12 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9aecd12f-8b4c-4964-9ca2-eea5919f7e59?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a943606b-9d69-4d25-b4f7-373e080fa640?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:54:05.6977975+00:00\",\r\n \"endTime\": - \"2021-04-07T07:01:51.4033659+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"9aecd12f-8b4c-4964-9ca2-eea5919f7e59\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T04:05:10.5934582+00:00\",\r\n \"endTime\": + \"2021-04-09T04:21:11.3662776+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"a943606b-9d69-4d25-b4f7-373e080fa640\"\r\n}" headers: cache-control: - no-cache @@ -3457,7 +3666,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:02:10 GMT + - Fri, 09 Apr 2021 04:21:22 GMT expires: - '-1' pragma: @@ -3474,7 +3683,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4167 + - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4106 status: code: 200 message: OK @@ -3495,7 +3704,7 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"1.1.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2\",\r\n @@ -3506,7 +3715,7 @@ interactions: \"Standard_LRS\"\r\n },\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 2,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 2,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-07T06:46:51.4464299+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-09T03:56:55.964542+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n \ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": @@ -3518,11 +3727,11 @@ interactions: cache-control: - no-cache content-length: - - '1475' + - '1474' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:02:11 GMT + - Fri, 09 Apr 2021 04:21:23 GMT expires: - '-1' pragma: @@ -3539,7 +3748,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9991 + - Microsoft.Compute/GetGalleryImageVersion3Min;1996,Microsoft.Compute/GetGalleryImageVersion30Min;9981 status: code: 200 message: OK @@ -3565,7 +3774,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3574,7 +3783,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:02:11 GMT + - Fri, 09 Apr 2021 04:21:24 GMT expires: - '-1' pragma: @@ -3619,19 +3828,19 @@ interactions: dataserviceversion: - 3.0; date: - - Wed, 07 Apr 2021 07:02:13 GMT + - Fri, 09 Apr 2021 04:21:25 GMT duration: - - '2617553' + - '2541753' expires: - '-1' ocp-aad-diagnostics-server-name: - - s4RB8PBNbTTcHJzI8Os4lW7TJzEwiTiMFJzJ0jOaQPg= + - QypjRbR/biRrN8hO+Pq+ED+MWdsXDtDE9XzIBm0jg8Q= ocp-aad-session-key: - - HCc89YK2uz_rHYzPIQJsyupev2UgSM6Pzm7-tJBUdb6AkGPOTnJ1l1WnZTXajaN66yy-6f7O3q-DWHRil8E2aYgFLn6qk8gnC-8w2UMixHLmcOPdsjyvh9Ti5itulDIZ.VULNimDooWnEw-QvLFdWCSDuGCe3Hc68VXVCMcLcVhE + - nRi_51L3J_KGqXoYtZ-xKSGhEtkOHeDcaXx59RXsq41OW3MLGr4TJRZtgvLhsgbwdHzOJ0LZhrMW6_ai4fScUeQBLaKAo1tohrfPKf3tCx5CCsZ7vITMpht8O7tgGght.EILewD5kZJotLzGw8B_xZwppO040glfcB7nAvQlZHbI pragma: - no-cache request-id: - - c31fdbc7-c10a-48c4-a7b0-3e639928204c + - 756939c4-ed24-4b53-bd92-cc07c6625f18 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -3687,7 +3896,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:02:23 GMT + - Fri, 09 Apr 2021 04:21:34 GMT expires: - '-1' pragma: @@ -3707,7 +3916,7 @@ interactions: x-ms-keyvault-service-version: - 1.1.286.0 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1196' x-powered-by: - ASP.NET status: @@ -3741,7 +3950,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:02:54 GMT + - Fri, 09 Apr 2021 04:22:04 GMT expires: - '-1' pragma: @@ -3797,7 +4006,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:02:56 GMT + - Fri, 09 Apr 2021 04:22:06 GMT expires: - '-1' pragma: @@ -3842,7 +4051,7 @@ interactions: uri: https://vault-000003.vault.azure.net/keys/key-000004/create?api-version=7.0 response: body: - string: '{"key":{"kid":"https://vault-000003.vault.azure.net/keys/key-000004/269964281e8f463b98ba38736747d863","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"yNnrj1iBxcqWyDVWhxhlLC6M6mLualznJszWf9g8IbWqemIs6v0iXoD1w_8KAnyl9FRMn02kWZEzIJvNsZogeg4c2Uxk7g8HHU52ufEMEtM6kxPpHJ4qJCaa4OGVkLDgMzKVAGZFzohTyOH2OOy4TODdQe2YspJTF42O4pycw67jqghhGswBUicM6IuMvDCHwbcitwpVrdOeqiarCh2Ircxnb-Z0TD6i3klgHcz1JJiLyJFjhwQy1Jv5sB7G9_m4m18ISanKCsZV5O19xNWx6wG9B8_f9g-pRkYtlgGPzKttTldxT8KY6mCWZcgecJvTK8XtNdU8cmiGPr6ohmkJbQ","e":"AQAB"},"attributes":{"enabled":true,"created":1617778977,"updated":1617778977,"recoveryLevel":"Recoverable"}}' + string: '{"key":{"kid":"https://vault-000003.vault.azure.net/keys/key-000004/c803d37b23b34abd8a3f23e51f43bbd4","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"7zvVJv-A-jjOb_48nAANvsMqlcofEI3yjIv87FLxBMamUtILIN_QJL6mEKHFpizFd_HbA4ifTlu7YSihxCuI6MW9s2CwbSwNBBlTyji2FqjWIsgE3NgwHTBUCS3ck-9BMUuv0t7_jWRERhCgZ-WyYuEgrsiYP-rxXV2q5dXJJACjirP7EHFn5RfINjkfy2Ru48vj5NWoVpMTdz-SI2cIde94nWpz-pM-aT99IJXYtzXTTMimNMIFAAKgnclni1ofrSM-73wPGELOIlmUsxPLdZBk-9IC3qSzGnNKUgIoo01rDg_jkmVmQlsAHW1TuHxq1UbGgkdak5FHi311ijoQqQ","e":"AQAB"},"attributes":{"enabled":true,"created":1617942127,"updated":1617942127,"recoveryLevel":"Recoverable"}}' headers: cache-control: - no-cache @@ -3851,7 +4060,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:02:57 GMT + - Fri, 09 Apr 2021 04:22:07 GMT expires: - '-1' pragma: @@ -3893,7 +4102,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3902,7 +4111,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:02:58 GMT + - Fri, 09 Apr 2021 04:22:08 GMT expires: - '-1' pragma: @@ -3919,7 +4128,7 @@ interactions: - request: body: '{"location": "eastus2", "identity": {"type": "SystemAssigned"}, "properties": {"activeKey": {"sourceVault": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003"}, - "keyUrl": "https://vault-000003.vault.azure.net/keys/key-000004/269964281e8f463b98ba38736747d863"}}}' + "keyUrl": "https://vault-000003.vault.azure.net/keys/key-000004/c803d37b23b34abd8a3f23e51f43bbd4"}}}' headers: Accept: - application/json @@ -3944,11 +4153,11 @@ interactions: string: "{\r\n \"location\": \"eastus2\",\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"activeKey\": {\r\n \ \"sourceVault\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003\"\r\n - \ },\r\n \"keyUrl\": \"https://vault-000003.vault.azure.net/keys/key-000004/269964281e8f463b98ba38736747d863\"\r\n + \ },\r\n \"keyUrl\": \"https://vault-000003.vault.azure.net/keys/key-000004/c803d37b23b34abd8a3f23e51f43bbd4\"\r\n \ },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/da482378-be52-49c3-acb9-2bfd6ff002a2?api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/627f3c9f-9c56-4bb4-af0a-deb155f8a553?api-version=2020-06-30 cache-control: - no-cache content-length: @@ -3956,11 +4165,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:03:09 GMT + - Fri, 09 Apr 2021 04:22:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/da482378-be52-49c3-acb9-2bfd6ff002a2?monitor=true&api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/627f3c9f-9c56-4bb4-af0a-deb155f8a553?monitor=true&api-version=2020-06-30 pragma: - no-cache server: @@ -3971,9 +4180,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostDiskEncryptionSet3Min;99,Microsoft.Compute/HighCostDiskEncryptionSet30Min;299 + - Microsoft.Compute/HighCostDiskEncryptionSet3Min;99,Microsoft.Compute/HighCostDiskEncryptionSet30Min;298 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -3993,22 +4202,22 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/da482378-be52-49c3-acb9-2bfd6ff002a2?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/627f3c9f-9c56-4bb4-af0a-deb155f8a553?api-version=2020-06-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T07:03:09.3427684+00:00\",\r\n \"endTime\": - \"2021-04-07T07:03:09.623984+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"properties\": {\r\n \"output\": {\"name\":\"des1-000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\",\"type\":\"Microsoft.Compute/diskEncryptionSets\",\"location\":\"eastus2\",\"identity\":{\"type\":\"SystemAssigned\",\"principalId\":\"2a9c914c-222b-4778-8d19-a52d90b7e339\",\"tenantId\":\"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"},\"properties\":{\"activeKey\":{\"sourceVault\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003\"},\"keyUrl\":\"https://vault-000003.vault.azure.net/keys/key-000004/269964281e8f463b98ba38736747d863\"},\"encryptionType\":\"EncryptionAtRestWithCustomerKey\",\"provisioningState\":\"Succeeded\"}}\r\n - \ },\r\n \"name\": \"da482378-be52-49c3-acb9-2bfd6ff002a2\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T04:22:15.9248356+00:00\",\r\n \"endTime\": + \"2021-04-09T04:22:15.9717095+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"properties\": {\r\n \"output\": {\"name\":\"des1-000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\",\"type\":\"Microsoft.Compute/diskEncryptionSets\",\"location\":\"eastus2\",\"identity\":{\"type\":\"SystemAssigned\",\"principalId\":\"7ad30645-6306-4bf9-9d64-85508ca79c9b\",\"tenantId\":\"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"},\"properties\":{\"activeKey\":{\"sourceVault\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003\"},\"keyUrl\":\"https://vault-000003.vault.azure.net/keys/key-000004/c803d37b23b34abd8a3f23e51f43bbd4\"},\"encryptionType\":\"EncryptionAtRestWithCustomerKey\",\"provisioningState\":\"Succeeded\"}}\r\n + \ },\r\n \"name\": \"627f3c9f-9c56-4bb4-af0a-deb155f8a553\"\r\n}" headers: cache-control: - no-cache content-length: - - '1130' + - '1131' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:03:39 GMT + - Fri, 09 Apr 2021 04:22:45 GMT expires: - '-1' pragma: @@ -4025,7 +4234,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49998,Microsoft.Compute/GetOperation30Min;399944 + - Microsoft.Compute/GetOperation3Min;49996,Microsoft.Compute/GetOperation30Min;399918 status: code: 200 message: OK @@ -4051,10 +4260,10 @@ interactions: string: "{\r\n \"name\": \"des1-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\",\r\n \ \"type\": \"Microsoft.Compute/diskEncryptionSets\",\r\n \"location\": \"eastus2\",\r\n \ \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": - \"2a9c914c-222b-4778-8d19-a52d90b7e339\",\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n + \"7ad30645-6306-4bf9-9d64-85508ca79c9b\",\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n \ },\r\n \"properties\": {\r\n \"activeKey\": {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003\"\r\n - \ },\r\n \"keyUrl\": \"https://vault-000003.vault.azure.net/keys/key-000004/269964281e8f463b98ba38736747d863\"\r\n + \ },\r\n \"keyUrl\": \"https://vault-000003.vault.azure.net/keys/key-000004/c803d37b23b34abd8a3f23e51f43bbd4\"\r\n \ },\r\n \"encryptionType\": \"EncryptionAtRestWithCustomerKey\",\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: @@ -4065,7 +4274,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:03:39 GMT + - Fri, 09 Apr 2021 04:22:45 GMT expires: - '-1' pragma: @@ -4082,7 +4291,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14996,Microsoft.Compute/LowCostGet30Min;119988 + - Microsoft.Compute/LowCostGet3Min;14993,Microsoft.Compute/LowCostGet30Min;119975 status: code: 200 message: OK @@ -4108,10 +4317,10 @@ interactions: string: "{\r\n \"name\": \"des1-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\",\r\n \ \"type\": \"Microsoft.Compute/diskEncryptionSets\",\r\n \"location\": \"eastus2\",\r\n \ \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": - \"2a9c914c-222b-4778-8d19-a52d90b7e339\",\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n + \"7ad30645-6306-4bf9-9d64-85508ca79c9b\",\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n \ },\r\n \"properties\": {\r\n \"activeKey\": {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003\"\r\n - \ },\r\n \"keyUrl\": \"https://vault-000003.vault.azure.net/keys/key-000004/269964281e8f463b98ba38736747d863\"\r\n + \ },\r\n \"keyUrl\": \"https://vault-000003.vault.azure.net/keys/key-000004/c803d37b23b34abd8a3f23e51f43bbd4\"\r\n \ },\r\n \"encryptionType\": \"EncryptionAtRestWithCustomerKey\",\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: @@ -4122,7 +4331,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:03:40 GMT + - Fri, 09 Apr 2021 04:22:47 GMT expires: - '-1' pragma: @@ -4139,7 +4348,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14995,Microsoft.Compute/LowCostGet30Min;119987 + - Microsoft.Compute/LowCostGet3Min;14992,Microsoft.Compute/LowCostGet30Min;119974 status: code: 200 message: OK @@ -4162,16 +4371,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azps-test-group/providers/Microsoft.KeyVault/vaults/azps-test-kv2","name":"azps-test-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azps-test-group/providers/Microsoft.KeyVault/vaults/azps-test-kv4","name":"azps-test-kv4","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003","name":"vault-000003","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault1569","name":"vault1569","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.KeyVault/vaults/cli-sni-kv","name":"cli-sni-kv","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.KeyVault/vaults/ase-testdevice-020dc7b13","name":"ase-testdevice-020dc7b13","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{"dbe-resource":"testdevice"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.KeyVault/vaults/ase-ysgatewayd-e2960da93","name":"ase-ysgatewayd-e2960da93","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{"dbe-resource":"ysgatewaydevice"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azps-test-group/providers/Microsoft.KeyVault/vaults/azps-test-kv2","name":"azps-test-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azps-test-group/providers/Microsoft.KeyVault/vaults/azps-test-kv4","name":"azps-test-kv4","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_key_vault_key_urigk6zbmvpwndot4l2vqbg3jt2isvlqcuwlh542qwq/providers/Microsoft.KeyVault/vaults/clikcofxlhinqs5","name":"clikcofxlhinqs5","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_key_vault_key_urieolla4mizpsg4zn3jxdetwdrtyn6orfoar7axhii/providers/Microsoft.KeyVault/vaults/clibe4b26od6g3b","name":"clibe4b26od6g3b","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003","name":"vault-000003","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault1569","name":"vault1569","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.KeyVault/vaults/cli-sni-kv","name":"cli-sni-kv","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.KeyVault/vaults/ase-testdevice-020dc7b13","name":"ase-testdevice-020dc7b13","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{"dbe-resource":"testdevice"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.KeyVault/vaults/ase-ysgatewayd-e2960da93","name":"ase-ysgatewayd-e2960da93","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{"dbe-resource":"ysgatewaydevice"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.KeyVault/vaults/ysvault","name":"ysvault","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}}]}' headers: cache-control: - no-cache content-length: - - '1778' + - '2578' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:03:41 GMT + - Fri, 09 Apr 2021 04:22:47 GMT expires: - '-1' pragma: @@ -4213,7 +4422,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:03:43 GMT + - Fri, 09 Apr 2021 04:22:49 GMT expires: - '-1' pragma: @@ -4247,8 +4456,8 @@ interactions: "import", "update", "managecontacts", "getissuers", "listissuers", "setissuers", "deleteissuers", "manageissuers", "recover"], "storage": ["get", "list", "delete", "set", "update", "regeneratekey", "setsas", "listsas", "getsas", "deletesas"]}}, - {"tenantId": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", "objectId": "2a9c914c-222b-4778-8d19-a52d90b7e339", - "permissions": {"keys": ["get", "unwrapKey", "wrapKey"]}}], "vaultUri": "https://vault-000003.vault.azure.net/", + {"tenantId": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", "objectId": "7ad30645-6306-4bf9-9d64-85508ca79c9b", + "permissions": {"keys": ["wrapKey", "unwrapKey", "get"]}}], "vaultUri": "https://vault-000003.vault.azure.net/", "enabledForDeployment": false, "enableSoftDelete": true, "softDeleteRetentionInDays": 90, "enablePurgeProtection": true}}' headers: @@ -4272,7 +4481,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003?api-version=2019-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003","name":"vault-000003","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"181c08fa-7ac8-48a6-a869-342ab74566a4","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}},{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"2a9c914c-222b-4778-8d19-a52d90b7e339","permissions":{"keys":["get","unwrapKey","wrapKey"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://vault-000003.vault.azure.net/","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003","name":"vault-000003","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"181c08fa-7ac8-48a6-a869-342ab74566a4","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}},{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"7ad30645-6306-4bf9-9d64-85508ca79c9b","permissions":{"keys":["wrapKey","unwrapKey","get"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://vault-000003.vault.azure.net/","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -4281,7 +4490,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:03:44 GMT + - Fri, 09 Apr 2021 04:22:50 GMT expires: - '-1' pragma: @@ -4301,7 +4510,7 @@ interactions: x-ms-keyvault-service-version: - 1.1.286.0 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' x-powered-by: - ASP.NET status: @@ -4339,7 +4548,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:03:59 GMT + - Fri, 09 Apr 2021 04:23:06 GMT expires: - '-1' pragma: @@ -4376,7 +4585,7 @@ interactions: accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%272a9c914c-222b-4778-8d19-a52d90b7e339%27%29&api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%277ad30645-6306-4bf9-9d64-85508ca79c9b%27%29&api-version=1.6 response: body: string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[]}' @@ -4392,19 +4601,19 @@ interactions: dataserviceversion: - 3.0; date: - - Wed, 07 Apr 2021 07:03:59 GMT + - Fri, 09 Apr 2021 04:23:06 GMT duration: - - '2411684' + - '2314671' expires: - '-1' ocp-aad-diagnostics-server-name: - - Clwwl5g6dVflYgROwtW0iQqsMQeG93obl8ut0Py8MVc= + - FJzgbVq1lp5pqHkyPOKePObo1/uZdNLmTZ5DIf1YeLA= ocp-aad-session-key: - - WrkPR8YJnBCXxCZ78cdNG-1JrFu6nILcuJyMde8uptPpHn0C1O171lVMzSnIHPI5oVvbcbtxPJb0vSSNMnusYDD6VfvXyqDRl1PCxxcAoTQBRpse8ssTjVVuIDaNALf2.oipbuQAW5gkN2K78M5qkSYB0zqMP3LYPalkiBcri3Vc + - QLJUpEM3FKkckUJkQCQTjghxYiTWEkXbTIpP_-CFia6D6YQtX-4jAlIV11pjtqd0XLAgl1NEJ6in-lcIJeGSjnbYMl7Ucnv6NE1po4LxSpD91Na-SYT8_1dCdN7ZDUMq.obfHRvBeHws_UCr29ouJ3IbmzjCCtwNQQKuCOZ4qX68 pragma: - no-cache request-id: - - e06a7574-d2e8-4664-a95e-2047219617b2 + - 2727be58-c4c0-4039-b5a4-9ac6555113a3 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -4419,7 +4628,7 @@ interactions: code: 200 message: OK - request: - body: '{"objectIds": ["2a9c914c-222b-4778-8d19-a52d90b7e339"], "includeDirectoryObjectReferences": + body: '{"objectIds": ["7ad30645-6306-4bf9-9d64-85508ca79c9b"], "includeDirectoryObjectReferences": true}' headers: Accept: @@ -4445,7 +4654,7 @@ interactions: uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/getObjectsByObjectIds?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"2a9c914c-222b-4778-8d19-a52d90b7e339","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005"],"appDisplayName":null,"appId":"2448e7b5-9a7c-42e3-8d25-c0bdedeb9cd2","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"des1-000005","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"A32C27C873B2344DDE04000B181644B828C0EA09","endDate":"2021-07-06T06:58:00Z","keyId":"dc7aed0b-cf85-4dff-b5ca-4d97e5e55872","startDate":"2021-04-07T06:58:00Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["2448e7b5-9a7c-42e3-8d25-c0bdedeb9cd2","https://identity.azure.net/c7gjJS64c76CBpxAFn8/ZXmVtvQLqGWMbDjBsSyi2pQ="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null}]}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"7ad30645-6306-4bf9-9d64-85508ca79c9b","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005"],"appDisplayName":null,"appId":"36e578b5-9efe-44e9-b403-5d857ee28cfe","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"des1-000005","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"DD57F37986F619B27252D3FF125C85E902C6479D","endDate":"2021-07-08T04:17:00Z","keyId":"2867abeb-9640-49a0-a00c-f68891c7808f","startDate":"2021-04-09T04:17:00Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["36e578b5-9efe-44e9-b403-5d857ee28cfe","https://identity.azure.net/hh4DTJlF1ixYO/MLKskF8xi0byRkm9PJL22RztSFDLQ="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' @@ -4458,19 +4667,19 @@ interactions: dataserviceversion: - 3.0; date: - - Wed, 07 Apr 2021 07:04:00 GMT + - Fri, 09 Apr 2021 04:23:08 GMT duration: - - '2925259' + - '4472399' expires: - '-1' ocp-aad-diagnostics-server-name: - - H3X5sLRnXeUZ2cVanDQ0qGcMuY5hagKQ/L4JABuVF7w= + - WgfjI/glOSzLpXiEbpyROH7VqmPfuY/iqs7yZLx5HGM= ocp-aad-session-key: - - U2oKahJ8IZ6J090o-UZ1QNhjJNWwzk-67WrUIXRLmZY02N-Pw1NCD1SN8vikSQ6hFpuMl1FuxMvB6kI06bHEMy2UksQYRmhkwAVucjzP_bartjJyRqgSpww_K0W1c5Qe.gItxg_r7CLPsj2SPUvN_H9K0jQfpDlBUYa0x0IOdqMU + - 2W6UrTlqQ_ysfotZ4EDV3_I-OlzlBPE7wzKq4A3912uN0w9xOkLBaEkGZN7eAawFOSV-ykER-4O6mLM7Whm_ofwFzWy99ZltdYdgSKUp5Q-cF63RImrGPxy_viLyKqll.KTLg2DVi7JVrkIXNs7yJ_V8nnRoErcxIR6ALzN8rZ_Q pragma: - no-cache request-id: - - 0718f844-959b-4cf1-bc8a-271a386f6daf + - bacf117c-4599-4aa2-98c1-647c748c3c3d strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -4486,7 +4695,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7", - "principalId": "2a9c914c-222b-4778-8d19-a52d90b7e339"}}' + "principalId": "7ad30645-6306-4bf9-9d64-85508ca79c9b"}}' headers: Accept: - application/json @@ -4513,7 +4722,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"2a9c914c-222b-4778-8d19-a52d90b7e339","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T07:04:01.5313174Z","updatedOn":"2021-04-07T07:04:01.9213195Z","createdBy":null,"updatedBy":"181c08fa-7ac8-48a6-a869-342ab74566a4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"7ad30645-6306-4bf9-9d64-85508ca79c9b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003","condition":null,"conditionVersion":null,"createdOn":"2021-04-09T04:23:08.6010246Z","updatedOn":"2021-04-09T04:23:09.3191848Z","createdBy":null,"updatedBy":"181c08fa-7ac8-48a6-a869-342ab74566a4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' headers: cache-control: - no-cache @@ -4522,7 +4731,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:04:04 GMT + - Fri, 09 Apr 2021 04:23:13 GMT expires: - '-1' pragma: @@ -4561,7 +4770,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -4570,7 +4779,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:04:20 GMT + - Fri, 09 Apr 2021 04:23:29 GMT expires: - '-1' pragma: @@ -4609,7 +4818,7 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"1.1.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3\",\r\n @@ -4623,13 +4832,13 @@ interactions: \ \"lun\": 0,\r\n \"diskEncryptionSetId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\"\r\n \ }\r\n ]\r\n }\r\n }\r\n ],\r\n \ \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": - \"2021-04-07T07:04:26.4249419+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n + \"2021-04-09T04:23:34.5594995+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n \ },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n \ }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e17a9e66-74e3-4fbe-9d0b-eb3299436dbc?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e5bb887c-4f93-4f73-8669-96c2d3948c6b?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -4637,7 +4846,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:04:27 GMT + - Fri, 09 Apr 2021 04:23:35 GMT expires: - '-1' pragma: @@ -4650,7 +4859,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1197 + - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1196 x-ms-ratelimit-remaining-subscription-writes: - '1197' status: @@ -4673,11 +4882,113 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e17a9e66-74e3-4fbe-9d0b-eb3299436dbc?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e5bb887c-4f93-4f73-8669-96c2d3948c6b?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-04-09T04:23:34.5438627+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e5bb887c-4f93-4f73-8669-96c2d3948c6b\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 04:24:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4097 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions + --target-region-encryption --managed-image --replica-count + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e5bb887c-4f93-4f73-8669-96c2d3948c6b?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-04-09T04:23:34.5438627+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e5bb887c-4f93-4f73-8669-96c2d3948c6b\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 04:25:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4109 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions + --target-region-encryption --managed-image --replica-count + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e5bb887c-4f93-4f73-8669-96c2d3948c6b?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T07:04:26.4249419+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"e17a9e66-74e3-4fbe-9d0b-eb3299436dbc\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T04:23:34.5438627+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e5bb887c-4f93-4f73-8669-96c2d3948c6b\"\r\n}" headers: cache-control: - no-cache @@ -4686,7 +4997,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:05:28 GMT + - Fri, 09 Apr 2021 04:26:38 GMT expires: - '-1' pragma: @@ -4703,7 +5014,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4168 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4104 status: code: 200 message: OK @@ -4724,11 +5035,11 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e17a9e66-74e3-4fbe-9d0b-eb3299436dbc?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e5bb887c-4f93-4f73-8669-96c2d3948c6b?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T07:04:26.4249419+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"e17a9e66-74e3-4fbe-9d0b-eb3299436dbc\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T04:23:34.5438627+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e5bb887c-4f93-4f73-8669-96c2d3948c6b\"\r\n}" headers: cache-control: - no-cache @@ -4737,7 +5048,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:06:29 GMT + - Fri, 09 Apr 2021 04:27:39 GMT expires: - '-1' pragma: @@ -4754,7 +5065,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4167 + - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4102 status: code: 200 message: OK @@ -4775,11 +5086,11 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e17a9e66-74e3-4fbe-9d0b-eb3299436dbc?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e5bb887c-4f93-4f73-8669-96c2d3948c6b?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T07:04:26.4249419+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"e17a9e66-74e3-4fbe-9d0b-eb3299436dbc\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T04:23:34.5438627+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e5bb887c-4f93-4f73-8669-96c2d3948c6b\"\r\n}" headers: cache-control: - no-cache @@ -4788,7 +5099,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:07:28 GMT + - Fri, 09 Apr 2021 04:28:39 GMT expires: - '-1' pragma: @@ -4805,7 +5116,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4165 + - Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4100 status: code: 200 message: OK @@ -4826,11 +5137,11 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e17a9e66-74e3-4fbe-9d0b-eb3299436dbc?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e5bb887c-4f93-4f73-8669-96c2d3948c6b?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T07:04:26.4249419+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"e17a9e66-74e3-4fbe-9d0b-eb3299436dbc\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T04:23:34.5438627+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e5bb887c-4f93-4f73-8669-96c2d3948c6b\"\r\n}" headers: cache-control: - no-cache @@ -4839,7 +5150,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:08:30 GMT + - Fri, 09 Apr 2021 04:29:40 GMT expires: - '-1' pragma: @@ -4856,7 +5167,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4163 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4098 status: code: 200 message: OK @@ -4877,11 +5188,11 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e17a9e66-74e3-4fbe-9d0b-eb3299436dbc?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e5bb887c-4f93-4f73-8669-96c2d3948c6b?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T07:04:26.4249419+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"e17a9e66-74e3-4fbe-9d0b-eb3299436dbc\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T04:23:34.5438627+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e5bb887c-4f93-4f73-8669-96c2d3948c6b\"\r\n}" headers: cache-control: - no-cache @@ -4890,7 +5201,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:09:31 GMT + - Fri, 09 Apr 2021 04:30:40 GMT expires: - '-1' pragma: @@ -4907,7 +5218,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4161 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4116 status: code: 200 message: OK @@ -4928,11 +5239,11 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e17a9e66-74e3-4fbe-9d0b-eb3299436dbc?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e5bb887c-4f93-4f73-8669-96c2d3948c6b?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T07:04:26.4249419+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"e17a9e66-74e3-4fbe-9d0b-eb3299436dbc\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T04:23:34.5438627+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e5bb887c-4f93-4f73-8669-96c2d3948c6b\"\r\n}" headers: cache-control: - no-cache @@ -4941,7 +5252,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:10:32 GMT + - Fri, 09 Apr 2021 04:31:41 GMT expires: - '-1' pragma: @@ -4958,7 +5269,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4159 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4114 status: code: 200 message: OK @@ -4979,12 +5290,12 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e17a9e66-74e3-4fbe-9d0b-eb3299436dbc?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e5bb887c-4f93-4f73-8669-96c2d3948c6b?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T07:04:26.4249419+00:00\",\r\n \"endTime\": - \"2021-04-07T07:11:12.3002888+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"e17a9e66-74e3-4fbe-9d0b-eb3299436dbc\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T04:23:34.5438627+00:00\",\r\n \"endTime\": + \"2021-04-09T04:31:53.3394369+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"e5bb887c-4f93-4f73-8669-96c2d3948c6b\"\r\n}" headers: cache-control: - no-cache @@ -4993,7 +5304,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:11:33 GMT + - Fri, 09 Apr 2021 04:32:42 GMT expires: - '-1' pragma: @@ -5010,7 +5321,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4157 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4112 status: code: 200 message: OK @@ -5031,7 +5342,7 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"1.1.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3\",\r\n @@ -5045,7 +5356,7 @@ interactions: \ \"lun\": 0,\r\n \"diskEncryptionSetId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\"\r\n \ }\r\n ]\r\n }\r\n }\r\n ],\r\n \ \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": - \"2021-04-07T07:04:26.4249419+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n + \"2021-04-09T04:23:34.5594995+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n \ },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n \ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": @@ -5061,7 +5372,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:11:33 GMT + - Fri, 09 Apr 2021 04:32:42 GMT expires: - '-1' pragma: @@ -5078,7 +5389,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9984 + - Microsoft.Compute/GetGalleryImageVersion3Min;1989,Microsoft.Compute/GetGalleryImageVersion30Min;9963 status: code: 200 message: OK @@ -5104,7 +5415,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -5113,7 +5424,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:11:34 GMT + - Fri, 09 Apr 2021 04:32:44 GMT expires: - '-1' pragma: @@ -5161,7 +5472,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:11:35 GMT + - Fri, 09 Apr 2021 04:32:43 GMT expires: - '-1' pragma: @@ -5178,7 +5489,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;599,Microsoft.Compute/GetGalleryImage30Min;2992 + - Microsoft.Compute/GetGalleryImage3Min;599,Microsoft.Compute/GetGalleryImage30Min;2995 status: code: 200 message: OK @@ -5198,22 +5509,22 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions?api-version=2020-09-30 response: body: string: '{"value":[{"name":"1.1.2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2","type":"Microsoft.Compute/galleries/images/versions","location":"eastus2","tags":{},"properties":{"publishingProfile":{"targetRegions":[{"name":"West US 2","regionalReplicaCount":1,"storageAccountType":"Standard_LRS"},{"name":"East - US 2","regionalReplicaCount":2,"storageAccountType":"Standard_LRS"}],"replicaCount":2,"excludeFromLatest":false,"publishedDate":"2021-04-07T06:46:51.4464299+00:00","storageAccountType":"Standard_LRS"},"storageProfile":{"source":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1"},"osDiskImage":{"sizeInGB":30,"hostCaching":"ReadWrite","source":{}},"dataDiskImages":[{"lun":0,"sizeInGB":10,"hostCaching":"None"}]},"provisioningState":"Succeeded"}},{"name":"1.1.3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3","type":"Microsoft.Compute/galleries/images/versions","location":"eastus2","tags":{},"properties":{"publishingProfile":{"targetRegions":[{"name":"East - US 2","regionalReplicaCount":1,"storageAccountType":"Standard_LRS","encryption":{"osDiskImage":{"diskEncryptionSetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005"},"dataDiskImages":[{"lun":0,"diskEncryptionSetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005"}]}}],"replicaCount":1,"excludeFromLatest":false,"publishedDate":"2021-04-07T07:04:26.4249419+00:00","storageAccountType":"Standard_LRS"},"storageProfile":{"source":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1"},"osDiskImage":{"sizeInGB":30,"hostCaching":"ReadWrite","source":{}},"dataDiskImages":[{"lun":0,"sizeInGB":10,"hostCaching":"None"}]},"provisioningState":"Succeeded"}}]}' + US 2","regionalReplicaCount":2,"storageAccountType":"Standard_LRS"}],"replicaCount":2,"excludeFromLatest":false,"publishedDate":"2021-04-09T03:56:55.964542+00:00","storageAccountType":"Standard_LRS"},"storageProfile":{"source":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1"},"osDiskImage":{"sizeInGB":30,"hostCaching":"ReadWrite","source":{}},"dataDiskImages":[{"lun":0,"sizeInGB":10,"hostCaching":"None"}]},"provisioningState":"Succeeded"}},{"name":"1.1.3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3","type":"Microsoft.Compute/galleries/images/versions","location":"eastus2","tags":{},"properties":{"publishingProfile":{"targetRegions":[{"name":"East + US 2","regionalReplicaCount":1,"storageAccountType":"Standard_LRS","encryption":{"osDiskImage":{"diskEncryptionSetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005"},"dataDiskImages":[{"lun":0,"diskEncryptionSetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005"}]}}],"replicaCount":1,"excludeFromLatest":false,"publishedDate":"2021-04-09T04:23:34.5594995+00:00","storageAccountType":"Standard_LRS"},"storageProfile":{"source":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1"},"osDiskImage":{"sizeInGB":30,"hostCaching":"ReadWrite","source":{}},"dataDiskImages":[{"lun":0,"sizeInGB":10,"hostCaching":"None"}]},"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '2623' + - '2622' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:11:37 GMT + - Fri, 09 Apr 2021 04:32:44 GMT expires: - '-1' pragma: @@ -5225,42 +5536,42 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 6bf137f2-6c90-4bec-8f1c-f12a5e87a0ad - - b4ec8cba-d429-4ef3-bd22-1e624b3ee69b - - d188bc53-59b5-4978-8c09-9265aab91cbc - - 46f7a9dc-9d35-435b-b646-46feeebef6c2 - - 5234704a-dafd-42e4-b2ba-8838a4890a3f - - a913aacf-3b33-46d9-a66c-d6477f5e27da - - 775dc7f1-2da2-439e-a9cd-d056556dfae1 - - da262543-92fd-46ee-8417-709bfbbbdb1c - - 32dba703-ee9d-43da-99c2-cec5b0b79a7e - - 567539c6-3ab1-40f4-828b-8a328d8b5de8 - - de1edae7-2296-4190-950d-ec703ebea847 - - f97692a9-49c7-490d-88b3-f97f9063ee3d - - becc7d89-b22c-4fc6-8e25-ccba7fb110b9 - - 968efc40-a96a-45b0-8bce-2f759f230d24 - - 9534735a-13ae-4e3f-ae6d-5dfd21925e33 - - 3fcc3842-3fb3-43b1-9998-8c83535b8fa8 - - a60d3992-d67a-42de-acb0-c111c7eaf40e - - 3798d339-195e-47da-827b-38658c12cead - - 86e0a5ef-ca3c-44d5-bcee-609204ed4948 - - 3d1fb484-ccf8-4a13-bfcc-d9612f476a88 - - 40bdb86c-c8f6-40b7-a9a8-3f743a107e54 - - 0d705aee-52e1-4ae4-9a09-146f89060ebb - - a4c828cc-c758-429e-b6b0-e9e09a4db0d5 - - ec8f46f5-4f03-4763-8bf5-bab448d99331 - - 0874e590-69de-4078-9f79-bca569197706 - - 6f9eaf53-6220-4433-85d8-661fb94eb965 - - e08f1e46-aaa8-40c1-aab0-0f84ebb3e668 - - 79c70fd4-744f-4b9c-a53a-40aac7c0ba95 - - 414acd46-6e33-4c3b-9f17-46a8cee575f3 - - 0571792a-6f87-417a-a252-3e53d8e04c7a - - 1daf36b8-c8b9-4ce7-94b6-42ee02c358a7 - - 925ff328-16ef-4a06-a39f-b9ae28cd55ee - - 67042f2f-39d8-461f-87fd-8814b7f4e3e3 - - 26874701-ad1b-4cba-8247-20c87a1dd4ab - - 1813beb8-689b-4c0d-8288-55af0675df76 - - cf7f7f10-cf25-422e-aead-f3ac3a6ab066 + - a7cc27c7-f35e-42af-8eef-83cf87d82794 + - 5c3fc891-c325-474d-8661-c5dc257774b1 + - 81daafcd-b3e4-476a-83e1-4bd4393d64a8 + - e1a4b385-80d9-4029-bfa8-bdbd3657ff1e + - 12d653d2-9153-405e-94f1-480687e76f88 + - 0a98945e-ee4e-43a5-ad2a-70255ef64afc + - 5fdc26a8-ba29-4c1d-bfaa-0a5ff98739cf + - 39d6def4-3efa-45a2-9e79-1b84406fb383 + - 01adcf40-7c84-46d4-a1b9-bd4da8a2dfa1 + - 348bda0e-0d55-4460-a0e3-e0e60ceb2a10 + - 9f735d0b-b98a-4dac-a577-a11f2104e091 + - 4776ea6a-f1c0-4ea8-87bf-9d2656ee0b24 + - 1f1e979a-c2ac-4cd0-a218-c47c3a6a527c + - c9297af7-4fac-4d31-9d2f-6507c20dda11 + - a2454f85-ee20-46c1-9f4e-88eada04b04e + - d720fd59-e10d-40db-bdcb-6090ba36a9a0 + - 74306a88-10ba-40f2-b6e1-7f9a70723c4e + - ea7d8875-2e76-407e-9c54-e8fc1acfaf5a + - f14d2ed3-2b70-4129-9758-5b478fc4f99a + - 36b9f110-20de-43d5-8f36-d7a78ff52f8d + - 5dc17859-291d-4d67-a05a-b95278772fe5 + - fa0b29e2-098a-4130-86cb-c4c5bf39988e + - 15b029cc-0d72-4478-b96f-aa51d8b49d06 + - c77267f4-13f8-4102-96c3-77e9544f3513 + - 25c046ba-6413-49b0-9191-384c6b718e65 + - c572d6eb-f9f8-4698-ac27-b6a91f49018c + - aefb2752-3c5d-4801-ad50-2f1670ba643b + - f85b55df-1ae5-4282-90d5-82c46682a836 + - 591a2dfd-fe5a-4bdf-a02c-6ee94cd287cc + - 8f7c945b-acbe-4aa5-a689-d7b9e5aaebbf + - 6d2bd1b3-2183-4772-9aa5-4d8c63d76276 + - 645e7345-a84e-4609-bd9f-beb0607e4e4e + - 2d13cd15-df12-445b-8c95-6e936e28f9fb + - f2bb01fb-869f-48fb-9dc7-11f8077b3ed9 + - fa0980b5-352e-455d-a9c1-16a77aeaaa3e + - cc240417-3ebd-416c-943b-dda10b52cb36 status: code: 200 message: OK @@ -5285,14 +5596,14 @@ interactions: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vm1VNET\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\r\n - \ \"etag\": \"W/\\\"b9408703-5d69-423d-93ca-30492b88ac48\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"07fa92bf-024a-40ba-a48f-fed87e30d7eb\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"fa192f41-3cb5-486d-87c8-161844491001\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"b2521440-7019-47f5-8a3e-f051916d48c9\",\r\n \ \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n \ ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"vm1Subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\r\n - \ \"etag\": \"W/\\\"b9408703-5d69-423d-93ca-30492b88ac48\\\"\",\r\n + \ \"etag\": \"W/\\\"07fa92bf-024a-40ba-a48f-fed87e30d7eb\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n @@ -5308,7 +5619,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:11:37 GMT + - Fri, 09 Apr 2021 04:32:45 GMT expires: - '-1' pragma: @@ -5325,7 +5636,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7b766ed7-c978-48d3-bfe6-fe577f7286cb + - 3dbfc2b8-d6d4-41bd-a391-d6cee241a875 status: code: 200 message: OK @@ -5381,18 +5692,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_I9UPqJDfiQN4NQfBRwkvUbMmTZQtm4hi","name":"vm_deploy_I9UPqJDfiQN4NQfBRwkvUbMmTZQtm4hi","type":"Microsoft.Resources/deployments","properties":{"templateHash":"18070468837859714863","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-07T07:11:43.0808925Z","duration":"PT2.7259495S","correlationId":"eee2f147-c046-4f53-840d-6d4b3fd44f44","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmFromImageNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmFromImagePublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vmFromImage"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_PoL0elAut6jRxLjUanlRbULVAEycBBsK","name":"vm_deploy_PoL0elAut6jRxLjUanlRbULVAEycBBsK","type":"Microsoft.Resources/deployments","properties":{"templateHash":"2325148164401617493","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-09T04:32:53.8309236Z","duration":"PT2.7871929S","correlationId":"da41da39-8a5e-4480-b368-5a48b5357068","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmFromImageNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmFromImagePublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vmFromImage"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_I9UPqJDfiQN4NQfBRwkvUbMmTZQtm4hi/operationStatuses/08585838273851226843?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_PoL0elAut6jRxLjUanlRbULVAEycBBsK/operationStatuses/08585836641144338990?api-version=2020-10-01 cache-control: - no-cache content-length: - - '2489' + - '2488' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:11:44 GMT + - Fri, 09 Apr 2021 04:32:55 GMT expires: - '-1' pragma: @@ -5402,7 +5713,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 201 message: Created @@ -5423,7 +5734,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585838273851226843?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836641144338990?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -5435,7 +5746,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:12:15 GMT + - Fri, 09 Apr 2021 04:33:26 GMT expires: - '-1' pragma: @@ -5466,7 +5777,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585838273851226843?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836641144338990?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -5478,7 +5789,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:12:45 GMT + - Fri, 09 Apr 2021 04:33:56 GMT expires: - '-1' pragma: @@ -5509,7 +5820,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585838273851226843?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836641144338990?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -5521,7 +5832,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:13:16 GMT + - Fri, 09 Apr 2021 04:34:27 GMT expires: - '-1' pragma: @@ -5555,16 +5866,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_I9UPqJDfiQN4NQfBRwkvUbMmTZQtm4hi","name":"vm_deploy_I9UPqJDfiQN4NQfBRwkvUbMmTZQtm4hi","type":"Microsoft.Resources/deployments","properties":{"templateHash":"18070468837859714863","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-07T07:12:52.164909Z","duration":"PT1M11.809966S","correlationId":"eee2f147-c046-4f53-840d-6d4b3fd44f44","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmFromImageNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmFromImagePublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vmFromImage"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_PoL0elAut6jRxLjUanlRbULVAEycBBsK","name":"vm_deploy_PoL0elAut6jRxLjUanlRbULVAEycBBsK","type":"Microsoft.Resources/deployments","properties":{"templateHash":"2325148164401617493","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-09T04:34:04.9959032Z","duration":"PT1M13.9521725S","correlationId":"da41da39-8a5e-4480-b368-5a48b5357068","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmFromImageNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmFromImagePublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vmFromImage"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"}]}}' headers: cache-control: - no-cache content-length: - - '3382' + - '3383' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:13:16 GMT + - Fri, 09 Apr 2021 04:34:28 GMT expires: - '-1' pragma: @@ -5599,24 +5910,24 @@ interactions: body: string: "{\r\n \"name\": \"vmFromImage\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"8e59d54f-80b1-48e9-8a36-eaa92bd76858\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"533b6c19-767f-4043-929d-db308daefbbf\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1\",\r\n \ \"exactVersion\": \"1.1.3\"\r\n },\r\n \"osDisk\": {\r\n - \ \"osType\": \"Linux\",\r\n \"name\": \"vmFromImage_OsDisk_1_3928c1b74ef74e0bab68715f45e0488e\",\r\n + \ \"osType\": \"Linux\",\r\n \"name\": \"vmFromImage_OsDisk_1_204bbf72edcb4f029e24c22c06b01141\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"diskEncryptionSet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\"\r\n \ },\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_3928c1b74ef74e0bab68715f45e0488e\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_204bbf72edcb4f029e24c22c06b01141\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": - [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vmFromImage_lun_0_2_101b54b6630445b6b9c76b6674048977\",\r\n + [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vmFromImage_lun_0_2_84f6587928b84cbf9484e2eb5f2a5612\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \ \"managedDisk\": {\r\n \"diskEncryptionSet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\"\r\n \ },\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vmFromImage_lun_0_2_101b54b6630445b6b9c76b6674048977\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vmFromImage_lun_0_2_84f6587928b84cbf9484e2eb5f2a5612\"\r\n \ },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmFromImage\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": @@ -5635,20 +5946,20 @@ interactions: \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \ \"message\": \"Guest Agent is running\",\r\n \"time\": - \"2021-04-07T07:13:16+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vmFromImage_OsDisk_1_3928c1b74ef74e0bab68715f45e0488e\",\r\n + \"2021-04-09T04:34:23+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vmFromImage_OsDisk_1_204bbf72edcb4f029e24c22c06b01141\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-07T07:12:12.2239947+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-09T04:33:20.9986301+00:00\"\r\n \ }\r\n ]\r\n },\r\n {\r\n \"name\": - \"vmFromImage_lun_0_2_101b54b6630445b6b9c76b6674048977\",\r\n \"statuses\": + \"vmFromImage_lun_0_2_84f6587928b84cbf9484e2eb5f2a5612\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-07T07:12:12.2239947+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-09T04:33:20.9986301+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-07T07:12:49.2873514+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-09T04:34:02.3582649+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n \ }\r\n ]\r\n }\r\n }\r\n}" @@ -5660,7 +5971,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:13:18 GMT + - Fri, 09 Apr 2021 04:34:29 GMT expires: - '-1' pragma: @@ -5677,7 +5988,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31981 + - Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31979 status: code: 200 message: OK @@ -5701,12 +6012,12 @@ interactions: response: body: string: "{\r\n \"name\": \"vmFromImageVMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic\",\r\n - \ \"etag\": \"W/\\\"ee4160c4-eee3-48fa-8a3b-895ffc51f5e0\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"4645aec4-b56b-47c2-96be-ae3c51b2330c\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"76f139d2-4d07-4a3d-a3df-63eae3ad20b1\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"ba27bfa5-2221-4e27-ab57-602b9577f8ba\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvmFromImage\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/ipConfigurations/ipconfigvmFromImage\",\r\n - \ \"etag\": \"W/\\\"ee4160c4-eee3-48fa-8a3b-895ffc51f5e0\\\"\",\r\n + \ \"etag\": \"W/\\\"4645aec4-b56b-47c2-96be-ae3c51b2330c\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": @@ -5715,8 +6026,8 @@ interactions: \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": - \"iexrt4vvhrwurb4icymeisiqab.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-05-4A-FC\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"iakffmqzod0upcr44bizc1kizb.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-0F-D0-59\",\r\n \"enableAcceleratedNetworking\": false,\r\n \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -5730,9 +6041,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:13:18 GMT + - Fri, 09 Apr 2021 04:34:29 GMT etag: - - W/"ee4160c4-eee3-48fa-8a3b-895ffc51f5e0" + - W/"4645aec4-b56b-47c2-96be-ae3c51b2330c" expires: - '-1' pragma: @@ -5749,7 +6060,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - faec7f0a-9101-4bd7-8bad-33746f3eff77 + - 11ea2d23-badc-499e-b394-7e7b9756a351 status: code: 200 message: OK @@ -5773,10 +6084,10 @@ interactions: response: body: string: "{\r\n \"name\": \"vmFromImagePublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\",\r\n - \ \"etag\": \"W/\\\"1f9a45c1-43f3-4f46-901b-19b3582abc5c\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"5ea6b8f6-64f4-4202-b5da-8ef279947dc0\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"4df1c8f2-63a0-4fec-8432-a5efe86d898a\",\r\n - \ \"ipAddress\": \"52.167.7.197\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"8f682978-ce4f-45ea-89ca-0f4b82ebdd94\",\r\n + \ \"ipAddress\": \"52.167.6.98\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/ipConfigurations/ipconfigvmFromImage\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n @@ -5785,13 +6096,13 @@ interactions: cache-control: - no-cache content-length: - - '1029' + - '1028' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:13:18 GMT + - Fri, 09 Apr 2021 04:34:30 GMT etag: - - W/"1f9a45c1-43f3-4f46-901b-19b3582abc5c" + - W/"5ea6b8f6-64f4-4202-b5da-8ef279947dc0" expires: - '-1' pragma: @@ -5808,7 +6119,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6c37a6d4-104b-41bd-acd0-2cf1503f7be3 + - 5eb950d6-8bfe-46ce-b484-58f19622b706 status: code: 200 message: OK @@ -5830,23 +6141,23 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2020-09-30 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a2da3e83-0e61-47ee-94d1-2f212fa54e26?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/fdad652f-d271-467e-a10e-75eec3fde629?api-version=2020-09-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 07 Apr 2021 07:13:21 GMT + - Fri, 09 Apr 2021 04:34:31 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a2da3e83-0e61-47ee-94d1-2f212fa54e26?monitor=true&api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/fdad652f-d271-467e-a10e-75eec3fde629?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -5857,7 +6168,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteGalleryImageVersion3Min;149,Microsoft.Compute/DeleteGalleryImageVersion30Min;999 + - Microsoft.Compute/DeleteGalleryImageVersion3Min;149,Microsoft.Compute/DeleteGalleryImageVersion30Min;997 x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: @@ -5879,11 +6190,11 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a2da3e83-0e61-47ee-94d1-2f212fa54e26?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/fdad652f-d271-467e-a10e-75eec3fde629?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T07:13:21.2271069+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"a2da3e83-0e61-47ee-94d1-2f212fa54e26\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T04:34:31.6320265+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"fdad652f-d271-467e-a10e-75eec3fde629\"\r\n}" headers: cache-control: - no-cache @@ -5892,7 +6203,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:14:21 GMT + - Fri, 09 Apr 2021 04:35:32 GMT expires: - '-1' pragma: @@ -5909,7 +6220,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4155 + - Microsoft.Compute/GetOperationStatus3Min;1199,Microsoft.Compute/GetOperationStatus30Min;4129 status: code: 200 message: OK @@ -5929,12 +6240,12 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a2da3e83-0e61-47ee-94d1-2f212fa54e26?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/fdad652f-d271-467e-a10e-75eec3fde629?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T07:13:21.2271069+00:00\",\r\n \"endTime\": - \"2021-04-07T07:14:52.2464096+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"a2da3e83-0e61-47ee-94d1-2f212fa54e26\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T04:34:31.6320265+00:00\",\r\n \"endTime\": + \"2021-04-09T04:36:02.6824321+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"fdad652f-d271-467e-a10e-75eec3fde629\"\r\n}" headers: cache-control: - no-cache @@ -5943,7 +6254,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:15:23 GMT + - Fri, 09 Apr 2021 04:36:33 GMT expires: - '-1' pragma: @@ -5960,7 +6271,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4159 + - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4127 status: code: 200 message: OK @@ -5982,23 +6293,23 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3?api-version=2020-09-30 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/5329ee2d-2dbf-48ba-9a2a-bc8a39dfbb91?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0b9d5287-23c3-4202-b449-f29c32dc2346?api-version=2020-09-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 07 Apr 2021 07:15:25 GMT + - Fri, 09 Apr 2021 04:36:34 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/5329ee2d-2dbf-48ba-9a2a-bc8a39dfbb91?monitor=true&api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0b9d5287-23c3-4202-b449-f29c32dc2346?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -6009,7 +6320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteGalleryImageVersion3Min;148,Microsoft.Compute/DeleteGalleryImageVersion30Min;998 + - Microsoft.Compute/DeleteGalleryImageVersion3Min;148,Microsoft.Compute/DeleteGalleryImageVersion30Min;996 x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: @@ -6031,11 +6342,11 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/5329ee2d-2dbf-48ba-9a2a-bc8a39dfbb91?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0b9d5287-23c3-4202-b449-f29c32dc2346?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T07:15:25.5289754+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"5329ee2d-2dbf-48ba-9a2a-bc8a39dfbb91\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T04:36:35.2774269+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"0b9d5287-23c3-4202-b449-f29c32dc2346\"\r\n}" headers: cache-control: - no-cache @@ -6044,7 +6355,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:16:26 GMT + - Fri, 09 Apr 2021 04:37:36 GMT expires: - '-1' pragma: @@ -6061,7 +6372,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4157 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4125 status: code: 200 message: OK @@ -6081,12 +6392,12 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/5329ee2d-2dbf-48ba-9a2a-bc8a39dfbb91?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0b9d5287-23c3-4202-b449-f29c32dc2346?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T07:15:25.5289754+00:00\",\r\n \"endTime\": - \"2021-04-07T07:16:55.7512365+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"5329ee2d-2dbf-48ba-9a2a-bc8a39dfbb91\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T04:36:35.2774269+00:00\",\r\n \"endTime\": + \"2021-04-09T04:38:05.5156709+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"0b9d5287-23c3-4202-b449-f29c32dc2346\"\r\n}" headers: cache-control: - no-cache @@ -6095,7 +6406,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:17:27 GMT + - Fri, 09 Apr 2021 04:38:36 GMT expires: - '-1' pragma: @@ -6112,7 +6423,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4155 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4123 status: code: 200 message: OK @@ -6140,17 +6451,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/843c2e5f-60fc-475e-8ae5-0a1bc59b7c5f?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/4728773f-df5a-4ac8-90cd-2c44da185683?api-version=2020-09-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 07 Apr 2021 07:18:28 GMT + - Fri, 09 Apr 2021 04:39:38 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/843c2e5f-60fc-475e-8ae5-0a1bc59b7c5f?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/4728773f-df5a-4ac8-90cd-2c44da185683?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -6161,7 +6472,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteGalleryImage3Min;49,Microsoft.Compute/DeleteGalleryImage30Min;299 + - Microsoft.Compute/DeleteGalleryImage3Min;49,Microsoft.Compute/DeleteGalleryImage30Min;298 x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: @@ -6183,12 +6494,12 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/843c2e5f-60fc-475e-8ae5-0a1bc59b7c5f?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/4728773f-df5a-4ac8-90cd-2c44da185683?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T07:18:29.3017311+00:00\",\r\n \"endTime\": - \"2021-04-07T07:18:29.5204659+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"843c2e5f-60fc-475e-8ae5-0a1bc59b7c5f\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T04:39:38.3473887+00:00\",\r\n \"endTime\": + \"2021-04-09T04:39:38.5661522+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"4728773f-df5a-4ac8-90cd-2c44da185683\"\r\n}" headers: cache-control: - no-cache @@ -6197,7 +6508,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:18:58 GMT + - Fri, 09 Apr 2021 04:40:08 GMT expires: - '-1' pragma: @@ -6214,7 +6525,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4152 + - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4136 status: code: 200 message: OK @@ -6242,17 +6553,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/252286b1-92e1-45f7-93ff-420f9ca1dde2?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/329a7af9-a16c-43ac-b9d6-678562384a45?api-version=2019-12-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 07 Apr 2021 07:19:01 GMT + - Fri, 09 Apr 2021 04:40:10 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/252286b1-92e1-45f7-93ff-420f9ca1dde2?monitor=true&api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/329a7af9-a16c-43ac-b9d6-678562384a45?monitor=true&api-version=2019-12-01 pragma: - no-cache server: @@ -6263,7 +6574,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;299 + - Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;298 x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: @@ -6285,12 +6596,12 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/252286b1-92e1-45f7-93ff-420f9ca1dde2?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/329a7af9-a16c-43ac-b9d6-678562384a45?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T07:19:01.6310483+00:00\",\r\n \"endTime\": - \"2021-04-07T07:19:01.740427+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"252286b1-92e1-45f7-93ff-420f9ca1dde2\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T04:40:10.661248+00:00\",\r\n \"endTime\": + \"2021-04-09T04:40:10.7706254+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"329a7af9-a16c-43ac-b9d6-678562384a45\"\r\n}" headers: cache-control: - no-cache @@ -6299,7 +6610,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:19:31 GMT + - Fri, 09 Apr 2021 04:40:40 GMT expires: - '-1' pragma: @@ -6316,7 +6627,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4150 + - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4134 status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_image_build_shared_image.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_image_build_shared_image.yaml index 2e3d36fe86c..ad828774813 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_image_build_shared_image.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_image_build_shared_image.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:38:28 GMT + - Fri, 09 Apr 2021 03:51:00 GMT expires: - '-1' pragma: @@ -70,7 +70,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1?api-version=2015-08-31-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1","name":"ide1","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus","tags":{},"properties":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"d8c1bd5f-da24-4c81-bef0-fc08409aa985","clientId":"861e0874-4c66-4b6d-92b0-6307dd9014e3","clientSecretUrl":"https://control-westus.identity.azure.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1/credentials?tid=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a&oid=d8c1bd5f-da24-4c81-bef0-fc08409aa985&aid=861e0874-4c66-4b6d-92b0-6307dd9014e3"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1","name":"ide1","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus","tags":{},"properties":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"80f6582d-515b-4f3f-8ee4-50b303edcc28","clientId":"b37a0046-e33d-4131-8346-40e4001e71b8","clientSecretUrl":"https://control-westus.identity.azure.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1/credentials?tid=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a&oid=80f6582d-515b-4f3f-8ee4-50b303edcc28&aid=b37a0046-e33d-4131-8346-40e4001e71b8"}}' headers: cache-control: - no-cache @@ -79,7 +79,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:38:36 GMT + - Fri, 09 Apr 2021 03:51:06 GMT expires: - '-1' location: @@ -128,7 +128,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:39:22 GMT + - Fri, 09 Apr 2021 03:51:52 GMT expires: - '-1' pragma: @@ -165,10 +165,10 @@ interactions: accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27861e0874-4c66-4b6d-92b0-6307dd9014e3%27%29&api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27b37a0046-e33d-4131-8346-40e4001e71b8%27%29&api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"d8c1bd5f-da24-4c81-bef0-fc08409aa985","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":["isExplicit=True","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1"],"appDisplayName":null,"appId":"861e0874-4c66-4b6d-92b0-6307dd9014e3","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"ide1","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"0CB7B29B8D9D35C14F3302D257DDA3792FB7BDFF","endDate":"2021-07-06T06:33:00Z","keyId":"a7828911-1263-4d5c-8364-f15509e376d5","startDate":"2021-04-07T06:33:00Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["861e0874-4c66-4b6d-92b0-6307dd9014e3","https://identity.azure.net/wDAtOU4iOFLAEF8/QEgMTVVchNHS+X0FdQt2GM7sbo4="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null}]}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"80f6582d-515b-4f3f-8ee4-50b303edcc28","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":["isExplicit=True","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1"],"appDisplayName":null,"appId":"b37a0046-e33d-4131-8346-40e4001e71b8","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"ide1","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"DCEBEAAD4534F11AF381099DB56430122562127E","endDate":"2021-07-08T03:46:00Z","keyId":"ceed056a-3619-490d-8841-9a7bf697f2fc","startDate":"2021-04-09T03:46:00Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["b37a0046-e33d-4131-8346-40e4001e71b8","https://identity.azure.net//Ns9DGGfcspLgAl19UXLFwf0xRAXDoQBn6roWl8MiUU="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' @@ -181,19 +181,19 @@ interactions: dataserviceversion: - 3.0; date: - - Wed, 07 Apr 2021 06:39:23 GMT + - Fri, 09 Apr 2021 03:51:54 GMT duration: - - '2637598' + - '2697597' expires: - '-1' ocp-aad-diagnostics-server-name: - - HpQEqnZBq87+hb1zQLNz540JPwYU2iZA5R9zQeY4NnE= + - hn4+Y/ki4Au2E6lYATTJU9ebCK1i2JxaIJcTRdfG6tY= ocp-aad-session-key: - - IcobGnyykvXd7MTPNBigXZ-Fe_O8xz1lzVDSq0aSyT3Hy9aBg-RNaLzEXYcQrInRWqGi_0h-j_iPT3dtKowU7OVFrvRG7BUa9rc_EfWxGhtuE3j8JizZq6uXgT20pysC._ULOX_o6ueIht7q3WxgUnoVWdN5MskrbGLvBS4WSi1A + - a10vXlvuUO_GNP6ylbf-k1x81FGmdbbiEVHd7UeDGRwJ7MNJRUESOyAEYm-NDCIXFl_XXrd_DjfcphiECy4qTwbLnvoPRMrS3E6cZUS39O5p5UwqZHtNFlhsHbZpg5xq.5_boS1wQq5pYS-SialdRjka1PQAeq_K3M_57rY3vuf8 pragma: - no-cache request-id: - - e7ecdca1-02f8-46b5-9c93-718dfc797059 + - 2336f8e9-6c1c-48a4-b66f-8d10d26dd3ed strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -209,7 +209,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c", - "principalId": "d8c1bd5f-da24-4c81-bef0-fc08409aa985"}}' + "principalId": "80f6582d-515b-4f3f-8ee4-50b303edcc28"}}' headers: Accept: - application/json @@ -236,7 +236,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d8c1bd5f-da24-4c81-bef0-fc08409aa985","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T06:39:24.7149591Z","updatedOn":"2021-04-07T06:39:26.2313275Z","createdBy":null,"updatedBy":"181c08fa-7ac8-48a6-a869-342ab74566a4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"80f6582d-515b-4f3f-8ee4-50b303edcc28","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","condition":null,"conditionVersion":null,"createdOn":"2021-04-09T03:51:54.3302607Z","updatedOn":"2021-04-09T03:51:55.8887239Z","createdBy":null,"updatedBy":"181c08fa-7ac8-48a6-a869-342ab74566a4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' headers: cache-control: - no-cache @@ -245,7 +245,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:39:27 GMT + - Fri, 09 Apr 2021 03:51:58 GMT expires: - '-1' pragma: @@ -283,7 +283,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -292,7 +292,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:39:28 GMT + - Fri, 09 Apr 2021 03:51:59 GMT expires: - '-1' pragma: @@ -332,11 +332,11 @@ interactions: string: "{\r\n \"name\": \"ib_sig000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-IB_SIGBVT7\"\r\n },\r\n \"provisioningState\": + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-IB_SIG2JMC\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/0fbd3c0d-64f1-4a8f-a90e-c8b392e2d6ae?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/126c5d5f-af54-42d9-92d7-59fe3ebbaf32?api-version=2019-12-01 cache-control: - no-cache content-length: @@ -344,7 +344,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:39:36 GMT + - Fri, 09 Apr 2021 03:52:04 GMT expires: - '-1' pragma: @@ -357,9 +357,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGallery3Min;46,Microsoft.Compute/CreateUpdateGallery30Min;296 + - Microsoft.Compute/CreateUpdateGallery3Min;47,Microsoft.Compute/CreateUpdateGallery30Min;295 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -379,12 +379,12 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/0fbd3c0d-64f1-4a8f-a90e-c8b392e2d6ae?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/126c5d5f-af54-42d9-92d7-59fe3ebbaf32?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:39:35.8757505+00:00\",\r\n \"endTime\": - \"2021-04-07T06:39:35.9851127+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"0fbd3c0d-64f1-4a8f-a90e-c8b392e2d6ae\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T03:52:04.0121892+00:00\",\r\n \"endTime\": + \"2021-04-09T03:52:04.1059384+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"126c5d5f-af54-42d9-92d7-59fe3ebbaf32\"\r\n}" headers: cache-control: - no-cache @@ -393,7 +393,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:40:07 GMT + - Fri, 09 Apr 2021 03:52:35 GMT expires: - '-1' pragma: @@ -410,7 +410,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;4186 + - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4108 status: code: 200 message: OK @@ -436,7 +436,7 @@ interactions: string: "{\r\n \"name\": \"ib_sig000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-IB_SIGBVT7\"\r\n },\r\n \"provisioningState\": + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-IB_SIG2JMC\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -446,7 +446,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:40:07 GMT + - Fri, 09 Apr 2021 03:52:35 GMT expires: - '-1' pragma: @@ -463,7 +463,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGallery3Min;332,Microsoft.Compute/GetGallery30Min;2481 + - Microsoft.Compute/GetGallery3Min;334,Microsoft.Compute/GetGallery30Min;2452 status: code: 200 message: OK @@ -489,7 +489,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -498,7 +498,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:40:08 GMT + - Fri, 09 Apr 2021 03:52:36 GMT expires: - '-1' pragma: @@ -546,7 +546,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/c309033c-3197-4461-8334-9e72d7f338e1?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/30055e7a-dff9-4226-8fa9-6702246de536?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -554,7 +554,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:40:15 GMT + - Fri, 09 Apr 2021 03:52:42 GMT expires: - '-1' pragma: @@ -567,7 +567,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImage3Min;146,Microsoft.Compute/CreateUpdateGalleryImage30Min;746 + - Microsoft.Compute/CreateUpdateGalleryImage3Min;147,Microsoft.Compute/CreateUpdateGalleryImage30Min;744 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -589,12 +589,12 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/c309033c-3197-4461-8334-9e72d7f338e1?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/30055e7a-dff9-4226-8fa9-6702246de536?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:40:14.2039211+00:00\",\r\n \"endTime\": - \"2021-04-07T06:40:14.3132731+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"c309033c-3197-4461-8334-9e72d7f338e1\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T03:52:41.8560049+00:00\",\r\n \"endTime\": + \"2021-04-09T03:52:41.9653741+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"30055e7a-dff9-4226-8fa9-6702246de536\"\r\n}" headers: cache-control: - no-cache @@ -603,7 +603,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:40:45 GMT + - Fri, 09 Apr 2021 03:53:12 GMT expires: - '-1' pragma: @@ -620,7 +620,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4182 + - Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4105 status: code: 200 message: OK @@ -658,7 +658,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:40:45 GMT + - Fri, 09 Apr 2021 03:53:12 GMT expires: - '-1' pragma: @@ -675,7 +675,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;579,Microsoft.Compute/GetGalleryImage30Min;2979 + - Microsoft.Compute/GetGalleryImage3Min;586,Microsoft.Compute/GetGalleryImage30Min;2947 status: code: 200 message: OK @@ -701,7 +701,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -710,7 +710,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:40:46 GMT + - Fri, 09 Apr 2021 03:53:13 GMT expires: - '-1' pragma: @@ -840,7 +840,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:40:47 GMT + - Fri, 09 Apr 2021 03:53:14 GMT expires: - '-1' pragma: @@ -971,7 +971,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:40:48 GMT + - Fri, 09 Apr 2021 03:53:15 GMT expires: - '-1' pragma: @@ -1035,7 +1035,7 @@ interactions: \"location\": \"westus\",\n \"tags\": {}\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/382d189b-4888-4e6c-8047-764460de4e4d?api-version=2020-02-14 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/14031a56-5632-44c6-81f8-6a4a721b3f59?api-version=2020-02-14 cache-control: - no-cache content-length: @@ -1043,7 +1043,7 @@ interactions: content-type: - application/json date: - - Wed, 07 Apr 2021 06:40:57 GMT + - Fri, 09 Apr 2021 03:53:25 GMT expires: - '-1' pragma: @@ -1076,21 +1076,69 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/382d189b-4888-4e6c-8047-764460de4e4d?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/14031a56-5632-44c6-81f8-6a4a721b3f59?api-version=2020-02-14 + response: + body: + string: "{\n \"name\": \"14031A56-5632-44C6-81F8-6A4A721B3F59\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:53:23.3333333Z\"\n}" + headers: + cache-control: + - no-cache + content-length: + - '122' + content-type: + - application/json + date: + - Fri, 09 Apr 2021 03:53:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - image builder update + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/14031a56-5632-44c6-81f8-6a4a721b3f59?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"382D189B-4888-4E6C-8047-764460DE4E4D\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-04-07T06:40:56.87Z\",\n \"endTime\": - \"2021-04-07T06:41:27.8432276Z\"\n}" + string: "{\n \"name\": \"14031A56-5632-44C6-81F8-6A4A721B3F59\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-04-09T03:53:23.3333333Z\",\n \"endTime\": + \"2021-04-09T03:53:58.0031026Z\"\n}" headers: cache-control: - no-cache content-length: - - '160' + - '165' content-type: - application/json date: - - Wed, 07 Apr 2021 06:41:28 GMT + - Fri, 09 Apr 2021 03:54:26 GMT expires: - '-1' pragma: @@ -1140,8 +1188,8 @@ interactions: \"Succeeded\",\n \"buildTimeoutInMinutes\": 0,\n \"vmProfile\": {\n \"vmSize\": \"\",\n \"osDiskSizeGB\": 0\n }\n },\n \"identity\": {\n \"type\": \"UserAssigned\",\n \ \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1\": - {\n \"principalId\": \"d8c1bd5f-da24-4c81-bef0-fc08409aa985\",\n \"clientId\": - \"861e0874-4c66-4b6d-92b0-6307dd9014e3\"\n }\n }\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template01\",\n + {\n \"principalId\": \"80f6582d-515b-4f3f-8ee4-50b303edcc28\",\n \"clientId\": + \"b37a0046-e33d-4131-8346-40e4001e71b8\"\n }\n }\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template01\",\n \"name\": \"template01\",\n \"type\": \"Microsoft.VirtualMachineImages/imageTemplates\",\n \"location\": \"westus\",\n \"tags\": {}\n}" headers: @@ -1152,7 +1200,7 @@ interactions: content-type: - application/json date: - - Wed, 07 Apr 2021 06:41:29 GMT + - Fri, 09 Apr 2021 03:54:27 GMT expires: - '-1' pragma: @@ -1197,17 +1245,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 cache-control: - no-cache content-length: - '0' date: - - Wed, 07 Apr 2021 06:41:33 GMT + - Fri, 09 Apr 2021 03:54:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 pragma: - no-cache server: @@ -1238,20 +1286,20 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache content-length: - - '117' + - '122' content-type: - application/json date: - - Wed, 07 Apr 2021 06:42:04 GMT + - Fri, 09 Apr 2021 03:55:01 GMT expires: - '-1' pragma: @@ -1286,20 +1334,20 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache content-length: - - '117' + - '122' content-type: - application/json date: - - Wed, 07 Apr 2021 06:42:34 GMT + - Fri, 09 Apr 2021 03:55:32 GMT expires: - '-1' pragma: @@ -1334,20 +1382,20 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache content-length: - - '117' + - '122' content-type: - application/json date: - - Wed, 07 Apr 2021 06:43:05 GMT + - Fri, 09 Apr 2021 03:56:03 GMT expires: - '-1' pragma: @@ -1382,20 +1430,20 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache content-length: - - '117' + - '122' content-type: - application/json date: - - Wed, 07 Apr 2021 06:43:35 GMT + - Fri, 09 Apr 2021 03:56:33 GMT expires: - '-1' pragma: @@ -1430,20 +1478,20 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache content-length: - - '117' + - '122' content-type: - application/json date: - - Wed, 07 Apr 2021 06:44:06 GMT + - Fri, 09 Apr 2021 03:57:03 GMT expires: - '-1' pragma: @@ -1478,20 +1526,20 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache content-length: - - '117' + - '122' content-type: - application/json date: - - Wed, 07 Apr 2021 06:44:36 GMT + - Fri, 09 Apr 2021 03:57:34 GMT expires: - '-1' pragma: @@ -1526,20 +1574,20 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache content-length: - - '117' + - '122' content-type: - application/json date: - - Wed, 07 Apr 2021 06:45:06 GMT + - Fri, 09 Apr 2021 03:58:05 GMT expires: - '-1' pragma: @@ -1574,20 +1622,20 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache content-length: - - '117' + - '122' content-type: - application/json date: - - Wed, 07 Apr 2021 06:45:38 GMT + - Fri, 09 Apr 2021 03:58:35 GMT expires: - '-1' pragma: @@ -1622,20 +1670,20 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache content-length: - - '117' + - '122' content-type: - application/json date: - - Wed, 07 Apr 2021 06:46:08 GMT + - Fri, 09 Apr 2021 03:59:06 GMT expires: - '-1' pragma: @@ -1670,20 +1718,20 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache content-length: - - '117' + - '122' content-type: - application/json date: - - Wed, 07 Apr 2021 06:46:39 GMT + - Fri, 09 Apr 2021 03:59:36 GMT expires: - '-1' pragma: @@ -1718,20 +1766,20 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache content-length: - - '117' + - '122' content-type: - application/json date: - - Wed, 07 Apr 2021 06:47:10 GMT + - Fri, 09 Apr 2021 04:00:07 GMT expires: - '-1' pragma: @@ -1766,20 +1814,20 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache content-length: - - '117' + - '122' content-type: - application/json date: - - Wed, 07 Apr 2021 06:47:40 GMT + - Fri, 09 Apr 2021 04:00:38 GMT expires: - '-1' pragma: @@ -1814,20 +1862,20 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache content-length: - - '117' + - '122' content-type: - application/json date: - - Wed, 07 Apr 2021 06:48:11 GMT + - Fri, 09 Apr 2021 04:01:08 GMT expires: - '-1' pragma: @@ -1862,20 +1910,20 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache content-length: - - '117' + - '122' content-type: - application/json date: - - Wed, 07 Apr 2021 06:48:41 GMT + - Fri, 09 Apr 2021 04:01:39 GMT expires: - '-1' pragma: @@ -1910,20 +1958,20 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache content-length: - - '117' + - '122' content-type: - application/json date: - - Wed, 07 Apr 2021 06:49:11 GMT + - Fri, 09 Apr 2021 04:02:09 GMT expires: - '-1' pragma: @@ -1958,20 +2006,20 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache content-length: - - '117' + - '122' content-type: - application/json date: - - Wed, 07 Apr 2021 06:49:43 GMT + - Fri, 09 Apr 2021 04:02:40 GMT expires: - '-1' pragma: @@ -2006,20 +2054,20 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache content-length: - - '117' + - '122' content-type: - application/json date: - - Wed, 07 Apr 2021 06:50:13 GMT + - Fri, 09 Apr 2021 04:03:10 GMT expires: - '-1' pragma: @@ -2054,20 +2102,20 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache content-length: - - '117' + - '122' content-type: - application/json date: - - Wed, 07 Apr 2021 06:50:44 GMT + - Fri, 09 Apr 2021 04:03:41 GMT expires: - '-1' pragma: @@ -2102,20 +2150,20 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache content-length: - - '117' + - '122' content-type: - application/json date: - - Wed, 07 Apr 2021 06:51:14 GMT + - Fri, 09 Apr 2021 04:04:12 GMT expires: - '-1' pragma: @@ -2150,20 +2198,20 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache content-length: - - '117' + - '122' content-type: - application/json date: - - Wed, 07 Apr 2021 06:51:44 GMT + - Fri, 09 Apr 2021 04:04:42 GMT expires: - '-1' pragma: @@ -2198,20 +2246,20 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache content-length: - - '117' + - '122' content-type: - application/json date: - - Wed, 07 Apr 2021 06:52:16 GMT + - Fri, 09 Apr 2021 04:05:13 GMT expires: - '-1' pragma: @@ -2246,20 +2294,20 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache content-length: - - '117' + - '122' content-type: - application/json date: - - Wed, 07 Apr 2021 06:52:46 GMT + - Fri, 09 Apr 2021 04:05:44 GMT expires: - '-1' pragma: @@ -2294,20 +2342,20 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache content-length: - - '117' + - '122' content-type: - application/json date: - - Wed, 07 Apr 2021 06:53:17 GMT + - Fri, 09 Apr 2021 04:06:14 GMT expires: - '-1' pragma: @@ -2342,20 +2390,20 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache content-length: - - '117' + - '122' content-type: - application/json date: - - Wed, 07 Apr 2021 06:53:47 GMT + - Fri, 09 Apr 2021 04:06:45 GMT expires: - '-1' pragma: @@ -2390,20 +2438,20 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache content-length: - - '117' + - '122' content-type: - application/json date: - - Wed, 07 Apr 2021 06:54:17 GMT + - Fri, 09 Apr 2021 04:07:15 GMT expires: - '-1' pragma: @@ -2438,20 +2486,20 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache content-length: - - '117' + - '122' content-type: - application/json date: - - Wed, 07 Apr 2021 06:54:49 GMT + - Fri, 09 Apr 2021 04:07:46 GMT expires: - '-1' pragma: @@ -2486,20 +2534,20 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache content-length: - - '117' + - '122' content-type: - application/json date: - - Wed, 07 Apr 2021 06:55:19 GMT + - Fri, 09 Apr 2021 04:08:16 GMT expires: - '-1' pragma: @@ -2534,20 +2582,20 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache content-length: - - '117' + - '122' content-type: - application/json date: - - Wed, 07 Apr 2021 06:55:49 GMT + - Fri, 09 Apr 2021 04:08:47 GMT expires: - '-1' pragma: @@ -2582,20 +2630,20 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache content-length: - - '117' + - '122' content-type: - application/json date: - - Wed, 07 Apr 2021 06:56:20 GMT + - Fri, 09 Apr 2021 04:09:18 GMT expires: - '-1' pragma: @@ -2630,20 +2678,20 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache content-length: - - '117' + - '122' content-type: - application/json date: - - Wed, 07 Apr 2021 06:56:51 GMT + - Fri, 09 Apr 2021 04:09:48 GMT expires: - '-1' pragma: @@ -2678,20 +2726,20 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache content-length: - - '117' + - '122' content-type: - application/json date: - - Wed, 07 Apr 2021 06:57:21 GMT + - Fri, 09 Apr 2021 04:10:19 GMT expires: - '-1' pragma: @@ -2726,20 +2774,20 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache content-length: - - '117' + - '122' content-type: - application/json date: - - Wed, 07 Apr 2021 06:57:52 GMT + - Fri, 09 Apr 2021 04:10:50 GMT expires: - '-1' pragma: @@ -2774,20 +2822,20 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache content-length: - - '117' + - '122' content-type: - application/json date: - - Wed, 07 Apr 2021 06:58:23 GMT + - Fri, 09 Apr 2021 04:11:20 GMT expires: - '-1' pragma: @@ -2822,20 +2870,20 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache content-length: - - '117' + - '122' content-type: - application/json date: - - Wed, 07 Apr 2021 06:58:53 GMT + - Fri, 09 Apr 2021 04:11:51 GMT expires: - '-1' pragma: @@ -2870,21 +2918,21 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/77972311-be5b-473b-8f99-217fd79edbe9?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"77972311-BE5B-473B-8F99-217FD79EDBE9\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-04-07T06:41:32.48Z\",\n \"endTime\": - \"2021-04-07T06:59:00.1137786Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\",\n \"endTime\": + \"2021-04-09T04:12:04.2225932Z\"\n}" headers: cache-control: - no-cache content-length: - - '160' + - '165' content-type: - application/json date: - - Wed, 07 Apr 2021 06:59:24 GMT + - Fri, 09 Apr 2021 04:12:21 GMT expires: - '-1' pragma: @@ -2924,7 +2972,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template01/runOutputs/image1?api-version=2020-02-14 response: body: - string: "{\n \"properties\": {\n \"artifactId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24685.21915\",\n + string: "{\n \"properties\": {\n \"artifactId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24687.53687\",\n \ \"provisioningState\": \"Succeeded\"\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template01/runOutputs/image1\",\n \"name\": \"image1\",\n \"type\": \"Microsoft.VirtualMachineImages/imageTemplates/runOutputs\"\n}" headers: @@ -2935,7 +2983,7 @@ interactions: content-type: - application/json date: - - Wed, 07 Apr 2021 06:59:25 GMT + - Fri, 09 Apr 2021 04:12:23 GMT expires: - '-1' pragma: @@ -2975,7 +3023,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2984,7 +3032,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:59:26 GMT + - Fri, 09 Apr 2021 04:12:24 GMT expires: - '-1' pragma: @@ -3032,7 +3080,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:59:27 GMT + - Fri, 09 Apr 2021 04:12:24 GMT expires: - '-1' pragma: @@ -3049,7 +3097,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;595,Microsoft.Compute/GetGalleryImage30Min;2947 + - Microsoft.Compute/GetGalleryImage3Min;597,Microsoft.Compute/GetGalleryImage30Min;2949 status: code: 200 message: OK @@ -3069,19 +3117,19 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24685.21915?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24687.53687?api-version=2020-09-30 response: body: - string: "{\r\n \"name\": \"0.24685.21915\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24685.21915\",\r\n + string: "{\r\n \"name\": \"0.24687.53687\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24687.53687\",\r\n \ \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": - \"westus\",\r\n \"tags\": {\r\n \"correlationId\": \"3d7e83dc-1d4e-451a-ba08-230c00db37eb\"\r\n + \"westus\",\r\n \"tags\": {\r\n \"correlationId\": \"9d394cb3-e16d-4af0-8b9f-5f3e4de03f13\"\r\n \ },\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n \ ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n - \ \"publishedDate\": \"2021-04-07T06:47:56.8725033+00:00\",\r\n \"storageAccountType\": + \ \"publishedDate\": \"2021-04-09T04:02:00.7017234+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IT_img_tmpl_sigs6qf4x7bo5xylmq34zwoby6pslua_e3565400-eac5-4fe9-9d77-044fd058e297/providers/Microsoft.Compute/images/IntermediateSnapImg_3d7e83dc-1d4e-451a-ba08-230c00db37eb_0\"\r\n + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IT_img_tmpl_sig4kr6gnzxpbdtvqghtlqptana6mku_85bb2f24-36e2-47c0-83ae-2f55a4223ac3/providers/Microsoft.Compute/images/IntermediateSnapImg_9d394cb3-e16d-4af0-8b9f-5f3e4de03f13_0\"\r\n \ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" @@ -3093,7 +3141,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:59:28 GMT + - Fri, 09 Apr 2021 04:12:25 GMT expires: - '-1' pragma: @@ -3110,7 +3158,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1995,Microsoft.Compute/GetGalleryImageVersion30Min;9976 + - Microsoft.Compute/GetGalleryImageVersion3Min;1992,Microsoft.Compute/GetGalleryImageVersion30Min;9951 status: code: 200 message: OK @@ -3142,7 +3190,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:59:28 GMT + - Fri, 09 Apr 2021 04:12:25 GMT expires: - '-1' pragma: @@ -3184,7 +3232,7 @@ interactions: {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic"}]}, "storageProfile": {"osDisk": {"createOption": "fromImage", "name": null, "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference": - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24685.21915"}}, + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24687.53687"}}, "osProfile": {"computerName": "custom-vm", "adminUsername": "azureuser", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj @@ -3214,18 +3262,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/vm_deploy_fUdaL1taURe9PyrKbxIRSliLTz7UoiWc","name":"vm_deploy_fUdaL1taURe9PyrKbxIRSliLTz7UoiWc","type":"Microsoft.Resources/deployments","properties":{"templateHash":"451431972803702666","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-07T06:59:32.7901142Z","duration":"PT2.1444899S","correlationId":"82d6dfe2-25c5-474d-92f7-0440ef637307","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/virtualNetworks/custom-vmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"custom-vmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkSecurityGroups/custom-vmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"custom-vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/publicIPAddresses/custom-vmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"custom-vmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"custom-vmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"custom-vmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"custom-vm"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/vm_deploy_GPni5MCclwXzn0o70J3IY0M6d3GYV71t","name":"vm_deploy_GPni5MCclwXzn0o70J3IY0M6d3GYV71t","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17660426104562918173","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-09T04:12:30.1410396Z","duration":"PT2.4762032S","correlationId":"f9df6429-66a9-4350-91a4-096b0a6a1164","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/virtualNetworks/custom-vmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"custom-vmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkSecurityGroups/custom-vmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"custom-vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/publicIPAddresses/custom-vmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"custom-vmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"custom-vmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"custom-vmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"custom-vm"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/vm_deploy_fUdaL1taURe9PyrKbxIRSliLTz7UoiWc/operationStatuses/08585838281148320045?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/vm_deploy_GPni5MCclwXzn0o70J3IY0M6d3GYV71t/operationStatuses/08585836653378127949?api-version=2020-10-01 cache-control: - no-cache content-length: - - '2813' + - '2815' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:59:33 GMT + - Fri, 09 Apr 2021 04:12:30 GMT expires: - '-1' pragma: @@ -3235,7 +3283,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -3256,7 +3304,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585838281148320045?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836653378127949?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -3268,7 +3316,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:00:05 GMT + - Fri, 09 Apr 2021 04:13:03 GMT expires: - '-1' pragma: @@ -3299,7 +3347,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585838281148320045?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836653378127949?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -3311,7 +3359,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:00:35 GMT + - Fri, 09 Apr 2021 04:13:33 GMT expires: - '-1' pragma: @@ -3342,7 +3390,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585838281148320045?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836653378127949?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -3354,7 +3402,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:01:05 GMT + - Fri, 09 Apr 2021 04:14:03 GMT expires: - '-1' pragma: @@ -3385,7 +3433,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585838281148320045?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836653378127949?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -3397,7 +3445,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:01:35 GMT + - Fri, 09 Apr 2021 04:14:34 GMT expires: - '-1' pragma: @@ -3431,16 +3479,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/vm_deploy_fUdaL1taURe9PyrKbxIRSliLTz7UoiWc","name":"vm_deploy_fUdaL1taURe9PyrKbxIRSliLTz7UoiWc","type":"Microsoft.Resources/deployments","properties":{"templateHash":"451431972803702666","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-07T07:01:18.8960593Z","duration":"PT1M48.250435S","correlationId":"82d6dfe2-25c5-474d-92f7-0440ef637307","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/virtualNetworks/custom-vmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"custom-vmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkSecurityGroups/custom-vmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"custom-vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/publicIPAddresses/custom-vmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"custom-vmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"custom-vmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"custom-vmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"custom-vm"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkSecurityGroups/custom-vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/publicIPAddresses/custom-vmPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/virtualNetworks/custom-vmVNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/vm_deploy_GPni5MCclwXzn0o70J3IY0M6d3GYV71t","name":"vm_deploy_GPni5MCclwXzn0o70J3IY0M6d3GYV71t","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17660426104562918173","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-09T04:14:12.6418343Z","duration":"PT1M44.9769979S","correlationId":"f9df6429-66a9-4350-91a4-096b0a6a1164","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/virtualNetworks/custom-vmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"custom-vmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkSecurityGroups/custom-vmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"custom-vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/publicIPAddresses/custom-vmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"custom-vmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"custom-vmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"custom-vmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"custom-vm"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkSecurityGroups/custom-vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/publicIPAddresses/custom-vmPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/virtualNetworks/custom-vmVNET"}]}}' headers: cache-control: - no-cache content-length: - - '3909' + - '3912' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:01:36 GMT + - Fri, 09 Apr 2021 04:14:34 GMT expires: - '-1' pragma: @@ -3475,15 +3523,15 @@ interactions: body: string: "{\r\n \"name\": \"custom-vm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"13d4b8e2-856b-4bf0-88f8-1e01acdf0b59\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"0fd32fa3-5677-48c0-8f82-eab0b419652b\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24685.21915\",\r\n - \ \"exactVersion\": \"0.24685.21915\"\r\n },\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"custom-vm_OsDisk_1_e440368f7fca4674922ab2f57f33e38a\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24687.53687\",\r\n + \ \"exactVersion\": \"0.24687.53687\"\r\n },\r\n \"osDisk\": + {\r\n \"osType\": \"Linux\",\r\n \"name\": \"custom-vm_OsDisk_1_c7899724f90846c4aa306af19eee6e32\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/disks/custom-vm_OsDisk_1_e440368f7fca4674922ab2f57f33e38a\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/disks/custom-vm_OsDisk_1_c7899724f90846c4aa306af19eee6e32\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"custom-vm\",\r\n \ \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": {\r\n @@ -3500,16 +3548,16 @@ interactions: \ {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \ \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet - populated.\",\r\n \"time\": \"2021-04-07T07:01:37+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2021-04-09T04:14:35+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"custom-vm_OsDisk_1_e440368f7fca4674922ab2f57f33e38a\",\r\n \"statuses\": + \"custom-vm_OsDisk_1_c7899724f90846c4aa306af19eee6e32\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-07T07:00:09.4763525+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-09T04:12:49.5876436+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-07T07:01:15.4793472+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-09T04:14:11.31012+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n \ }\r\n ]\r\n }\r\n }\r\n}" @@ -3517,11 +3565,11 @@ interactions: cache-control: - no-cache content-length: - - '3926' + - '3924' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:01:37 GMT + - Fri, 09 Apr 2021 04:14:35 GMT expires: - '-1' pragma: @@ -3538,7 +3586,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31924 + - Microsoft.Compute/LowCostGet3Min;3985,Microsoft.Compute/LowCostGet30Min;31786 status: code: 200 message: OK @@ -3562,12 +3610,12 @@ interactions: response: body: string: "{\r\n \"name\": \"custom-vmVMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic\",\r\n - \ \"etag\": \"W/\\\"f32465ad-72fd-4e5d-843f-ec4d675fac48\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"683e0032-c633-4e67-b3ea-3fe452b7ac0a\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"66b09863-e5ee-4950-a3c2-4ae4c287a3e8\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"bd101088-dd05-4a0c-9457-c54af23e6c04\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigcustom-vm\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic/ipConfigurations/ipconfigcustom-vm\",\r\n - \ \"etag\": \"W/\\\"f32465ad-72fd-4e5d-843f-ec4d675fac48\\\"\",\r\n + \ \"etag\": \"W/\\\"683e0032-c633-4e67-b3ea-3fe452b7ac0a\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -3576,8 +3624,8 @@ interactions: \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": - \"vjds0zfvwolezb4tngfr44mwtg.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-22-48-04-5D-C9\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"ywnzowq3vbievctehfsjkoyaih.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-22-48-09-87-0E\",\r\n \"enableAcceleratedNetworking\": false,\r\n \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkSecurityGroups/custom-vmNSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -3591,9 +3639,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:01:38 GMT + - Fri, 09 Apr 2021 04:14:36 GMT etag: - - W/"f32465ad-72fd-4e5d-843f-ec4d675fac48" + - W/"683e0032-c633-4e67-b3ea-3fe452b7ac0a" expires: - '-1' pragma: @@ -3610,7 +3658,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 08abf120-4ed4-4239-ad62-67c1c79b0097 + - bc496ca8-95b8-4218-8fa2-512dc7cc6677 status: code: 200 message: OK @@ -3634,10 +3682,10 @@ interactions: response: body: string: "{\r\n \"name\": \"custom-vmPublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/publicIPAddresses/custom-vmPublicIP\",\r\n - \ \"etag\": \"W/\\\"96e73333-4061-4ace-924d-01163e4c9ca8\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"215005cd-5d3b-4951-acad-e78f615996da\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"2df26ea6-5f07-4365-a2d9-809e412578ca\",\r\n - \ \"ipAddress\": \"23.99.86.89\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"33456a4e-d1cd-4bd7-aa22-bac620be6fb6\",\r\n + \ \"ipAddress\": \"138.91.93.0\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic/ipConfigurations/ipconfigcustom-vm\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n @@ -3650,9 +3698,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:01:38 GMT + - Fri, 09 Apr 2021 04:14:36 GMT etag: - - W/"96e73333-4061-4ace-924d-01163e4c9ca8" + - W/"215005cd-5d3b-4951-acad-e78f615996da" expires: - '-1' pragma: @@ -3669,7 +3717,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3e9e6435-f267-4c6d-ac2b-9eda67c8884b + - bff01ab2-f6db-4ad1-ab32-7751943cb354 status: code: 200 message: OK @@ -3694,15 +3742,15 @@ interactions: body: string: "{\r\n \"name\": \"custom-vm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"13d4b8e2-856b-4bf0-88f8-1e01acdf0b59\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"0fd32fa3-5677-48c0-8f82-eab0b419652b\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24685.21915\",\r\n - \ \"exactVersion\": \"0.24685.21915\"\r\n },\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"custom-vm_OsDisk_1_e440368f7fca4674922ab2f57f33e38a\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24687.53687\",\r\n + \ \"exactVersion\": \"0.24687.53687\"\r\n },\r\n \"osDisk\": + {\r\n \"osType\": \"Linux\",\r\n \"name\": \"custom-vm_OsDisk_1_c7899724f90846c4aa306af19eee6e32\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/disks/custom-vm_OsDisk_1_e440368f7fca4674922ab2f57f33e38a\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/disks/custom-vm_OsDisk_1_c7899724f90846c4aa306af19eee6e32\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"custom-vm\",\r\n \ \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": {\r\n @@ -3723,7 +3771,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:01:39 GMT + - Fri, 09 Apr 2021 04:14:37 GMT expires: - '-1' pragma: @@ -3740,7 +3788,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31923 + - Microsoft.Compute/LowCostGet3Min;3984,Microsoft.Compute/LowCostGet30Min;31785 status: code: 200 message: OK @@ -3766,7 +3814,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3775,7 +3823,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:01:39 GMT + - Fri, 09 Apr 2021 04:14:37 GMT expires: - '-1' pragma: @@ -3905,7 +3953,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 07:01:40 GMT + - Fri, 09 Apr 2021 04:14:38 GMT expires: - '-1' pragma: @@ -3921,7 +3969,7 @@ interactions: message: OK - request: body: '{"location": "westus", "tags": {}, "properties": {"source": {"type": "SharedImageVersion", - "imageVersionId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24685.21915"}, + "imageVersionId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24687.53687"}, "customize": [{"name": "customizeScript.sh", "type": "Shell", "scriptUri": "https://raw.githubusercontent.com/danielsollondon/azvmimagebuilder/master/quickquickstarts/customizeScript.sh"}], "distribute": [{"runOutputName": "image1", "type": "SharedImage", "galleryImageId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1", @@ -3952,7 +4000,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template02?api-version=2020-02-14 response: body: - string: "{\n \"properties\": {\n \"source\": {\n \"imageVersionId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24685.21915\",\n + string: "{\n \"properties\": {\n \"source\": {\n \"imageVersionId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24687.53687\",\n \ \"type\": \"SharedImageVersion\"\n },\n \"customize\": [\n {\n \"name\": \"customizeScript.sh\",\n \"scriptUri\": \"https://raw.githubusercontent.com/danielsollondon/azvmimagebuilder/master/quickquickstarts/customizeScript.sh\",\n \ \"type\": \"Shell\"\n }\n ],\n \"distribute\": [\n {\n \"artifactTags\": @@ -3967,7 +4015,7 @@ interactions: \"location\": \"westus\",\n \"tags\": {}\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/eb528df2-584d-4152-beb5-cda68fa61f20?api-version=2020-02-14 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/50fcb967-3528-46aa-a592-9d70b238a58a?api-version=2020-02-14 cache-control: - no-cache content-length: @@ -3975,7 +4023,7 @@ interactions: content-type: - application/json date: - - Wed, 07 Apr 2021 07:01:53 GMT + - Fri, 09 Apr 2021 04:14:47 GMT expires: - '-1' pragma: @@ -3987,7 +4035,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1197' status: code: 201 message: Created @@ -4008,21 +4056,21 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/eb528df2-584d-4152-beb5-cda68fa61f20?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/50fcb967-3528-46aa-a592-9d70b238a58a?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"EB528DF2-584D-4152-BEB5-CDA68FA61F20\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-04-07T07:01:51.5166666Z\",\n \"endTime\": - \"2021-04-07T07:02:23.874337Z\"\n}" + string: "{\n \"name\": \"50FCB967-3528-46AA-A592-9D70B238A58A\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-04-09T04:14:46.1566666Z\",\n \"endTime\": + \"2021-04-09T04:15:17.1906731Z\"\n}" headers: cache-control: - no-cache content-length: - - '164' + - '165' content-type: - application/json date: - - Wed, 07 Apr 2021 07:02:24 GMT + - Fri, 09 Apr 2021 04:15:19 GMT expires: - '-1' pragma: @@ -4060,7 +4108,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template02?api-version=2020-02-14 response: body: - string: "{\n \"properties\": {\n \"source\": {\n \"imageVersionId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24685.21915\",\n + string: "{\n \"properties\": {\n \"source\": {\n \"imageVersionId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24687.53687\",\n \ \"type\": \"SharedImageVersion\"\n },\n \"customize\": [\n {\n \"name\": \"customizeScript.sh\",\n \"scriptUri\": \"https://raw.githubusercontent.com/danielsollondon/azvmimagebuilder/master/quickquickstarts/customizeScript.sh\",\n \ \"sha256Checksum\": \"2c6ff6902a4a52deee69e8db26d0036a53388651008aaf31795bb20dabd21fd8\",\n @@ -4071,8 +4119,8 @@ interactions: \"Succeeded\",\n \"buildTimeoutInMinutes\": 0,\n \"vmProfile\": {\n \"vmSize\": \"\",\n \"osDiskSizeGB\": 0\n }\n },\n \"identity\": {\n \"type\": \"UserAssigned\",\n \ \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1\": - {\n \"principalId\": \"d8c1bd5f-da24-4c81-bef0-fc08409aa985\",\n \"clientId\": - \"861e0874-4c66-4b6d-92b0-6307dd9014e3\"\n }\n }\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template02\",\n + {\n \"principalId\": \"80f6582d-515b-4f3f-8ee4-50b303edcc28\",\n \"clientId\": + \"b37a0046-e33d-4131-8346-40e4001e71b8\"\n }\n }\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template02\",\n \"name\": \"template02\",\n \"type\": \"Microsoft.VirtualMachineImages/imageTemplates\",\n \"location\": \"westus\",\n \"tags\": {}\n}" headers: @@ -4083,7 +4131,7 @@ interactions: content-type: - application/json date: - - Wed, 07 Apr 2021 07:02:25 GMT + - Fri, 09 Apr 2021 04:15:19 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_specialized_image.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_specialized_image.yaml index c25be44d7d8..27628105c42 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_specialized_image.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_specialized_image.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:38:29 GMT + - Fri, 09 Apr 2021 03:51:01 GMT expires: - '-1' pragma: @@ -70,11 +70,11 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_IW6VJJ3JP5ZB\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_Z2Y6MOKXVPPQ\"\r\n },\r\n \ \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/5c0d1c3d-a0fb-4165-a296-d953992b9005?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d51f93e6-4eaf-4a09-9fea-8a7314616687?api-version=2019-12-01 cache-control: - no-cache content-length: @@ -82,7 +82,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:38:36 GMT + - Fri, 09 Apr 2021 03:51:07 GMT expires: - '-1' pragma: @@ -95,9 +95,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGallery3Min;48,Microsoft.Compute/CreateUpdateGallery30Min;298 + - Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;297 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -117,12 +117,12 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/5c0d1c3d-a0fb-4165-a296-d953992b9005?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d51f93e6-4eaf-4a09-9fea-8a7314616687?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:38:35.1412398+00:00\",\r\n \"endTime\": - \"2021-04-07T06:38:35.2506147+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"5c0d1c3d-a0fb-4165-a296-d953992b9005\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T03:51:06.5902657+00:00\",\r\n \"endTime\": + \"2021-04-09T03:51:06.6996311+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"d51f93e6-4eaf-4a09-9fea-8a7314616687\"\r\n}" headers: cache-control: - no-cache @@ -131,7 +131,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:39:06 GMT + - Fri, 09 Apr 2021 03:51:38 GMT expires: - '-1' pragma: @@ -148,7 +148,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4194 + - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4115 status: code: 200 message: OK @@ -174,7 +174,7 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_IW6VJJ3JP5ZB\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_Z2Y6MOKXVPPQ\"\r\n },\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -184,7 +184,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:39:07 GMT + - Fri, 09 Apr 2021 03:51:38 GMT expires: - '-1' pragma: @@ -201,7 +201,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGallery3Min;340,Microsoft.Compute/GetGallery30Min;2490 + - Microsoft.Compute/GetGallery3Min;341,Microsoft.Compute/GetGallery30Min;2461 status: code: 200 message: OK @@ -227,7 +227,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -236,7 +236,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:39:07 GMT + - Fri, 09 Apr 2021 03:51:38 GMT expires: - '-1' pragma: @@ -284,7 +284,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/ea016098-1530-4a69-a56e-5e06f85a3d4e?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/2432c1ef-d93f-40fe-bb60-636146356d09?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -292,7 +292,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:39:14 GMT + - Fri, 09 Apr 2021 03:51:46 GMT expires: - '-1' pragma: @@ -305,9 +305,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImage3Min;148,Microsoft.Compute/CreateUpdateGalleryImage30Min;748 + - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;746 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -327,12 +327,12 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/ea016098-1530-4a69-a56e-5e06f85a3d4e?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/2432c1ef-d93f-40fe-bb60-636146356d09?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:39:13.0632191+00:00\",\r\n \"endTime\": - \"2021-04-07T06:39:13.1569681+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"ea016098-1530-4a69-a56e-5e06f85a3d4e\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T03:51:44.6371486+00:00\",\r\n \"endTime\": + \"2021-04-09T03:51:44.7621727+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"2432c1ef-d93f-40fe-bb60-636146356d09\"\r\n}" headers: cache-control: - no-cache @@ -341,7 +341,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:39:44 GMT + - Fri, 09 Apr 2021 03:52:16 GMT expires: - '-1' pragma: @@ -358,7 +358,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4189 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4111 status: code: 200 message: OK @@ -396,7 +396,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:39:44 GMT + - Fri, 09 Apr 2021 03:52:16 GMT expires: - '-1' pragma: @@ -413,7 +413,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;588,Microsoft.Compute/GetGalleryImage30Min;2988 + - Microsoft.Compute/GetGalleryImage3Min;594,Microsoft.Compute/GetGalleryImage30Min;2957 status: code: 200 message: OK @@ -439,7 +439,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -448,7 +448,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:39:45 GMT + - Fri, 09 Apr 2021 03:52:16 GMT expires: - '-1' pragma: @@ -527,13 +527,13 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Wed, 07 Apr 2021 06:39:46 GMT + - Fri, 09 Apr 2021 03:52:18 GMT etag: - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" expires: - - Wed, 07 Apr 2021 06:44:46 GMT + - Fri, 09 Apr 2021 03:57:18 GMT source-age: - - '284' + - '136' strict-transport-security: - max-age=31536000 vary: @@ -547,15 +547,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - c1485ce59a4d48e8567b09d9fe87de76b33041cb + - 6e0dafe57dc9df0afffd4e71caa1cb1741d0d2ed x-frame-options: - deny x-github-request-id: - - F382:5F6B:C6E59:EBF3D:606D47A2 + - C62E:4586:4AE6C2:58C97E:606FB659 x-served-by: - - cache-qpg1239-QPG + - cache-qpg1250-QPG x-timer: - - S1617777587.587406,VS0,VE0 + - S1617940338.133329,VS0,VE0 x-xss-protection: - 1; mode=block status: @@ -589,7 +589,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:39:46 GMT + - Fri, 09 Apr 2021 03:52:17 GMT expires: - '-1' pragma: @@ -656,18 +656,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_nrIQr0WiH97p72tNc1MW54PxsInQcIym","name":"vm_deploy_nrIQr0WiH97p72tNc1MW54PxsInQcIym","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6193419592610016669","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-07T06:39:49.8619132Z","duration":"PT1.1678796S","correlationId":"f1a52f2a-760e-4de8-9c77-dd0b2fa6cb85","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_r4DR0vigI6Z52exHetJoA2lmuPsFtaTT","name":"vm_deploy_r4DR0vigI6Z52exHetJoA2lmuPsFtaTT","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15126210756843502239","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-09T03:52:22.3582207Z","duration":"PT2.1729794S","correlationId":"0a8fa1d4-5da3-48c3-a300-a805f5fa2d25","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_nrIQr0WiH97p72tNc1MW54PxsInQcIym/operationStatuses/08585838292967836531?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_r4DR0vigI6Z52exHetJoA2lmuPsFtaTT/operationStatuses/08585836665452924061?api-version=2020-10-01 cache-control: - no-cache content-length: - - '2781' + - '2782' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:39:51 GMT + - Fri, 09 Apr 2021 03:52:24 GMT expires: - '-1' pragma: @@ -677,7 +677,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -698,7 +698,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585838292967836531?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836665452924061?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -710,7 +710,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:40:21 GMT + - Fri, 09 Apr 2021 03:52:54 GMT expires: - '-1' pragma: @@ -741,7 +741,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585838292967836531?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836665452924061?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -753,7 +753,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:40:53 GMT + - Fri, 09 Apr 2021 03:53:24 GMT expires: - '-1' pragma: @@ -787,16 +787,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_nrIQr0WiH97p72tNc1MW54PxsInQcIym","name":"vm_deploy_nrIQr0WiH97p72tNc1MW54PxsInQcIym","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6193419592610016669","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-07T06:40:30.7052459Z","duration":"PT42.0112123S","correlationId":"f1a52f2a-760e-4de8-9c77-dd0b2fa6cb85","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_r4DR0vigI6Z52exHetJoA2lmuPsFtaTT","name":"vm_deploy_r4DR0vigI6Z52exHetJoA2lmuPsFtaTT","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15126210756843502239","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-09T03:53:00.6182565Z","duration":"PT40.4330152S","correlationId":"0a8fa1d4-5da3-48c3-a300-a805f5fa2d25","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}' headers: cache-control: - no-cache content-length: - - '3846' + - '3847' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:40:53 GMT + - Fri, 09 Apr 2021 03:53:25 GMT expires: - '-1' pragma: @@ -831,16 +831,16 @@ interactions: body: string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"77bd0a16-e27b-4d4a-afdb-4fee1e806a73\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"6afa5107-b6d7-4cd3-a5f3-cb324e6782e7\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202103250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"vm1_disk1_1a2fa795a1e340349cb7cd373b2854fa\",\r\n + \"Linux\",\r\n \"name\": \"vm1_disk1_542ef6000e4744b5b446b31c49c2757b\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_1a2fa795a1e340349cb7cd373b2854fa\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_542ef6000e4744b5b446b31c49c2757b\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n \ \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": {\r\n @@ -855,15 +855,15 @@ interactions: [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \ \"message\": \"Guest Agent is running\",\r\n \"time\": - \"2021-04-07T06:40:51+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_disk1_1a2fa795a1e340349cb7cd373b2854fa\",\r\n + \"2021-04-09T03:53:23+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_disk1_542ef6000e4744b5b446b31c49c2757b\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-07T06:40:14.5148274+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-09T03:52:47.1262889+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-07T06:40:29.8161898+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-09T03:52:57.3611395+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n \ }\r\n ]\r\n }\r\n }\r\n}" @@ -875,7 +875,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:40:54 GMT + - Fri, 09 Apr 2021 03:53:26 GMT expires: - '-1' pragma: @@ -892,7 +892,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31951 + - Microsoft.Compute/LowCostGet3Min;3978,Microsoft.Compute/LowCostGet30Min;31719 status: code: 200 message: OK @@ -916,12 +916,12 @@ interactions: response: body: string: "{\r\n \"name\": \"vm1VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\r\n - \ \"etag\": \"W/\\\"3542fa26-757a-4aa1-8492-8ebc72c5dd18\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"049e09d0-02b1-4adf-a9c4-a70e0f2e1891\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"40dd08e3-0d1f-4362-a88e-abc834866970\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"753f6256-2e25-47cb-b3d7-49996f39c902\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm1\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\r\n - \ \"etag\": \"W/\\\"3542fa26-757a-4aa1-8492-8ebc72c5dd18\\\"\",\r\n + \ \"etag\": \"W/\\\"049e09d0-02b1-4adf-a9c4-a70e0f2e1891\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -930,8 +930,8 @@ interactions: \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": - \"arwansdoionerkksu3wj2bxajc.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-22-48-04-71-59\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"u4kgf4byuanurlba2fjy2vkzpa.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-36-FA-F3\",\r\n \"enableAcceleratedNetworking\": false,\r\n \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -945,9 +945,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:40:54 GMT + - Fri, 09 Apr 2021 03:53:27 GMT etag: - - W/"3542fa26-757a-4aa1-8492-8ebc72c5dd18" + - W/"049e09d0-02b1-4adf-a9c4-a70e0f2e1891" expires: - '-1' pragma: @@ -964,7 +964,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9256c58e-ed6c-46cf-a9d1-f2449cb6dcdf + - ec215062-bf68-4f00-918e-c55822533e0d status: code: 200 message: OK @@ -988,10 +988,10 @@ interactions: response: body: string: "{\r\n \"name\": \"vm1PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\r\n - \ \"etag\": \"W/\\\"986abc3f-04cf-4ee1-a460-40ff0da9b626\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"59cf5442-a63a-47cc-ae87-0a6efedcee7b\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"6948cb4d-6bdb-425a-8a05-81675e5213f5\",\r\n - \ \"ipAddress\": \"104.42.212.79\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"da229d21-f6a7-4196-b578-1a63c87e7f7f\",\r\n + \ \"ipAddress\": \"168.62.205.98\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n @@ -1004,9 +1004,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:40:54 GMT + - Fri, 09 Apr 2021 03:53:27 GMT etag: - - W/"986abc3f-04cf-4ee1-a460-40ff0da9b626" + - W/"59cf5442-a63a-47cc-ae87-0a6efedcee7b" expires: - '-1' pragma: @@ -1023,7 +1023,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e236aac4-926b-4e4f-8df9-27782291c2ba + - 2aba49e2-edf4-4de9-9db9-697f3fa118d9 status: code: 200 message: OK @@ -1048,16 +1048,16 @@ interactions: body: string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"77bd0a16-e27b-4d4a-afdb-4fee1e806a73\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"6afa5107-b6d7-4cd3-a5f3-cb324e6782e7\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202103250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"vm1_disk1_1a2fa795a1e340349cb7cd373b2854fa\",\r\n + \"Linux\",\r\n \"name\": \"vm1_disk1_542ef6000e4744b5b446b31c49c2757b\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_1a2fa795a1e340349cb7cd373b2854fa\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_542ef6000e4744b5b446b31c49c2757b\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n \ \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": {\r\n @@ -1075,7 +1075,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:40:56 GMT + - Fri, 09 Apr 2021 03:53:27 GMT expires: - '-1' pragma: @@ -1092,7 +1092,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31950 + - Microsoft.Compute/LowCostGet3Min;3977,Microsoft.Compute/LowCostGet30Min;31718 status: code: 200 message: OK @@ -1112,10 +1112,10 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/vm1_disk1_1a2fa795a1e340349cb7cd373b2854fa?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/vm1_disk1_542ef6000e4744b5b446b31c49c2757b?api-version=2020-05-01 response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/vm1_disk1_1a2fa795a1e340349cb7cd373b2854fa'' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/vm1_disk1_542ef6000e4744b5b446b31c49c2757b'' under resource group ''cli_test_test_specialized_image_000001'' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: @@ -1126,7 +1126,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:40:56 GMT + - Fri, 09 Apr 2021 03:53:28 GMT expires: - '-1' pragma: @@ -1156,11 +1156,11 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_1a2fa795a1e340349cb7cd373b2854fa?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_542ef6000e4744b5b446b31c49c2757b?api-version=2020-09-30 response: body: - string: "{\r\n \"name\": \"vm1_disk1_1a2fa795a1e340349cb7cd373b2854fa\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_1a2fa795a1e340349cb7cd373b2854fa\",\r\n + string: "{\r\n \"name\": \"vm1_disk1_542ef6000e4744b5b446b31c49c2757b\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_542ef6000e4744b5b446b31c49c2757b\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n @@ -1169,9 +1169,9 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/canonical/ArtifactTypes/VMImage/Offers/ubuntuserver/Skus/18.04-lts/Versions/18.04.202103250\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-07T06:40:13.5199181+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-09T03:52:46.3748691+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"1a2fa795-a1e3-4034-9cb7-cd373b2854fa\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"542ef600-0e47-44b5-b446-b31c49c2757b\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -1181,7 +1181,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:40:57 GMT + - Fri, 09 Apr 2021 03:53:29 GMT expires: - '-1' pragma: @@ -1198,7 +1198,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4977,Microsoft.Compute/LowCostGet30Min;39976 + - Microsoft.Compute/LowCostGet3Min;4970,Microsoft.Compute/LowCostGet30Min;39853 status: code: 200 message: OK @@ -1224,7 +1224,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1233,7 +1233,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:40:58 GMT + - Fri, 09 Apr 2021 03:53:30 GMT expires: - '-1' pragma: @@ -1249,7 +1249,7 @@ interactions: message: OK - request: body: '{"location": "westus", "tags": {}, "sku": {"name": "Standard_LRS"}, "properties": - {"creationData": {"createOption": "Copy", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_1a2fa795a1e340349cb7cd373b2854fa"}}}' + {"creationData": {"createOption": "Copy", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_542ef6000e4744b5b446b31c49c2757b"}}}' headers: Accept: - application/json @@ -1274,13 +1274,13 @@ interactions: string: "{\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \ \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n - \ \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_1a2fa795a1e340349cb7cd373b2854fa\",\r\n - \ \"sourceUniqueId\": \"1a2fa795-a1e3-4034-9cb7-cd373b2854fa\"\r\n },\r\n + \ \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_542ef6000e4744b5b446b31c49c2757b\",\r\n + \ \"sourceUniqueId\": \"542ef600-0e47-44b5-b446-b31c49c2757b\"\r\n },\r\n \ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/798c809e-48b5-4f04-9941-9045484fa332?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/833f2974-1a0e-492e-976d-2e243167895e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1288,11 +1288,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:41:03 GMT + - Fri, 09 Apr 2021 03:53:33 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/798c809e-48b5-4f04-9941-9045484fa332?monitor=true&api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/833f2974-1a0e-492e-976d-2e243167895e?monitor=true&api-version=2020-05-01 pragma: - no-cache server: @@ -1303,9 +1303,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;998,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7998 + - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;998,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7994 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 202 message: Accepted @@ -1325,25 +1325,25 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/798c809e-48b5-4f04-9941-9045484fa332?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/833f2974-1a0e-492e-976d-2e243167895e?api-version=2020-05-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:41:03.6295998+00:00\",\r\n \"endTime\": - \"2021-04-07T06:41:04.2702253+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-09T03:53:34.3605877+00:00\",\r\n \"endTime\": + \"2021-04-09T03:53:35.1262338+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\",\r\n \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \ \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_1a2fa795a1e340349cb7cd373b2854fa\",\r\n - \ \"sourceUniqueId\": \"1a2fa795-a1e3-4034-9cb7-cd373b2854fa\"\r\n },\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_542ef6000e4744b5b446b31c49c2757b\",\r\n + \ \"sourceUniqueId\": \"542ef600-0e47-44b5-b446-b31c49c2757b\"\r\n },\r\n \ \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-07T06:41:03.6295998+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-09T03:53:34.3605877+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"9ca613fb-5206-4a75-8b1e-217c50ef180a\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"1ea649d1-d0b2-4703-a654-585264194861\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"798c809e-48b5-4f04-9941-9045484fa332\"\r\n}" + \"833f2974-1a0e-492e-976d-2e243167895e\"\r\n}" headers: cache-control: - no-cache @@ -1352,7 +1352,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:41:05 GMT + - Fri, 09 Apr 2021 03:53:35 GMT expires: - '-1' pragma: @@ -1369,7 +1369,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49985,Microsoft.Compute/GetOperation30Min;399985 + - Microsoft.Compute/GetOperation3Min;49982,Microsoft.Compute/GetOperation30Min;399872 status: code: 200 message: OK @@ -1397,12 +1397,12 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \ \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_1a2fa795a1e340349cb7cd373b2854fa\",\r\n - \ \"sourceUniqueId\": \"1a2fa795-a1e3-4034-9cb7-cd373b2854fa\"\r\n },\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_542ef6000e4744b5b446b31c49c2757b\",\r\n + \ \"sourceUniqueId\": \"542ef600-0e47-44b5-b446-b31c49c2757b\"\r\n },\r\n \ \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-07T06:41:03.6295998+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-09T03:53:34.3605877+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"9ca613fb-5206-4a75-8b1e-217c50ef180a\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"1ea649d1-d0b2-4703-a654-585264194861\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -1412,7 +1412,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:41:06 GMT + - Fri, 09 Apr 2021 03:53:36 GMT expires: - '-1' pragma: @@ -1429,7 +1429,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4976,Microsoft.Compute/LowCostGet30Min;39975 + - Microsoft.Compute/LowCostGet3Min;4969,Microsoft.Compute/LowCostGet30Min;39852 status: code: 200 message: OK @@ -1455,7 +1455,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1464,7 +1464,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:41:06 GMT + - Fri, 09 Apr 2021 03:53:37 GMT expires: - '-1' pragma: @@ -1500,7 +1500,7 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0\",\r\n @@ -1509,7 +1509,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-07T06:41:11.3591832+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-09T03:53:40.9029298+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"hostCaching\": \"ReadWrite\",\r\n \ \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -1517,7 +1517,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/b63f60bb-6258-4c9a-b355-bb7f0b7057c9?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d10517f2-61ac-4334-be15-33f57c1bd413?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -1525,7 +1525,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:41:12 GMT + - Fri, 09 Apr 2021 03:53:41 GMT expires: - '-1' pragma: @@ -1538,9 +1538,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;373,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1198 + - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;373,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1194 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' status: code: 201 message: Created @@ -1560,11 +1560,11 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/b63f60bb-6258-4c9a-b355-bb7f0b7057c9?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d10517f2-61ac-4334-be15-33f57c1bd413?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:41:11.3591832+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"b63f60bb-6258-4c9a-b355-bb7f0b7057c9\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T03:53:40.8872814+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d10517f2-61ac-4334-be15-33f57c1bd413\"\r\n}" headers: cache-control: - no-cache @@ -1573,7 +1573,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:42:12 GMT + - Fri, 09 Apr 2021 03:54:42 GMT expires: - '-1' pragma: @@ -1590,7 +1590,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;4178 + - Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;4101 status: code: 200 message: OK @@ -1610,11 +1610,11 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/b63f60bb-6258-4c9a-b355-bb7f0b7057c9?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d10517f2-61ac-4334-be15-33f57c1bd413?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:41:11.3591832+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"b63f60bb-6258-4c9a-b355-bb7f0b7057c9\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T03:53:40.8872814+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d10517f2-61ac-4334-be15-33f57c1bd413\"\r\n}" headers: cache-control: - no-cache @@ -1623,7 +1623,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:43:13 GMT + - Fri, 09 Apr 2021 03:55:42 GMT expires: - '-1' pragma: @@ -1640,7 +1640,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4175 + - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4102 status: code: 200 message: OK @@ -1660,11 +1660,11 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/b63f60bb-6258-4c9a-b355-bb7f0b7057c9?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d10517f2-61ac-4334-be15-33f57c1bd413?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:41:11.3591832+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"b63f60bb-6258-4c9a-b355-bb7f0b7057c9\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T03:53:40.8872814+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d10517f2-61ac-4334-be15-33f57c1bd413\"\r\n}" headers: cache-control: - no-cache @@ -1673,7 +1673,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:44:13 GMT + - Fri, 09 Apr 2021 03:56:43 GMT expires: - '-1' pragma: @@ -1690,7 +1690,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4171 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4098 status: code: 200 message: OK @@ -1710,11 +1710,11 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/b63f60bb-6258-4c9a-b355-bb7f0b7057c9?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d10517f2-61ac-4334-be15-33f57c1bd413?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:41:11.3591832+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"b63f60bb-6258-4c9a-b355-bb7f0b7057c9\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T03:53:40.8872814+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d10517f2-61ac-4334-be15-33f57c1bd413\"\r\n}" headers: cache-control: - no-cache @@ -1723,7 +1723,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:45:14 GMT + - Fri, 09 Apr 2021 03:57:44 GMT expires: - '-1' pragma: @@ -1740,7 +1740,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4167 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4094 status: code: 200 message: OK @@ -1760,11 +1760,11 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/b63f60bb-6258-4c9a-b355-bb7f0b7057c9?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d10517f2-61ac-4334-be15-33f57c1bd413?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:41:11.3591832+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"b63f60bb-6258-4c9a-b355-bb7f0b7057c9\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T03:53:40.8872814+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d10517f2-61ac-4334-be15-33f57c1bd413\"\r\n}" headers: cache-control: - no-cache @@ -1773,7 +1773,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:46:16 GMT + - Fri, 09 Apr 2021 03:58:44 GMT expires: - '-1' pragma: @@ -1790,7 +1790,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4163 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4090 status: code: 200 message: OK @@ -1810,11 +1810,11 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/b63f60bb-6258-4c9a-b355-bb7f0b7057c9?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d10517f2-61ac-4334-be15-33f57c1bd413?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:41:11.3591832+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"b63f60bb-6258-4c9a-b355-bb7f0b7057c9\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T03:53:40.8872814+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d10517f2-61ac-4334-be15-33f57c1bd413\"\r\n}" headers: cache-control: - no-cache @@ -1823,7 +1823,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:47:16 GMT + - Fri, 09 Apr 2021 03:59:45 GMT expires: - '-1' pragma: @@ -1840,7 +1840,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4159 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4086 status: code: 200 message: OK @@ -1860,11 +1860,11 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/b63f60bb-6258-4c9a-b355-bb7f0b7057c9?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d10517f2-61ac-4334-be15-33f57c1bd413?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:41:11.3591832+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"b63f60bb-6258-4c9a-b355-bb7f0b7057c9\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T03:53:40.8872814+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d10517f2-61ac-4334-be15-33f57c1bd413\"\r\n}" headers: cache-control: - no-cache @@ -1873,7 +1873,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:48:17 GMT + - Fri, 09 Apr 2021 04:00:44 GMT expires: - '-1' pragma: @@ -1890,7 +1890,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4154 + - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4088 status: code: 200 message: OK @@ -1910,11 +1910,11 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/b63f60bb-6258-4c9a-b355-bb7f0b7057c9?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d10517f2-61ac-4334-be15-33f57c1bd413?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:41:11.3591832+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"b63f60bb-6258-4c9a-b355-bb7f0b7057c9\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T03:53:40.8872814+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d10517f2-61ac-4334-be15-33f57c1bd413\"\r\n}" headers: cache-control: - no-cache @@ -1923,7 +1923,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:49:18 GMT + - Fri, 09 Apr 2021 04:01:46 GMT expires: - '-1' pragma: @@ -1940,7 +1940,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4150 + - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4085 status: code: 200 message: OK @@ -1960,62 +1960,12 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/b63f60bb-6258-4c9a-b355-bb7f0b7057c9?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d10517f2-61ac-4334-be15-33f57c1bd413?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:41:11.3591832+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"b63f60bb-6258-4c9a-b355-bb7f0b7057c9\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 07 Apr 2021 06:50:19 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;4145 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version create - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot - User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/b63f60bb-6258-4c9a-b355-bb7f0b7057c9?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2021-04-07T06:41:11.3591832+00:00\",\r\n \"endTime\": - \"2021-04-07T06:50:57.3766784+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"b63f60bb-6258-4c9a-b355-bb7f0b7057c9\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T03:53:40.8872814+00:00\",\r\n \"endTime\": + \"2021-04-09T04:02:41.5766932+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"d10517f2-61ac-4334-be15-33f57c1bd413\"\r\n}" headers: cache-control: - no-cache @@ -2024,7 +1974,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:51:19 GMT + - Fri, 09 Apr 2021 04:02:47 GMT expires: - '-1' pragma: @@ -2041,7 +1991,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;4140 + - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4081 status: code: 200 message: OK @@ -2061,7 +2011,7 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0\",\r\n @@ -2070,7 +2020,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-07T06:41:11.3591832+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-09T03:53:40.9029298+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": \"ReadWrite\",\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2084,7 +2034,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:51:20 GMT + - Fri, 09 Apr 2021 04:02:47 GMT expires: - '-1' pragma: @@ -2101,7 +2051,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1995,Microsoft.Compute/GetGalleryImageVersion30Min;9987 + - Microsoft.Compute/GetGalleryImageVersion3Min;1994,Microsoft.Compute/GetGalleryImageVersion30Min;9961 status: code: 200 message: OK @@ -2127,7 +2077,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2136,7 +2086,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:51:20 GMT + - Fri, 09 Apr 2021 04:02:48 GMT expires: - '-1' pragma: @@ -2184,7 +2134,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:51:21 GMT + - Fri, 09 Apr 2021 04:02:48 GMT expires: - '-1' pragma: @@ -2201,7 +2151,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;586,Microsoft.Compute/GetGalleryImage30Min;2960 + - Microsoft.Compute/GetGalleryImage3Min;590,Microsoft.Compute/GetGalleryImage30Min;2944 status: code: 200 message: OK @@ -2221,7 +2171,7 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0\",\r\n @@ -2230,7 +2180,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-07T06:41:11.3591832+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-09T03:53:40.9029298+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": \"ReadWrite\",\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2244,7 +2194,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:51:22 GMT + - Fri, 09 Apr 2021 04:02:49 GMT expires: - '-1' pragma: @@ -2261,7 +2211,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1994,Microsoft.Compute/GetGalleryImageVersion30Min;9986 + - Microsoft.Compute/GetGalleryImageVersion3Min;1993,Microsoft.Compute/GetGalleryImageVersion30Min;9960 status: code: 200 message: OK @@ -2286,14 +2236,14 @@ interactions: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vm1VNET\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\r\n - \ \"etag\": \"W/\\\"b24d7ddb-4e79-4d65-9972-ec7c2a0e962f\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"26778bab-c605-4cb4-82b6-0d39983cbe6e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"c8066c04-436e-489a-a952-a76c9e06e04a\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"f86294a7-a038-481b-ac20-e1538e555978\",\r\n \ \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n \ ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"vm1Subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\r\n - \ \"etag\": \"W/\\\"b24d7ddb-4e79-4d65-9972-ec7c2a0e962f\\\"\",\r\n + \ \"etag\": \"W/\\\"26778bab-c605-4cb4-82b6-0d39983cbe6e\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n @@ -2309,7 +2259,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:51:23 GMT + - Fri, 09 Apr 2021 04:02:49 GMT expires: - '-1' pragma: @@ -2326,7 +2276,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1a3ffbf6-7199-4090-b82c-2dc7065a1411 + - 003203cd-a7d8-4ba6-97fc-bef91b7f542c status: code: 200 message: OK @@ -2378,18 +2328,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_xfvHSfNkaV4gUASsTgrhTaXUBd5MS2rI","name":"vm_deploy_xfvHSfNkaV4gUASsTgrhTaXUBd5MS2rI","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8412955923434586431","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-07T06:51:27.5736553Z","duration":"PT2.2393876S","correlationId":"0bafcc1f-b39e-453d-9b53-7892158cc2b9","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_VTIt2irFp2hrPuZkLLZlDvrRP4lb6Ow0","name":"vm_deploy_VTIt2irFp2hrPuZkLLZlDvrRP4lb6Ow0","type":"Microsoft.Resources/deployments","properties":{"templateHash":"10034398040209273652","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-09T04:02:54.0279081Z","duration":"PT2.0418405S","correlationId":"3afb1876-2ffd-4887-aed1-edeb6844f5c9","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_xfvHSfNkaV4gUASsTgrhTaXUBd5MS2rI/operationStatuses/08585838286001433624?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_VTIt2irFp2hrPuZkLLZlDvrRP4lb6Ow0/operationStatuses/08585836659134915581?api-version=2020-10-01 cache-control: - no-cache content-length: - - '2443' + - '2444' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:51:28 GMT + - Fri, 09 Apr 2021 04:02:55 GMT expires: - '-1' pragma: @@ -2420,7 +2370,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585838286001433624?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836659134915581?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -2432,7 +2382,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:51:59 GMT + - Fri, 09 Apr 2021 04:03:25 GMT expires: - '-1' pragma: @@ -2463,7 +2413,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585838286001433624?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836659134915581?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -2475,7 +2425,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:52:30 GMT + - Fri, 09 Apr 2021 04:03:56 GMT expires: - '-1' pragma: @@ -2509,16 +2459,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_xfvHSfNkaV4gUASsTgrhTaXUBd5MS2rI","name":"vm_deploy_xfvHSfNkaV4gUASsTgrhTaXUBd5MS2rI","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8412955923434586431","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-07T06:52:06.7564893Z","duration":"PT41.4222216S","correlationId":"0bafcc1f-b39e-453d-9b53-7892158cc2b9","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_VTIt2irFp2hrPuZkLLZlDvrRP4lb6Ow0","name":"vm_deploy_VTIt2irFp2hrPuZkLLZlDvrRP4lb6Ow0","type":"Microsoft.Resources/deployments","properties":{"templateHash":"10034398040209273652","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-09T04:03:41.9973408Z","duration":"PT50.0112732S","correlationId":"3afb1876-2ffd-4887-aed1-edeb6844f5c9","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"}]}}' headers: cache-control: - no-cache content-length: - - '3304' + - '3305' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:52:30 GMT + - Fri, 09 Apr 2021 04:03:57 GMT expires: - '-1' pragma: @@ -2553,15 +2503,15 @@ interactions: body: string: "{\r\n \"name\": \"vm2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"b4c20e14-2657-4115-aa08-1821dcbf48bc\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"b3338194-6224-40e6-91e7-0b4db0be51bb\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0\",\r\n \ \"exactVersion\": \"1.0.0\"\r\n },\r\n \"osDisk\": {\r\n - \ \"osType\": \"Linux\",\r\n \"name\": \"vm2_OsDisk_1_9ccc9833c26c4e63b8ccb32a596fefcc\",\r\n + \ \"osType\": \"Linux\",\r\n \"name\": \"vm2_OsDisk_1_0c1267b0373c411d9de28e5134d27ad8\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm2_OsDisk_1_9ccc9833c26c4e63b8ccb32a596fefcc\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm2_OsDisk_1_0c1267b0373c411d9de28e5134d27ad8\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\"}]},\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": @@ -2569,18 +2519,18 @@ interactions: \ {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \ \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet - populated.\",\r\n \"time\": \"2021-04-07T06:52:31+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2021-04-09T04:03:57+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"vm2_OsDisk_1_9ccc9833c26c4e63b8ccb32a596fefcc\",\r\n \"statuses\": + \"vm2_OsDisk_1_0c1267b0373c411d9de28e5134d27ad8\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-07T06:51:50.9381049+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-09T04:03:19.8118207+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"OSState/specialized\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM specialized\"\r\n \ },\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-07T06:52:05.3762496+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-09T04:03:40.4690526+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n \ }\r\n ]\r\n }\r\n }\r\n}" @@ -2592,7 +2542,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:52:31 GMT + - Fri, 09 Apr 2021 04:03:57 GMT expires: - '-1' pragma: @@ -2609,7 +2559,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31939 + - Microsoft.Compute/LowCostGet3Min;3979,Microsoft.Compute/LowCostGet30Min;31755 status: code: 200 message: OK @@ -2633,12 +2583,12 @@ interactions: response: body: string: "{\r\n \"name\": \"vm2VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\",\r\n - \ \"etag\": \"W/\\\"de2578a8-5667-4c1d-a8b8-482822d21b52\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"106ed6d6-d5f0-4448-8c35-dfe762c543a8\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"b8983c93-498d-41c6-a1a3-b6acfa50945b\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"0ffa3251-e043-4ebc-b760-93cac1657914\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm2\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2\",\r\n - \ \"etag\": \"W/\\\"de2578a8-5667-4c1d-a8b8-482822d21b52\\\"\",\r\n + \ \"etag\": \"W/\\\"106ed6d6-d5f0-4448-8c35-dfe762c543a8\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": @@ -2647,8 +2597,8 @@ interactions: \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": - \"arwansdoionerkksu3wj2bxajc.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-22-48-06-E8-6D\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"u4kgf4byuanurlba2fjy2vkzpa.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-22-48-09-8B-85\",\r\n \"enableAcceleratedNetworking\": false,\r\n \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -2662,9 +2612,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:52:31 GMT + - Fri, 09 Apr 2021 04:03:57 GMT etag: - - W/"de2578a8-5667-4c1d-a8b8-482822d21b52" + - W/"106ed6d6-d5f0-4448-8c35-dfe762c543a8" expires: - '-1' pragma: @@ -2681,7 +2631,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3cce88ae-4401-4a84-8656-9c7d166dfbff + - 08c17171-c70c-476f-81f2-8c51b11693f1 status: code: 200 message: OK @@ -2705,11 +2655,11 @@ interactions: response: body: string: "{\r\n \"name\": \"vm2PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\",\r\n - \ \"etag\": \"W/\\\"62861409-a3d5-42ae-87ea-beb3db31f98b\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"4c7f5f8b-0fb7-4211-84fe-b11ae2d21352\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"a1999384-92b2-4526-926c-33741de27ff6\",\r\n - \ \"ipAddress\": \"40.112.186.199\",\r\n \"publicIPAddressVersion\": - \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + \"Succeeded\",\r\n \"resourceGuid\": \"633777e9-4ecb-48e1-88a1-8e7c5ccdd8e4\",\r\n + \ \"ipAddress\": \"13.91.219.60\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" @@ -2717,13 +2667,13 @@ interactions: cache-control: - no-cache content-length: - - '998' + - '996' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:52:31 GMT + - Fri, 09 Apr 2021 04:03:57 GMT etag: - - W/"62861409-a3d5-42ae-87ea-beb3db31f98b" + - W/"4c7f5f8b-0fb7-4211-84fe-b11ae2d21352" expires: - '-1' pragma: @@ -2740,7 +2690,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f0d092fa-3a4b-42dd-828c-87f9c2f0c88f + - b20d27f5-485f-4758-978f-9fc939aed6f2 status: code: 200 message: OK @@ -2766,7 +2716,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2775,7 +2725,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:52:32 GMT + - Fri, 09 Apr 2021 04:03:58 GMT expires: - '-1' pragma: @@ -2823,7 +2773,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:52:33 GMT + - Fri, 09 Apr 2021 04:03:59 GMT expires: - '-1' pragma: @@ -2840,7 +2790,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;589,Microsoft.Compute/GetGalleryImage30Min;2957 + - Microsoft.Compute/GetGalleryImage3Min;586,Microsoft.Compute/GetGalleryImage30Min;2939 status: code: 200 message: OK @@ -2860,7 +2810,7 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0\",\r\n @@ -2869,7 +2819,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-07T06:41:11.3591832+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-09T03:53:40.9029298+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": \"ReadWrite\",\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2883,7 +2833,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:52:34 GMT + - Fri, 09 Apr 2021 04:04:00 GMT expires: - '-1' pragma: @@ -2900,7 +2850,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1992,Microsoft.Compute/GetGalleryImageVersion30Min;9983 + - Microsoft.Compute/GetGalleryImageVersion3Min;1988,Microsoft.Compute/GetGalleryImageVersion30Min;9953 status: code: 200 message: OK @@ -2925,14 +2875,14 @@ interactions: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vm1VNET\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\r\n - \ \"etag\": \"W/\\\"9e7b57fc-2dbc-4a31-b998-3f2e2e76cdb1\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"625484df-741c-4877-8bef-ef80b554850b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"c8066c04-436e-489a-a952-a76c9e06e04a\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"f86294a7-a038-481b-ac20-e1538e555978\",\r\n \ \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n \ ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"vm1Subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\r\n - \ \"etag\": \"W/\\\"9e7b57fc-2dbc-4a31-b998-3f2e2e76cdb1\\\"\",\r\n + \ \"etag\": \"W/\\\"625484df-741c-4877-8bef-ef80b554850b\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n @@ -2949,7 +2899,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:52:34 GMT + - Fri, 09 Apr 2021 04:03:59 GMT expires: - '-1' pragma: @@ -2966,7 +2916,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8d4119ce-b855-4439-974c-2315ef849db4 + - 9abaedc1-14bf-4036-ba9b-f2e8fac6dc72 status: code: 200 message: OK @@ -2988,11 +2938,14 @@ interactions: {"type": "Microsoft.Compute/virtualMachineScaleSets", "name": "vmss1", "location": "westus", "tags": {}, "apiVersion": "2020-12-01", "dependsOn": ["Microsoft.Network/loadBalancers/vmss1LB"], "sku": {"name": "Standard_DS1_v2", "capacity": 2}, "properties": {"overprovision": - true, "upgradePolicy": {"mode": "manual"}, "virtualMachineProfile": {"storageProfile": - {"osDisk": {"createOption": "FromImage", "caching": "ReadWrite", "managedDisk": - {"storageAccountType": null}}, "imageReference": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0"}}, - "networkProfile": {"networkInterfaceConfigurations": [{"name": "vmss138adNic", - "properties": {"primary": "true", "ipConfigurations": [{"name": "vmss138adIPConfig", + true, "upgradePolicy": {"mode": "manual", "rollingUpgradePolicy": {"maxBatchInstancePercent": + null, "maxUnhealthyInstancePercent": null, "maxUnhealthyUpgradedInstancePercent": + null, "pauseTimeBetweenBatches": null, "enableCrossZoneUpgrade": null, "prioritizeUnhealthyInstances": + null}}, "virtualMachineProfile": {"storageProfile": {"osDisk": {"createOption": + "FromImage", "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, + "imageReference": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0"}}, + "networkProfile": {"networkInterfaceConfigurations": [{"name": "vmss10f7dNic", + "properties": {"primary": "true", "ipConfigurations": [{"name": "vmss10f7dIPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"}, "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}], "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}}, @@ -3010,7 +2963,7 @@ interactions: Connection: - keep-alive Content-Length: - - '3433' + - '3677' Content-Type: - application/json; charset=utf-8 ParameterSetName: @@ -3024,18 +2977,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_Z32j6Brn4zhBkAi0U8bvwpvfcPzduCJY","name":"vmss_deploy_Z32j6Brn4zhBkAi0U8bvwpvfcPzduCJY","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15694384757085163444","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-07T06:52:39.5339321Z","duration":"PT1.9961447S","correlationId":"409ea1b8-fa57-4eab-a05e-05e134b213bf","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_R2aF4wv40y6zs6EhcBGAGtWqhZtNhc6A","name":"vmss_deploy_R2aF4wv40y6zs6EhcBGAGtWqhZtNhc6A","type":"Microsoft.Resources/deployments","properties":{"templateHash":"3327261582343558237","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-09T04:04:05.6231513Z","duration":"PT2.6666173S","correlationId":"80be6578-c10e-4007-8362-796d89bc0019","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_Z32j6Brn4zhBkAi0U8bvwpvfcPzduCJY/operationStatuses/08585838285279398413?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_R2aF4wv40y6zs6EhcBGAGtWqhZtNhc6A/operationStatuses/08585836658425210899?api-version=2020-10-01 cache-control: - no-cache content-length: - - '2106' + - '2105' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:52:41 GMT + - Fri, 09 Apr 2021 04:04:06 GMT expires: - '-1' pragma: @@ -3045,7 +2998,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' status: code: 201 message: Created @@ -3066,7 +3019,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585838285279398413?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836658425210899?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -3078,7 +3031,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:53:12 GMT + - Fri, 09 Apr 2021 04:04:38 GMT expires: - '-1' pragma: @@ -3109,7 +3062,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585838285279398413?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836658425210899?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -3121,7 +3074,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:53:43 GMT + - Fri, 09 Apr 2021 04:05:09 GMT expires: - '-1' pragma: @@ -3155,16 +3108,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_Z32j6Brn4zhBkAi0U8bvwpvfcPzduCJY","name":"vmss_deploy_Z32j6Brn4zhBkAi0U8bvwpvfcPzduCJY","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15694384757085163444","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-07T06:53:18.9376643Z","duration":"PT41.3998769S","correlationId":"409ea1b8-fa57-4eab-a05e-05e134b213bf","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss138adNic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss138adIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"ea06ddf3-98f4-4db9-ab7b-ad8ca7078733"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_R2aF4wv40y6zs6EhcBGAGtWqhZtNhc6A","name":"vmss_deploy_R2aF4wv40y6zs6EhcBGAGtWqhZtNhc6A","type":"Microsoft.Resources/deployments","properties":{"templateHash":"3327261582343558237","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-09T04:04:50.3587845Z","duration":"PT47.4022505S","correlationId":"80be6578-c10e-4007-8362-796d89bc0019","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual","rollingUpgradePolicy":{"maxBatchInstancePercent":20,"maxUnhealthyInstancePercent":20,"maxUnhealthyUpgradedInstancePercent":20,"pauseTimeBetweenBatches":"PT0S"}},"virtualMachineProfile":{"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss10f7dNic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss10f7dIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"501d11c2-20e7-4e97-b28f-f803af88695c"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"}]}}' headers: cache-control: - no-cache content-length: - - '4528' + - '4688' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:53:44 GMT + - Fri, 09 Apr 2021 04:05:10 GMT expires: - '-1' pragma: @@ -3200,7 +3153,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3209,7 +3162,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:53:44 GMT + - Fri, 09 Apr 2021 04:05:11 GMT expires: - '-1' pragma: @@ -3245,7 +3198,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3254,7 +3207,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:53:44 GMT + - Fri, 09 Apr 2021 04:05:10 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_disk_max_shares_etc.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_disk_max_shares_etc.yaml index d8420fb4758..4d5ca817edd 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_disk_max_shares_etc.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_disk_max_shares_etc.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:38:29 GMT + - Fri, 09 Apr 2021 03:51:03 GMT expires: - '-1' pragma: @@ -78,7 +78,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4233986a-b2d7-4176-803d-e95a00e5488c?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/616c50fa-60c4-497d-a5e7-4296b5db1a8d?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -86,11 +86,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:38:33 GMT + - Fri, 09 Apr 2021 03:51:08 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4233986a-b2d7-4176-803d-e95a00e5488c?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/616c50fa-60c4-497d-a5e7-4296b5db1a8d?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -101,7 +101,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999 + - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7992 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -123,11 +123,11 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4233986a-b2d7-4176-803d-e95a00e5488c?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/616c50fa-60c4-497d-a5e7-4296b5db1a8d?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:38:33.4236793+00:00\",\r\n \"endTime\": - \"2021-04-07T06:38:34.3142903+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-09T03:51:08.9054118+00:00\",\r\n \"endTime\": + \"2021-04-09T03:51:09.8741975+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n @@ -137,11 +137,11 @@ interactions: 10,\r\n \"diskIOPSReadWrite\": 100,\r\n \"diskMBpsReadWrite\": 13,\r\n \ \"readOnly\": false,\r\n \"diskIOPSReadOnly\": 200,\r\n \"diskMBpsReadOnly\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-07T06:38:33.4392671+00:00\",\r\n + \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-09T03:51:08.9054118+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"026bbd94-be6c-4316-909a-e5dc90483b55\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"0e55e8d0-d2c4-4512-a7ee-2a874d618502\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"4233986a-b2d7-4176-803d-e95a00e5488c\"\r\n}" + \"616c50fa-60c4-497d-a5e7-4296b5db1a8d\"\r\n}" headers: cache-control: - no-cache @@ -150,7 +150,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:38:36 GMT + - Fri, 09 Apr 2021 03:51:10 GMT expires: - '-1' pragma: @@ -167,7 +167,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399999 + - Microsoft.Compute/GetOperation3Min;49992,Microsoft.Compute/GetOperation30Min;399889 status: code: 200 message: OK @@ -198,9 +198,9 @@ interactions: 10,\r\n \"diskIOPSReadWrite\": 100,\r\n \"diskMBpsReadWrite\": 13,\r\n \ \"readOnly\": false,\r\n \"diskIOPSReadOnly\": 200,\r\n \"diskMBpsReadOnly\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-07T06:38:33.4392671+00:00\",\r\n + \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-09T03:51:08.9054118+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"026bbd94-be6c-4316-909a-e5dc90483b55\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"0e55e8d0-d2c4-4512-a7ee-2a874d618502\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -210,7 +210,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:38:36 GMT + - Fri, 09 Apr 2021 03:51:10 GMT expires: - '-1' pragma: @@ -227,7 +227,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4999,Microsoft.Compute/LowCostGet30Min;39998 + - Microsoft.Compute/LowCostGet3Min;4989,Microsoft.Compute/LowCostGet30Min;39881 status: code: 200 message: OK @@ -258,9 +258,9 @@ interactions: 10,\r\n \"diskIOPSReadWrite\": 100,\r\n \"diskMBpsReadWrite\": 13,\r\n \ \"readOnly\": false,\r\n \"diskIOPSReadOnly\": 200,\r\n \"diskMBpsReadOnly\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-07T06:38:33.4392671+00:00\",\r\n + \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-09T03:51:08.9054118+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"026bbd94-be6c-4316-909a-e5dc90483b55\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"0e55e8d0-d2c4-4512-a7ee-2a874d618502\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -270,7 +270,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:38:36 GMT + - Fri, 09 Apr 2021 03:51:12 GMT expires: - '-1' pragma: @@ -287,7 +287,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4998,Microsoft.Compute/LowCostGet30Min;39997 + - Microsoft.Compute/LowCostGet3Min;4988,Microsoft.Compute/LowCostGet30Min;39880 status: code: 200 message: OK @@ -329,7 +329,7 @@ interactions: \ \"faultDomain\": 0,\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f7021a03-e7d0-4901-ae71-328dc0b6a6ce?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/93718fe6-2e62-4878-a406-0ca5fe9b0fe4?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -337,11 +337,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:38:39 GMT + - Fri, 09 Apr 2021 03:51:13 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f7021a03-e7d0-4901-ae71-328dc0b6a6ce?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/93718fe6-2e62-4878-a406-0ca5fe9b0fe4?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -352,7 +352,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7998 + - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7991 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -374,11 +374,11 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f7021a03-e7d0-4901-ae71-328dc0b6a6ce?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/93718fe6-2e62-4878-a406-0ca5fe9b0fe4?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:38:39.1580501+00:00\",\r\n \"endTime\": - \"2021-04-07T06:38:39.3143038+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-09T03:51:13.9991757+00:00\",\r\n \"endTime\": + \"2021-04-09T03:51:14.1241887+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n @@ -388,11 +388,11 @@ interactions: 10,\r\n \"diskIOPSReadWrite\": 100,\r\n \"diskMBpsReadWrite\": 13,\r\n \ \"readOnly\": false,\r\n \"diskIOPSReadOnly\": 250,\r\n \"diskMBpsReadOnly\": 40,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-07T06:38:33.4392671+00:00\",\r\n + \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-09T03:51:08.9054118+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"026bbd94-be6c-4316-909a-e5dc90483b55\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"0e55e8d0-d2c4-4512-a7ee-2a874d618502\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"f7021a03-e7d0-4901-ae71-328dc0b6a6ce\"\r\n}" + \"93718fe6-2e62-4878-a406-0ca5fe9b0fe4\"\r\n}" headers: cache-control: - no-cache @@ -401,7 +401,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:38:41 GMT + - Fri, 09 Apr 2021 03:51:15 GMT expires: - '-1' pragma: @@ -418,7 +418,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49998,Microsoft.Compute/GetOperation30Min;399998 + - Microsoft.Compute/GetOperation3Min;49990,Microsoft.Compute/GetOperation30Min;399887 status: code: 200 message: OK @@ -449,9 +449,9 @@ interactions: 10,\r\n \"diskIOPSReadWrite\": 100,\r\n \"diskMBpsReadWrite\": 13,\r\n \ \"readOnly\": false,\r\n \"diskIOPSReadOnly\": 250,\r\n \"diskMBpsReadOnly\": 40,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-07T06:38:33.4392671+00:00\",\r\n + \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-09T03:51:08.9054118+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"026bbd94-be6c-4316-909a-e5dc90483b55\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"0e55e8d0-d2c4-4512-a7ee-2a874d618502\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -461,7 +461,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:38:41 GMT + - Fri, 09 Apr 2021 03:51:16 GMT expires: - '-1' pragma: @@ -478,7 +478,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4997,Microsoft.Compute/LowCostGet30Min;39996 + - Microsoft.Compute/LowCostGet3Min;4985,Microsoft.Compute/LowCostGet30Min;39877 status: code: 200 message: OK @@ -504,7 +504,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -513,7 +513,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:38:41 GMT + - Fri, 09 Apr 2021 03:51:16 GMT expires: - '-1' pragma: @@ -560,7 +560,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1c0d50e2-fa22-42e0-a01f-44687f97e9fe?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/97b958a6-53a8-4589-9e20-3a2dbdf87108?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -568,11 +568,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:38:46 GMT + - Fri, 09 Apr 2021 03:51:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1c0d50e2-fa22-42e0-a01f-44687f97e9fe?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/97b958a6-53a8-4589-9e20-3a2dbdf87108?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -583,9 +583,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7997 + - Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7990 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 202 message: Accepted @@ -605,11 +605,11 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1c0d50e2-fa22-42e0-a01f-44687f97e9fe?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/97b958a6-53a8-4589-9e20-3a2dbdf87108?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:38:46.5018101+00:00\",\r\n \"endTime\": - \"2021-04-07T06:38:47.5330674+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-09T03:51:21.1710333+00:00\",\r\n \"endTime\": + \"2021-04-09T03:51:21.936692+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d2\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n @@ -619,20 +619,20 @@ interactions: \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202002180\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-07T06:38:46.5174315+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-09T03:51:21.1866783+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"cc168e4d-b50a-40fe-87cb-2d7dd45c9bff\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"20f20fbd-1b2c-4446-8bff-0f09b33730d5\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"1c0d50e2-fa22-42e0-a01f-44687f97e9fe\"\r\n}" + \ },\r\n \"name\": \"97b958a6-53a8-4589-9e20-3a2dbdf87108\"\r\n}" headers: cache-control: - no-cache content-length: - - '1424' + - '1423' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:38:48 GMT + - Fri, 09 Apr 2021 03:51:23 GMT expires: - '-1' pragma: @@ -649,7 +649,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49995,Microsoft.Compute/GetOperation30Min;399995 + - Microsoft.Compute/GetOperation3Min;49988,Microsoft.Compute/GetOperation30Min;399885 status: code: 200 message: OK @@ -680,9 +680,9 @@ interactions: \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202002180\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-07T06:38:46.5174315+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-09T03:51:21.1866783+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"cc168e4d-b50a-40fe-87cb-2d7dd45c9bff\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"20f20fbd-1b2c-4446-8bff-0f09b33730d5\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}" headers: cache-control: @@ -692,7 +692,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:38:48 GMT + - Fri, 09 Apr 2021 03:51:23 GMT expires: - '-1' pragma: @@ -709,7 +709,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4993,Microsoft.Compute/LowCostGet30Min;39992 + - Microsoft.Compute/LowCostGet3Min;4982,Microsoft.Compute/LowCostGet30Min;39874 status: code: 200 message: OK @@ -735,7 +735,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -744,7 +744,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:38:49 GMT + - Fri, 09 Apr 2021 03:51:24 GMT expires: - '-1' pragma: @@ -792,7 +792,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:38:50 GMT + - Fri, 09 Apr 2021 03:51:25 GMT expires: - '-1' pragma: @@ -809,7 +809,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73998 + - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73993 status: code: 200 message: OK @@ -846,7 +846,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f6f2af61-f34c-4d21-abc5-38bba2d9b2b9?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/55ed8aa6-c403-4aa6-9532-ff75b3159139?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -854,11 +854,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:38:55 GMT + - Fri, 09 Apr 2021 03:51:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f6f2af61-f34c-4d21-abc5-38bba2d9b2b9?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/55ed8aa6-c403-4aa6-9532-ff75b3159139?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -869,9 +869,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;996,Microsoft.Compute/CreateUpdateDisks30Min;7996 + - Microsoft.Compute/CreateUpdateDisks3Min;996,Microsoft.Compute/CreateUpdateDisks30Min;7989 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -891,11 +891,11 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f6f2af61-f34c-4d21-abc5-38bba2d9b2b9?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/55ed8aa6-c403-4aa6-9532-ff75b3159139?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:38:56.6893153+00:00\",\r\n \"endTime\": - \"2021-04-07T06:38:57.3143077+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-09T03:51:30.1866723+00:00\",\r\n \"endTime\": + \"2021-04-09T03:51:30.6709797+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d3\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n @@ -905,11 +905,11 @@ interactions: \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202002180\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-07T06:38:56.6893153+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-09T03:51:30.1866723+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"aa0ff7c5-a8b8-4243-b311-2cdbf33c7b23\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"08906c81-022c-4fe0-9d27-2f10f20591d2\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"f6f2af61-f34c-4d21-abc5-38bba2d9b2b9\"\r\n}" + \ },\r\n \"name\": \"55ed8aa6-c403-4aa6-9532-ff75b3159139\"\r\n}" headers: cache-control: - no-cache @@ -918,7 +918,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:38:59 GMT + - Fri, 09 Apr 2021 03:51:32 GMT expires: - '-1' pragma: @@ -935,7 +935,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49993,Microsoft.Compute/GetOperation30Min;399993 + - Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399883 status: code: 200 message: OK @@ -966,9 +966,9 @@ interactions: \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202002180\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-07T06:38:56.6893153+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-09T03:51:30.1866723+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"aa0ff7c5-a8b8-4243-b311-2cdbf33c7b23\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"08906c81-022c-4fe0-9d27-2f10f20591d2\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}" headers: cache-control: @@ -978,7 +978,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:38:59 GMT + - Fri, 09 Apr 2021 03:51:32 GMT expires: - '-1' pragma: @@ -995,7 +995,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4989,Microsoft.Compute/LowCostGet30Min;39988 + - Microsoft.Compute/LowCostGet3Min;4983,Microsoft.Compute/LowCostGet30Min;39871 status: code: 200 message: OK @@ -1021,7 +1021,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1030,7 +1030,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:39:00 GMT + - Fri, 09 Apr 2021 03:51:33 GMT expires: - '-1' pragma: @@ -1070,11 +1070,11 @@ interactions: string: "{\r\n \"name\": \"g1000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-G17JBCBTR4ISJA56UDX7\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-G1NQTXVXFYJABJZW6GEG\"\r\n },\r\n \ \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/6a66eb31-7389-48b5-b7c9-ffc7509191c6?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/cc0bdf08-4630-4baa-b07d-e07aa31f2a03?api-version=2019-12-01 cache-control: - no-cache content-length: @@ -1082,7 +1082,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:39:05 GMT + - Fri, 09 Apr 2021 03:51:39 GMT expires: - '-1' pragma: @@ -1095,9 +1095,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGallery3Min;47,Microsoft.Compute/CreateUpdateGallery30Min;297 + - Microsoft.Compute/CreateUpdateGallery3Min;48,Microsoft.Compute/CreateUpdateGallery30Min;296 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -1117,12 +1117,12 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/6a66eb31-7389-48b5-b7c9-ffc7509191c6?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/cc0bdf08-4630-4baa-b07d-e07aa31f2a03?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:39:04.4069935+00:00\",\r\n \"endTime\": - \"2021-04-07T06:39:04.5007224+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"6a66eb31-7389-48b5-b7c9-ffc7509191c6\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T03:51:38.8871452+00:00\",\r\n \"endTime\": + \"2021-04-09T03:51:38.9965193+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"cc0bdf08-4630-4baa-b07d-e07aa31f2a03\"\r\n}" headers: cache-control: - no-cache @@ -1131,7 +1131,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:39:35 GMT + - Fri, 09 Apr 2021 03:52:10 GMT expires: - '-1' pragma: @@ -1148,7 +1148,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4190 + - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4112 status: code: 200 message: OK @@ -1174,7 +1174,7 @@ interactions: string: "{\r\n \"name\": \"g1000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-G17JBCBTR4ISJA56UDX7\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-G1NQTXVXFYJABJZW6GEG\"\r\n },\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -1184,7 +1184,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:39:35 GMT + - Fri, 09 Apr 2021 03:52:10 GMT expires: - '-1' pragma: @@ -1201,7 +1201,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGallery3Min;337,Microsoft.Compute/GetGallery30Min;2487 + - Microsoft.Compute/GetGallery3Min;335,Microsoft.Compute/GetGallery30Min;2455 status: code: 200 message: OK @@ -1228,7 +1228,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1237,7 +1237,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:39:37 GMT + - Fri, 09 Apr 2021 03:52:11 GMT expires: - '-1' pragma: @@ -1288,7 +1288,7 @@ interactions: \ },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/5f508d53-8b3f-4c34-b74b-831b2a00aa2d?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/5d4fb648-2efd-4622-94cb-f7cc6ac7ae87?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -1296,7 +1296,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:39:43 GMT + - Fri, 09 Apr 2021 03:52:17 GMT expires: - '-1' pragma: @@ -1309,9 +1309,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImage3Min;147,Microsoft.Compute/CreateUpdateGalleryImage30Min;747 + - Microsoft.Compute/CreateUpdateGalleryImage3Min;148,Microsoft.Compute/CreateUpdateGalleryImage30Min;745 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -1332,12 +1332,12 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/5f508d53-8b3f-4c34-b74b-831b2a00aa2d?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/5d4fb648-2efd-4622-94cb-f7cc6ac7ae87?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:39:42.4695261+00:00\",\r\n \"endTime\": - \"2021-04-07T06:39:42.5788751+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"5f508d53-8b3f-4c34-b74b-831b2a00aa2d\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T03:52:16.5121958+00:00\",\r\n \"endTime\": + \"2021-04-09T03:52:16.6059468+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"5d4fb648-2efd-4622-94cb-f7cc6ac7ae87\"\r\n}" headers: cache-control: - no-cache @@ -1346,7 +1346,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:40:13 GMT + - Fri, 09 Apr 2021 03:52:48 GMT expires: - '-1' pragma: @@ -1363,7 +1363,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;4185 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4107 status: code: 200 message: OK @@ -1403,7 +1403,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:40:13 GMT + - Fri, 09 Apr 2021 03:52:48 GMT expires: - '-1' pragma: @@ -1420,7 +1420,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;585,Microsoft.Compute/GetGalleryImage30Min;2985 + - Microsoft.Compute/GetGalleryImage3Min;589,Microsoft.Compute/GetGalleryImage30Min;2950 status: code: 200 message: OK @@ -1446,7 +1446,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1455,7 +1455,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:40:14 GMT + - Fri, 09 Apr 2021 03:52:49 GMT expires: - '-1' pragma: @@ -1500,7 +1500,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/8c853c59-2676-4055-854a-56f4ea3e046d?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/42c31bbc-afda-477d-ae03-c03ebc9bc96f?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -1508,11 +1508,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:40:19 GMT + - Fri, 09 Apr 2021 03:52:52 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/8c853c59-2676-4055-854a-56f4ea3e046d?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/42c31bbc-afda-477d-ae03-c03ebc9bc96f?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -1523,9 +1523,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;995,Microsoft.Compute/CreateUpdateDisks30Min;7995 + - Microsoft.Compute/CreateUpdateDisks3Min;995,Microsoft.Compute/CreateUpdateDisks30Min;7988 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -1545,11 +1545,11 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/8c853c59-2676-4055-854a-56f4ea3e046d?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/42c31bbc-afda-477d-ae03-c03ebc9bc96f?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:40:19.7230121+00:00\",\r\n \"endTime\": - \"2021-04-07T06:40:19.8167952+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-09T03:52:53.5624074+00:00\",\r\n \"endTime\": + \"2021-04-09T03:52:53.6561808+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"disk\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n @@ -1558,10 +1558,10 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-04-07T06:40:19.7230121+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-09T03:52:53.5624074+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"91945790-d9a5-45bc-bd72-bafbfefc4aa0\",\r\n \"networkAccessPolicy\": - \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"8c853c59-2676-4055-854a-56f4ea3e046d\"\r\n}" + \ \"uniqueId\": \"f708807b-4205-4db4-a0da-fdff0165fcdd\",\r\n \"networkAccessPolicy\": + \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"42c31bbc-afda-477d-ae03-c03ebc9bc96f\"\r\n}" headers: cache-control: - no-cache @@ -1570,7 +1570,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:40:21 GMT + - Fri, 09 Apr 2021 03:52:55 GMT expires: - '-1' pragma: @@ -1587,7 +1587,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49991,Microsoft.Compute/GetOperation30Min;399991 + - Microsoft.Compute/GetOperation3Min;49985,Microsoft.Compute/GetOperation30Min;399878 status: code: 200 message: OK @@ -1617,9 +1617,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-04-07T06:40:19.7230121+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-09T03:52:53.5624074+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"91945790-d9a5-45bc-bd72-bafbfefc4aa0\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"f708807b-4205-4db4-a0da-fdff0165fcdd\",\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: @@ -1629,7 +1629,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:40:22 GMT + - Fri, 09 Apr 2021 03:52:55 GMT expires: - '-1' pragma: @@ -1646,7 +1646,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4985,Microsoft.Compute/LowCostGet30Min;39984 + - Microsoft.Compute/LowCostGet3Min;4976,Microsoft.Compute/LowCostGet30Min;39862 status: code: 200 message: OK @@ -1680,7 +1680,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:40:23 GMT + - Fri, 09 Apr 2021 03:52:56 GMT expires: - '-1' pragma: @@ -1720,9 +1720,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-04-07T06:40:19.7230121+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-09T03:52:53.5624074+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"91945790-d9a5-45bc-bd72-bafbfefc4aa0\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"f708807b-4205-4db4-a0da-fdff0165fcdd\",\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: @@ -1732,7 +1732,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:40:23 GMT + - Fri, 09 Apr 2021 03:52:57 GMT expires: - '-1' pragma: @@ -1749,7 +1749,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4984,Microsoft.Compute/LowCostGet30Min;39983 + - Microsoft.Compute/LowCostGet3Min;4975,Microsoft.Compute/LowCostGet30Min;39861 status: code: 200 message: OK @@ -1775,7 +1775,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1784,7 +1784,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:40:23 GMT + - Fri, 09 Apr 2021 03:52:57 GMT expires: - '-1' pragma: @@ -1825,12 +1825,12 @@ interactions: string: "{\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \ \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk\",\r\n - \ \"sourceUniqueId\": \"91945790-d9a5-45bc-bd72-bafbfefc4aa0\"\r\n },\r\n + \ \"sourceUniqueId\": \"f708807b-4205-4db4-a0da-fdff0165fcdd\"\r\n },\r\n \ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/8025fe88-9553-45ff-bb12-82a00df1ca6b?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/3aaad6d6-71f4-4ee3-bc46-0f7b860d1b2f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1838,11 +1838,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:40:29 GMT + - Fri, 09 Apr 2021 03:53:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/8025fe88-9553-45ff-bb12-82a00df1ca6b?monitor=true&api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/3aaad6d6-71f4-4ee3-bc46-0f7b860d1b2f?monitor=true&api-version=2020-05-01 pragma: - no-cache server: @@ -1853,9 +1853,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7999 + - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7995 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -1875,33 +1875,33 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/8025fe88-9553-45ff-bb12-82a00df1ca6b?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/3aaad6d6-71f4-4ee3-bc46-0f7b860d1b2f?api-version=2020-05-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:40:30.051151+00:00\",\r\n \"endTime\": - \"2021-04-07T06:40:31.1452408+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-09T03:53:01.8906219+00:00\",\r\n \"endTime\": + \"2021-04-09T03:53:02.6875086+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1\",\r\n \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk\",\r\n - \ \"sourceUniqueId\": \"91945790-d9a5-45bc-bd72-bafbfefc4aa0\"\r\n },\r\n + \ \"sourceUniqueId\": \"f708807b-4205-4db4-a0da-fdff0165fcdd\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-07T06:40:30.0667471+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-09T03:53:01.8906219+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"f5acec80-61db-4497-b07e-943d53115b19\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"0d227e66-890a-4e67-8df7-83bbabad3d5f\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"8025fe88-9553-45ff-bb12-82a00df1ca6b\"\r\n}" + \"3aaad6d6-71f4-4ee3-bc46-0f7b860d1b2f\"\r\n}" headers: cache-control: - no-cache content-length: - - '1343' + - '1344' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:40:32 GMT + - Fri, 09 Apr 2021 03:53:03 GMT expires: - '-1' pragma: @@ -1918,7 +1918,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399989 + - Microsoft.Compute/GetOperation3Min;49985,Microsoft.Compute/GetOperation30Min;399876 status: code: 200 message: OK @@ -1946,11 +1946,11 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk\",\r\n - \ \"sourceUniqueId\": \"91945790-d9a5-45bc-bd72-bafbfefc4aa0\"\r\n },\r\n + \ \"sourceUniqueId\": \"f708807b-4205-4db4-a0da-fdff0165fcdd\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-07T06:40:30.0667471+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-09T03:53:01.8906219+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"f5acec80-61db-4497-b07e-943d53115b19\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"0d227e66-890a-4e67-8df7-83bbabad3d5f\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -1960,7 +1960,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:40:32 GMT + - Fri, 09 Apr 2021 03:53:03 GMT expires: - '-1' pragma: @@ -1977,7 +1977,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4981,Microsoft.Compute/LowCostGet30Min;39980 + - Microsoft.Compute/LowCostGet3Min;4974,Microsoft.Compute/LowCostGet30Min;39858 status: code: 200 message: OK @@ -2003,7 +2003,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2012,7 +2012,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:40:33 GMT + - Fri, 09 Apr 2021 03:53:04 GMT expires: - '-1' pragma: @@ -2048,7 +2048,7 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0\",\r\n @@ -2057,7 +2057,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-07T06:40:38.3913316+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-09T03:53:10.9029293+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"hostCaching\": \"ReadWrite\",\r\n \ \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2065,7 +2065,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/818758fd-1cc5-4cf2-87b2-ff11ed2e3e2e?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/236791f3-652c-4794-9d70-905ff353b44c?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -2073,7 +2073,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:40:39 GMT + - Fri, 09 Apr 2021 03:53:11 GMT expires: - '-1' pragma: @@ -2086,9 +2086,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1199 + - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1195 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' status: code: 201 message: Created @@ -2108,11 +2108,11 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/818758fd-1cc5-4cf2-87b2-ff11ed2e3e2e?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/236791f3-652c-4794-9d70-905ff353b44c?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:40:38.3913316+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"818758fd-1cc5-4cf2-87b2-ff11ed2e3e2e\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T03:53:10.9029293+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"236791f3-652c-4794-9d70-905ff353b44c\"\r\n}" headers: cache-control: - no-cache @@ -2121,7 +2121,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:41:39 GMT + - Fri, 09 Apr 2021 03:54:12 GMT expires: - '-1' pragma: @@ -2138,7 +2138,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;4181 + - Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;4103 status: code: 200 message: OK @@ -2158,11 +2158,11 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/818758fd-1cc5-4cf2-87b2-ff11ed2e3e2e?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/236791f3-652c-4794-9d70-905ff353b44c?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:40:38.3913316+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"818758fd-1cc5-4cf2-87b2-ff11ed2e3e2e\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T03:53:10.9029293+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"236791f3-652c-4794-9d70-905ff353b44c\"\r\n}" headers: cache-control: - no-cache @@ -2171,7 +2171,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:42:40 GMT + - Fri, 09 Apr 2021 03:55:13 GMT expires: - '-1' pragma: @@ -2188,7 +2188,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4177 + - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4104 status: code: 200 message: OK @@ -2208,11 +2208,11 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/818758fd-1cc5-4cf2-87b2-ff11ed2e3e2e?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/236791f3-652c-4794-9d70-905ff353b44c?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:40:38.3913316+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"818758fd-1cc5-4cf2-87b2-ff11ed2e3e2e\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T03:53:10.9029293+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"236791f3-652c-4794-9d70-905ff353b44c\"\r\n}" headers: cache-control: - no-cache @@ -2221,7 +2221,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:43:40 GMT + - Fri, 09 Apr 2021 03:56:13 GMT expires: - '-1' pragma: @@ -2238,7 +2238,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4173 + - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4100 status: code: 200 message: OK @@ -2258,11 +2258,11 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/818758fd-1cc5-4cf2-87b2-ff11ed2e3e2e?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/236791f3-652c-4794-9d70-905ff353b44c?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:40:38.3913316+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"818758fd-1cc5-4cf2-87b2-ff11ed2e3e2e\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T03:53:10.9029293+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"236791f3-652c-4794-9d70-905ff353b44c\"\r\n}" headers: cache-control: - no-cache @@ -2271,7 +2271,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:44:41 GMT + - Fri, 09 Apr 2021 03:57:14 GMT expires: - '-1' pragma: @@ -2288,7 +2288,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4169 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4096 status: code: 200 message: OK @@ -2308,11 +2308,11 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/818758fd-1cc5-4cf2-87b2-ff11ed2e3e2e?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/236791f3-652c-4794-9d70-905ff353b44c?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:40:38.3913316+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"818758fd-1cc5-4cf2-87b2-ff11ed2e3e2e\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T03:53:10.9029293+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"236791f3-652c-4794-9d70-905ff353b44c\"\r\n}" headers: cache-control: - no-cache @@ -2321,7 +2321,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:45:43 GMT + - Fri, 09 Apr 2021 03:58:15 GMT expires: - '-1' pragma: @@ -2338,7 +2338,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4165 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4092 status: code: 200 message: OK @@ -2358,62 +2358,12 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/818758fd-1cc5-4cf2-87b2-ff11ed2e3e2e?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/236791f3-652c-4794-9d70-905ff353b44c?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:40:38.3913316+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"818758fd-1cc5-4cf2-87b2-ff11ed2e3e2e\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 07 Apr 2021 06:46:43 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4161 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version create - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot - User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/818758fd-1cc5-4cf2-87b2-ff11ed2e3e2e?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2021-04-07T06:40:38.3913316+00:00\",\r\n \"endTime\": - \"2021-04-07T06:47:33.0960459+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"818758fd-1cc5-4cf2-87b2-ff11ed2e3e2e\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T03:53:10.9029293+00:00\",\r\n \"endTime\": + \"2021-04-09T03:59:11.7169726+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"236791f3-652c-4794-9d70-905ff353b44c\"\r\n}" headers: cache-control: - no-cache @@ -2422,7 +2372,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:47:44 GMT + - Fri, 09 Apr 2021 03:59:15 GMT expires: - '-1' pragma: @@ -2439,7 +2389,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4157 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4088 status: code: 200 message: OK @@ -2459,7 +2409,7 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0\",\r\n @@ -2468,7 +2418,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-07T06:40:38.3913316+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-09T03:53:10.9029293+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 10,\r\n \"hostCaching\": \"ReadWrite\",\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2482,7 +2432,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:47:44 GMT + - Fri, 09 Apr 2021 03:59:16 GMT expires: - '-1' pragma: @@ -2499,7 +2449,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9995 + - Microsoft.Compute/GetGalleryImageVersion3Min;1998,Microsoft.Compute/GetGalleryImageVersion30Min;9969 status: code: 200 message: OK @@ -2525,7 +2475,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-07T06:38:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2534,7 +2484,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:47:45 GMT + - Fri, 09 Apr 2021 03:59:17 GMT expires: - '-1' pragma: @@ -2582,7 +2532,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/58a24602-858f-487c-985f-a6c984c8832b?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/2ddb5f16-d3e3-4552-a2f0-9f7425481151?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -2590,11 +2540,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:47:49 GMT + - Fri, 09 Apr 2021 03:59:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/58a24602-858f-487c-985f-a6c984c8832b?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/2ddb5f16-d3e3-4552-a2f0-9f7425481151?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -2605,9 +2555,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7992 + - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7985 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted @@ -2627,11 +2577,11 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/58a24602-858f-487c-985f-a6c984c8832b?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/2ddb5f16-d3e3-4552-a2f0-9f7425481151?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:47:49.3500098+00:00\",\r\n \"endTime\": - \"2021-04-07T06:47:50.1158336+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-09T03:59:21.9713867+00:00\",\r\n \"endTime\": + \"2021-04-09T03:59:22.533911+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d4\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n @@ -2642,20 +2592,20 @@ interactions: \ },\r\n \"galleryImageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-07T06:47:49.3812591+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-09T03:59:22.0026361+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"41e991ca-0ee5-47aa-ada1-0dcb9cd0ac26\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"23f0cbbe-7ca7-498d-b669-afafeff8c925\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"58a24602-858f-487c-985f-a6c984c8832b\"\r\n}" + \ },\r\n \"name\": \"2ddb5f16-d3e3-4552-a2f0-9f7425481151\"\r\n}" headers: cache-control: - no-cache content-length: - - '1745' + - '1744' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:47:51 GMT + - Fri, 09 Apr 2021 03:59:24 GMT expires: - '-1' pragma: @@ -2672,7 +2622,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49987,Microsoft.Compute/GetOperation30Min;399953 + - Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399849 status: code: 200 message: OK @@ -2704,9 +2654,9 @@ interactions: \ },\r\n \"galleryImageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-07T06:47:49.3812591+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-09T03:59:22.0026361+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"41e991ca-0ee5-47aa-ada1-0dcb9cd0ac26\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"23f0cbbe-7ca7-498d-b669-afafeff8c925\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: @@ -2716,7 +2666,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:47:51 GMT + - Fri, 09 Apr 2021 03:59:24 GMT expires: - '-1' pragma: @@ -2733,7 +2683,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4999,Microsoft.Compute/LowCostGet30Min;39972 + - Microsoft.Compute/LowCostGet3Min;4979,Microsoft.Compute/LowCostGet30Min;39835 status: code: 200 message: OK @@ -2770,7 +2720,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/8b87b130-8ef9-4641-90c2-7620c3c2fcad?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/571e6944-28f9-4f82-8bfa-812426180add?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -2778,11 +2728,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:47:55 GMT + - Fri, 09 Apr 2021 03:59:30 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/8b87b130-8ef9-4641-90c2-7620c3c2fcad?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/571e6944-28f9-4f82-8bfa-812426180add?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -2793,7 +2743,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999 + - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7995 x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -2815,11 +2765,11 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/8b87b130-8ef9-4641-90c2-7620c3c2fcad?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/571e6944-28f9-4f82-8bfa-812426180add?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:47:55.8230457+00:00\",\r\n \"endTime\": - \"2021-04-07T06:47:55.9980769+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-09T03:59:30.4552778+00:00\",\r\n \"endTime\": + \"2021-04-09T03:59:30.6252621+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"centraluseuap\",\r\n @@ -2828,11 +2778,11 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 256,\r\n \ \"diskIOPSReadWrite\": 1100,\r\n \"diskMBpsReadWrite\": 125,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"maxShares\": - 2,\r\n \"timeCreated\": \"2021-04-07T06:47:55.8281004+00:00\",\r\n \"provisioningState\": + 2,\r\n \"timeCreated\": \"2021-04-09T03:59:30.4602301+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 274877906944,\r\n \"uniqueId\": \"534c3025-e62b-47b8-a374-75c84a901e3b\",\r\n + 274877906944,\r\n \"uniqueId\": \"504772fe-2452-49a7-aa91-b82ae639da8a\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"8b87b130-8ef9-4641-90c2-7620c3c2fcad\"\r\n}" + \ },\r\n \"name\": \"571e6944-28f9-4f82-8bfa-812426180add\"\r\n}" headers: cache-control: - no-cache @@ -2841,7 +2791,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:47:57 GMT + - Fri, 09 Apr 2021 03:59:32 GMT expires: - '-1' pragma: @@ -2858,7 +2808,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399999 + - Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399969 status: code: 200 message: OK @@ -2888,9 +2838,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 256,\r\n \ \"diskIOPSReadWrite\": 1100,\r\n \"diskMBpsReadWrite\": 125,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"maxShares\": - 2,\r\n \"timeCreated\": \"2021-04-07T06:47:55.8281004+00:00\",\r\n \"provisioningState\": + 2,\r\n \"timeCreated\": \"2021-04-09T03:59:30.4602301+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 274877906944,\r\n \"uniqueId\": \"534c3025-e62b-47b8-a374-75c84a901e3b\",\r\n + 274877906944,\r\n \"uniqueId\": \"504772fe-2452-49a7-aa91-b82ae639da8a\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}" headers: cache-control: @@ -2900,7 +2850,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:47:58 GMT + - Fri, 09 Apr 2021 03:59:32 GMT expires: - '-1' pragma: @@ -2917,7 +2867,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14999,Microsoft.Compute/LowCostGet30Min;119999 + - Microsoft.Compute/LowCostGet3Min;14999,Microsoft.Compute/LowCostGet30Min;119948 status: code: 200 message: OK @@ -2947,9 +2897,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 256,\r\n \ \"diskIOPSReadWrite\": 1100,\r\n \"diskMBpsReadWrite\": 125,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"maxShares\": - 2,\r\n \"timeCreated\": \"2021-04-07T06:47:55.8281004+00:00\",\r\n \"provisioningState\": + 2,\r\n \"timeCreated\": \"2021-04-09T03:59:30.4602301+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 274877906944,\r\n \"uniqueId\": \"534c3025-e62b-47b8-a374-75c84a901e3b\",\r\n + 274877906944,\r\n \"uniqueId\": \"504772fe-2452-49a7-aa91-b82ae639da8a\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}" headers: cache-control: @@ -2959,7 +2909,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:47:59 GMT + - Fri, 09 Apr 2021 03:59:34 GMT expires: - '-1' pragma: @@ -2976,7 +2926,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14998,Microsoft.Compute/LowCostGet30Min;119998 + - Microsoft.Compute/LowCostGet3Min;14998,Microsoft.Compute/LowCostGet30Min;119947 status: code: 200 message: OK @@ -3016,7 +2966,7 @@ interactions: \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/b49fad27-fce0-401f-9d6e-4a25778d282a?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/2b26585e-bb9d-464e-9b01-048d7363cc2b?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -3024,11 +2974,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:48:01 GMT + - Fri, 09 Apr 2021 03:59:36 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/b49fad27-fce0-401f-9d6e-4a25778d282a?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/2b26585e-bb9d-464e-9b01-048d7363cc2b?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -3039,7 +2989,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7998 + - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7994 x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -3061,11 +3011,11 @@ interactions: User-Agent: - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/b49fad27-fce0-401f-9d6e-4a25778d282a?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/2b26585e-bb9d-464e-9b01-048d7363cc2b?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-07T06:48:02.1981093+00:00\",\r\n \"endTime\": - \"2021-04-07T06:48:02.373157+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-09T03:59:36.7929741+00:00\",\r\n \"endTime\": + \"2021-04-09T03:59:36.9829742+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"centraluseuap\",\r\n @@ -3074,20 +3024,20 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 256,\r\n \ \"diskIOPSReadWrite\": 1100,\r\n \"diskMBpsReadWrite\": 125,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"maxShares\": - 1,\r\n \"timeCreated\": \"2021-04-07T06:47:55.8281004+00:00\",\r\n \"provisioningState\": + 1,\r\n \"timeCreated\": \"2021-04-09T03:59:30.4602301+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 274877906944,\r\n \"uniqueId\": \"534c3025-e62b-47b8-a374-75c84a901e3b\",\r\n + 274877906944,\r\n \"uniqueId\": \"504772fe-2452-49a7-aa91-b82ae639da8a\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"b49fad27-fce0-401f-9d6e-4a25778d282a\"\r\n}" + \ },\r\n \"name\": \"2b26585e-bb9d-464e-9b01-048d7363cc2b\"\r\n}" headers: cache-control: - no-cache content-length: - - '1143' + - '1144' content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:48:04 GMT + - Fri, 09 Apr 2021 03:59:38 GMT expires: - '-1' pragma: @@ -3104,7 +3054,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399997 + - Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399967 status: code: 200 message: OK @@ -3134,9 +3084,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 256,\r\n \ \"diskIOPSReadWrite\": 1100,\r\n \"diskMBpsReadWrite\": 125,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"maxShares\": - 1,\r\n \"timeCreated\": \"2021-04-07T06:47:55.8281004+00:00\",\r\n \"provisioningState\": + 1,\r\n \"timeCreated\": \"2021-04-09T03:59:30.4602301+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 274877906944,\r\n \"uniqueId\": \"534c3025-e62b-47b8-a374-75c84a901e3b\",\r\n + 274877906944,\r\n \"uniqueId\": \"504772fe-2452-49a7-aa91-b82ae639da8a\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}" headers: cache-control: @@ -3146,7 +3096,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 07 Apr 2021 06:48:05 GMT + - Fri, 09 Apr 2021 03:59:39 GMT expires: - '-1' pragma: @@ -3163,7 +3113,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14996,Microsoft.Compute/LowCostGet30Min;119996 + - Microsoft.Compute/LowCostGet3Min;14996,Microsoft.Compute/LowCostGet30Min;119945 status: code: 200 message: OK From becbdf4517dd1ce7b39a616d2bc3fcda11c5974e Mon Sep 17 00:00:00 2001 From: Feiyue Yu Date: Fri, 9 Apr 2021 12:45:06 +0800 Subject: [PATCH 13/18] style --- src/azure-cli/azure/cli/command_modules/vm/custom.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/custom.py b/src/azure-cli/azure/cli/command_modules/vm/custom.py index 6fbf829179c..1118ac07f58 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/custom.py +++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py @@ -3464,7 +3464,8 @@ def create_image_version(cmd, resource_group_name, gallery_name, gallery_image_n os_vhd_storage_account = resource_id( subscription=get_subscription_id(cmd.cli_ctx), resource_group=resource_group_name, namespace='Microsoft.Storage', type='storageAccounts', name=os_vhd_storage_account) - os_disk_image = GalleryOSDiskImage(source=GalleryArtifactVersionSource(id=os_vhd_storage_account, uri=os_vhd)) + os_disk_image = GalleryOSDiskImage(source=GalleryArtifactVersionSource( + id=os_vhd_storage_account, uri=os_vhd)) storage_profile = GalleryImageVersionStorageProfile(source=source, os_disk_image=os_disk_image, data_disk_images=data_disk_images) From a59aeb842ef41f676309257179080c47a94ac543 Mon Sep 17 00:00:00 2001 From: Feiyue Yu Date: Fri, 9 Apr 2021 13:09:50 +0800 Subject: [PATCH 14/18] linter --- src/azure-cli/azure/cli/command_modules/vm/_help.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/_help.py b/src/azure-cli/azure/cli/command_modules/vm/_help.py index 22f1f49bb72..174ed948331 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/_help.py +++ b/src/azure-cli/azure/cli/command_modules/vm/_help.py @@ -681,7 +681,7 @@ az sig image-version create -g MyResourceGroup --gallery-image-version 1.0.0 --target-regions westus=2=standard eastus --target-region-encryption WestUSDiskEncryptionSet1,0,WestUSDiskEncryptionSet2 EastUSDiskEncryptionSet1,0,EastUSDiskEncryptionSet2 --gallery-name MyGallery --gallery-image-definition MyImage --os-snapshot /subscriptions/00000000-0000-0000-0000-00000000xxxx/resourceGroups/imageGroups/providers/Microsoft.Compute/disks/MyOSDisk --data-snapshots /subscriptions/00000000-0000-0000-0000-00000000xxxx/resourceGroups/imageGroups/providers/Microsoft.Compute/disks/MyDataDisk --data-snapshot-luns 0 - name: Add a new image version from a VHD of an OS disk. text: > - az sig image-version create -g MyResourceGroup --gallery-name MyGallery --gallery-image-definition MyImage --gallery-image-version 1.0.0 --vhd --vhd-storage-account account + az sig image-version create -g MyResourceGroup --gallery-name MyGallery --gallery-image-definition MyImage --gallery-image-version 1.0.0 --os-vhd --os-vhd-storage-account account """ helps['sig image-version update'] = """ From fc236603a9ea73d246fb45eb3d103fdb063c41f6 Mon Sep 17 00:00:00 2001 From: Feiyue Yu Date: Wed, 14 Apr 2021 18:34:58 +0800 Subject: [PATCH 15/18] test --- .../latest/recordings/test_gallery_e2e.yaml | 1952 +++++++---------- .../recordings/test_gallery_specialized.yaml | 546 ++--- .../recordings/test_specialized_image.yaml | 705 +++--- .../test_vm_disk_max_shares_etc.yaml | 694 +++--- 4 files changed, 1777 insertions(+), 2120 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_e2e.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_e2e.yaml index d29cddad368..895fe4b80a7 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_e2e.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_e2e.yaml @@ -14,14 +14,14 @@ interactions: - -g --gallery-name User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:51:04 GMT + - Wed, 14 Apr 2021 09:18:56 GMT expires: - '-1' pragma: @@ -62,7 +62,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01 response: @@ -70,11 +70,11 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_J4RZFNEYGLRT\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_3TXBVSIM5PP7\"\r\n },\r\n \ \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/764a383a-2a9f-4f0e-b843-c0ff86d6b72e?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/cb0f2d65-f554-4bff-b710-ecd9c093803f?api-version=2019-12-01 cache-control: - no-cache content-length: @@ -82,7 +82,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:51:11 GMT + - Wed, 14 Apr 2021 09:19:04 GMT expires: - '-1' pragma: @@ -95,9 +95,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;297 + - Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -115,14 +115,14 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/764a383a-2a9f-4f0e-b843-c0ff86d6b72e?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/cb0f2d65-f554-4bff-b710-ecd9c093803f?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T03:51:10.2476509+00:00\",\r\n \"endTime\": - \"2021-04-09T03:51:10.4507834+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"764a383a-2a9f-4f0e-b843-c0ff86d6b72e\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:19:03.3538981+00:00\",\r\n \"endTime\": + \"2021-04-14T09:19:03.9476996+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"cb0f2d65-f554-4bff-b710-ecd9c093803f\"\r\n}" headers: cache-control: - no-cache @@ -131,7 +131,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:51:41 GMT + - Wed, 14 Apr 2021 09:19:34 GMT expires: - '-1' pragma: @@ -148,7 +148,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4139 + - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4197 status: code: 200 message: OK @@ -166,7 +166,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01 response: @@ -174,7 +174,7 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_J4RZFNEYGLRT\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_3TXBVSIM5PP7\"\r\n },\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -184,7 +184,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:51:41 GMT + - Wed, 14 Apr 2021 09:19:34 GMT expires: - '-1' pragma: @@ -201,7 +201,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGallery3Min;345,Microsoft.Compute/GetGallery30Min;2477 + - Microsoft.Compute/GetGallery3Min;343,Microsoft.Compute/GetGallery30Min;2493 status: code: 200 message: OK @@ -219,16 +219,16 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries?api-version=2019-12-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"gallery_000002\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZUTQU5W32B7LX4VG2I2TJAAWPCYR3E4ZSKF7VQE7M5FNI4S4TOFLGIJSUHN5LUDGD/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RG4IAXNRLBW7DB7Y353VCCPB335N7E3VNBWULTAHGMSRHTVSPPIY2GFUMNVDZL46J5X/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": - {\r\n \"uniqueName\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_J4RZFNEYGLRT\"\r\n + {\r\n \"uniqueName\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_3TXBVSIM5PP7\"\r\n \ },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n \ }\r\n ]\r\n}" headers: @@ -239,7 +239,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:51:43 GMT + - Wed, 14 Apr 2021 09:19:37 GMT expires: - '-1' pragma: @@ -256,7 +256,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListGalleryInResourceGroup3Min;99,Microsoft.Compute/ListGalleryInResourceGroup30Min;998 + - Microsoft.Compute/ListGalleryInResourceGroup3Min;99,Microsoft.Compute/ListGalleryInResourceGroup30Min;999 status: code: 200 message: OK @@ -274,7 +274,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01 response: @@ -282,7 +282,7 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_J4RZFNEYGLRT\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_3TXBVSIM5PP7\"\r\n },\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -292,7 +292,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:51:44 GMT + - Wed, 14 Apr 2021 09:19:37 GMT expires: - '-1' pragma: @@ -309,7 +309,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGallery3Min;344,Microsoft.Compute/GetGallery30Min;2476 + - Microsoft.Compute/GetGallery3Min;341,Microsoft.Compute/GetGallery30Min;2491 status: code: 200 message: OK @@ -328,14 +328,14 @@ interactions: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -344,7 +344,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:51:44 GMT + - Wed, 14 Apr 2021 09:19:39 GMT expires: - '-1' pragma: @@ -378,7 +378,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -392,7 +392,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/087c2dd0-b945-4d3a-a524-c07c8951c552?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/05c7d7c7-fda7-4c16-b75c-b2901cd3846d?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -400,7 +400,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:51:52 GMT + - Wed, 14 Apr 2021 09:19:46 GMT expires: - '-1' pragma: @@ -413,9 +413,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;747 + - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;749 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -433,23 +433,23 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/087c2dd0-b945-4d3a-a524-c07c8951c552?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/05c7d7c7-fda7-4c16-b75c-b2901cd3846d?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T03:51:51.9524316+00:00\",\r\n \"endTime\": - \"2021-04-09T03:51:52.0461795+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"087c2dd0-b945-4d3a-a524-c07c8951c552\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:19:44.6054847+00:00\",\r\n \"endTime\": + \"2021-04-14T09:19:44.839861+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"05c7d7c7-fda7-4c16-b75c-b2901cd3846d\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:52:23 GMT + - Wed, 14 Apr 2021 09:20:16 GMT expires: - '-1' pragma: @@ -466,7 +466,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4135 + - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4192 status: code: 200 message: OK @@ -484,7 +484,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -504,7 +504,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:52:24 GMT + - Wed, 14 Apr 2021 09:20:17 GMT expires: - '-1' pragma: @@ -521,7 +521,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;595,Microsoft.Compute/GetGalleryImage30Min;2974 + - Microsoft.Compute/GetGalleryImage3Min;592,Microsoft.Compute/GetGalleryImage30Min;2992 status: code: 200 message: OK @@ -539,7 +539,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images?api-version=2020-09-30 response: @@ -553,7 +553,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:52:26 GMT + - Wed, 14 Apr 2021 09:20:19 GMT expires: - '-1' pragma: @@ -565,42 +565,42 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - c24b60cd-aa60-4360-8f51-974f965082aa - - dd0b2bb1-e507-4fa3-ba9f-bb874facc1d3 - - aa4b046d-5861-4e63-97ae-c248d1085489 - - 0d8a4f03-0215-4f87-8630-f4a8eb4122de - - 0914a355-8e15-4b6b-b0e2-b2edc472be85 - - 3d5127e9-4a55-43ff-a39f-c6c5dbecb632 - - e66c7a6e-c27e-4e15-a336-17a69b0321e1 - - bc07c10c-6c63-4942-a6df-5c63fada5e82 - - d354a17e-b738-4ce2-a8d4-47b4af5123ef - - 7cfef67e-023b-44bc-951d-ce106c499342 - - 829587a0-bb72-40c8-8d60-6a3ba0fde772 - - e466262e-3258-4838-aead-5be43b828f8d - - 00ca2207-5970-478c-85c6-2321ec751682 - - 62bb2284-b9e1-437c-8447-5ddd2c8991c8 - - 0698ea86-f54c-4b14-8faa-a42b3268f921 - - 901e9384-5a7a-4027-89af-20163fd56737 - - c2eb9fc9-9812-471f-ad50-6979439dd6c5 - - b523d070-60ae-4dce-bdf4-f4f1399cfbc3 - - 4b7761c9-9943-49d9-b822-58007e09ae85 - - 72c6aac9-4904-4fde-a1f4-6d76b6f62cea - - 40831749-deb2-47f7-a248-699aa350b417 - - d0a6a22f-d8b3-49d6-b710-9da560c13c69 - - 3e776282-7690-425e-9794-12d14e95f222 - - e48ab707-750a-437f-9c92-00f31bf61b8a - - d7c2608b-f015-4a7e-a8d4-88a95e74ca7c - - 7ef93b87-9876-4a0b-9a5e-f96c241b534e - - 10563ef1-98a8-4a27-a6e4-b21cd7f8aedc - - 21e06094-250e-45d7-87a2-9f013b7163d4 - - 6523831c-6b27-457a-ac84-053dae6d9433 - - ced17e46-3ca4-4d9e-b9f8-a4aafb2d3053 - - dab4b176-68d7-482d-a71c-aa808ba0cdcc - - bbf9dec3-f234-46f2-9fe9-601d57ea882a - - 7e9af251-6b72-4670-91d4-a9a1bf99c2af - - 3b9c03f8-0547-45e6-a85b-2b21a1cf961f - - 95722782-96a8-4bd8-98dd-cb33e0259b4e - - 17dfa70a-61c2-4119-b1f0-995387a5829b + - a81a34af-bfc2-4e70-ab45-1af6d227b514 + - 0ddc2c55-2d95-4fa3-880c-58681a5e7d22 + - 5d4e845f-274a-4ffd-863d-f7927bc55fef + - 21ac4ec8-387c-4586-95ef-22b7bded2323 + - 757825ad-3d3b-43e6-9d7b-c27e1a3ea262 + - 74b873db-97d0-497a-bfb1-e12ae215f0aa + - 97c52abe-bb18-4aca-b45d-87b21ddbf457 + - daa55035-573b-4fd8-85df-018bef296e26 + - 17573dd8-ad74-4df0-b5e8-bfc9b442679d + - 902456b7-e28a-4fe6-bc04-7c82539fb8bb + - be579484-5417-4794-87d1-7152f9936e7d + - 1d866cb8-5f18-47b6-9215-c98adcc195e6 + - 694487bb-267f-4b23-886c-b7238db27b53 + - 7686b635-5dcf-4338-aee9-cb5be975ebee + - 7ab25e5f-e32e-4e97-8f44-e1ed4c11b466 + - 8435a5f2-239f-4a1a-a311-a0e3d9406b6f + - 3618e37a-a7a6-4cc7-8bdf-d70c130ca3dd + - 6a7a07e9-32e7-40e9-af98-a60e298a81dd + - 96e40d06-436a-4c3c-ad76-8954440a77fa + - da3f2163-d623-4e46-8574-b6d21f0c918b + - 06bcb29a-2e76-4f4f-b650-7d1515246474 + - d0afe5d8-650d-4edc-8afa-8861910914b1 + - 50eaeb79-8141-4aa1-aa2f-2e41cb36eabc + - 783f1f3f-7612-44d2-bb46-70f2c6bccedd + - 42a2516f-94f8-4acf-9713-4e708a2a3bff + - 8ffd716b-16a0-42a3-b4db-05bcbb0c7f25 + - 5533daaa-fe13-4f7a-8a4a-090e14d2b5dc + - 243c97dd-9110-4a8b-a94c-1e3d1e1cf8de + - f8869430-de97-41aa-8573-2ca4b30af302 + - 5cd48238-0f6c-4e2b-bf22-1a3c20013f65 + - 6b1a2bda-449d-43ce-a090-b1b29fe38023 + - 2b5f9668-3ee3-40b3-9572-3096e703aefe + - 7702645b-ebfc-45c0-a5d2-491793b84372 + - 151ccb36-9d15-41e5-b05f-67b283c8189b + - 00534a4e-7289-4f8a-ae0e-92d7e958d218 + - 355c364d-7296-4e7a-bcc0-aada81cdcb77 status: code: 200 message: OK @@ -618,7 +618,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -638,7 +638,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:52:27 GMT + - Wed, 14 Apr 2021 09:20:20 GMT expires: - '-1' pragma: @@ -655,7 +655,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;594,Microsoft.Compute/GetGalleryImage30Min;2973 + - Microsoft.Compute/GetGalleryImage3Min;591,Microsoft.Compute/GetGalleryImage30Min;2991 status: code: 200 message: OK @@ -674,14 +674,14 @@ interactions: - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -690,7 +690,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:52:27 GMT + - Wed, 14 Apr 2021 09:20:20 GMT expires: - '-1' pragma: @@ -769,13 +769,13 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Fri, 09 Apr 2021 03:52:28 GMT + - Wed, 14 Apr 2021 09:20:22 GMT etag: - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" expires: - - Fri, 09 Apr 2021 03:57:28 GMT + - Wed, 14 Apr 2021 09:25:22 GMT source-age: - - '146' + - '72' strict-transport-security: - max-age=31536000 vary: @@ -789,15 +789,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 179da1072b13ffab25df86a1b81b6fab467c4999 + - 6e7ce76cff23917dce6dd5b0f205cb5f45e830de x-frame-options: - deny x-github-request-id: - - C62E:4586:4AE6C2:58C97E:606FB659 + - B82A:0EF1:2D6432:361BB8:60763DA4 x-served-by: - - cache-qpg1251-QPG + - cache-qpg1252-QPG x-timer: - - S1617940348.364630,VS0,VE1 + - S1618392022.003966,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -817,7 +817,7 @@ interactions: ParameterSetName: - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 response: @@ -831,7 +831,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:52:28 GMT + - Wed, 14 Apr 2021 09:20:21 GMT expires: - '-1' pragma: @@ -892,25 +892,25 @@ interactions: - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_FaAmkrlqmBTZZs4eZLUEWiOWU4kJNG1T","name":"vm_deploy_FaAmkrlqmBTZZs4eZLUEWiOWU4kJNG1T","type":"Microsoft.Resources/deployments","properties":{"templateHash":"312016615491843100","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-09T03:52:34.9795136Z","duration":"PT3.3179698S","correlationId":"44943914-6533-466f-9e22-16685be0c09c","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus2"]},{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_reEynIeV4pQPIpEVqbAnnTtgssAMveMx","name":"vm_deploy_reEynIeV4pQPIpEVqbAnnTtgssAMveMx","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8948302080996803651","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-14T09:20:27.2331918Z","duration":"PT2.9257266S","correlationId":"9dd91f90-5693-4b6e-8994-3af0c257897a","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus2"]},{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_FaAmkrlqmBTZZs4eZLUEWiOWU4kJNG1T/operationStatuses/08585836665338160838?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_reEynIeV4pQPIpEVqbAnnTtgssAMveMx/operationStatuses/08585832148611701683?api-version=2020-10-01 cache-control: - no-cache content-length: - - '2746' + - '2747' content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:52:36 GMT + - Wed, 14 Apr 2021 09:20:28 GMT expires: - '-1' pragma: @@ -920,7 +920,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -939,9 +939,9 @@ interactions: - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836665338160838?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585832148611701683?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -953,7 +953,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:53:07 GMT + - Wed, 14 Apr 2021 09:20:59 GMT expires: - '-1' pragma: @@ -982,9 +982,9 @@ interactions: - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836665338160838?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585832148611701683?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -996,7 +996,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:53:38 GMT + - Wed, 14 Apr 2021 09:21:30 GMT expires: - '-1' pragma: @@ -1025,21 +1025,21 @@ interactions: - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_FaAmkrlqmBTZZs4eZLUEWiOWU4kJNG1T","name":"vm_deploy_FaAmkrlqmBTZZs4eZLUEWiOWU4kJNG1T","type":"Microsoft.Resources/deployments","properties":{"templateHash":"312016615491843100","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-09T03:53:09.6790358Z","duration":"PT38.017492S","correlationId":"44943914-6533-466f-9e22-16685be0c09c","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus2"]},{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_reEynIeV4pQPIpEVqbAnnTtgssAMveMx","name":"vm_deploy_reEynIeV4pQPIpEVqbAnnTtgssAMveMx","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8948302080996803651","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-14T09:21:16.7950596Z","duration":"PT52.4875944S","correlationId":"9dd91f90-5693-4b6e-8994-3af0c257897a","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus2"]},{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}' headers: cache-control: - no-cache content-length: - - '3810' + - '3812' content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:53:38 GMT + - Wed, 14 Apr 2021 09:21:31 GMT expires: - '-1' pragma: @@ -1067,28 +1067,28 @@ interactions: ParameterSetName: - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"2d8c1f0e-52ce-484a-9fc4-dcf27109d87b\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"c3c90b30-5cbe-49e3-8119-d01b4c9d2fb2\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202103250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"vm1_disk1_0a3dd4d450aa47f2afc0dc2ebcb7d8f0\",\r\n + \"Linux\",\r\n \"name\": \"vm1_disk1_a9ebcddecf804119bb33f2a238f5e735\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_0a3dd4d450aa47f2afc0dc2ebcb7d8f0\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_a9ebcddecf804119bb33f2a238f5e735\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": - [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1_disk2_a2d0f54ba6cd447480371766b3cf91bd\",\r\n + [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1_disk2_4d42740e01a145b78c38ed39709f2290\",\r\n \ \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_a2d0f54ba6cd447480371766b3cf91bd\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_4d42740e01a145b78c38ed39709f2290\"\r\n \ },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": @@ -1107,20 +1107,20 @@ interactions: [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \ \"message\": \"Guest Agent is running\",\r\n \"time\": - \"2021-04-09T03:53:37+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_disk1_0a3dd4d450aa47f2afc0dc2ebcb7d8f0\",\r\n + \"2021-04-14T09:21:28+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_disk1_a9ebcddecf804119bb33f2a238f5e735\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-09T03:52:55.8889361+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-14T09:20:54.9117502+00:00\"\r\n \ }\r\n ]\r\n },\r\n {\r\n \"name\": - \"vm1_disk2_a2d0f54ba6cd447480371766b3cf91bd\",\r\n \"statuses\": + \"vm1_disk2_4d42740e01a145b78c38ed39709f2290\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-09T03:52:55.8889361+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-14T09:20:54.9117502+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-09T03:53:07.576545+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-14T09:21:13.9598089+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n \ }\r\n ]\r\n }\r\n }\r\n}" @@ -1128,11 +1128,11 @@ interactions: cache-control: - no-cache content-length: - - '4780' + - '4781' content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:53:39 GMT + - Wed, 14 Apr 2021 09:21:33 GMT expires: - '-1' pragma: @@ -1149,7 +1149,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31957 + - Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31997 status: code: 200 message: OK @@ -1167,18 +1167,18 @@ interactions: ParameterSetName: - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"vm1VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\r\n - \ \"etag\": \"W/\\\"b91b4631-c4f9-4bac-a83f-22f862f80243\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"1b099bed-b7ea-4dd1-942a-c0cee4695702\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"02d0cb8b-0298-4caa-b580-3538d469cd6a\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"1a515bcf-2b03-46b1-931f-a497151013fc\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm1\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\r\n - \ \"etag\": \"W/\\\"b91b4631-c4f9-4bac-a83f-22f862f80243\\\"\",\r\n + \ \"etag\": \"W/\\\"1b099bed-b7ea-4dd1-942a-c0cee4695702\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -1187,8 +1187,8 @@ interactions: \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": - \"iakffmqzod0upcr44bizc1kizb.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-22-48-4D-D7-58\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"c0tepdj3q2yutoxptvzcz3dsuc.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-22-48-4C-09-CF\",\r\n \"enableAcceleratedNetworking\": false,\r\n \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -1202,9 +1202,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:53:40 GMT + - Wed, 14 Apr 2021 09:21:33 GMT etag: - - W/"b91b4631-c4f9-4bac-a83f-22f862f80243" + - W/"1b099bed-b7ea-4dd1-942a-c0cee4695702" expires: - '-1' pragma: @@ -1221,7 +1221,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bab82415-bec0-4080-8f3c-f35fa9bee7a1 + - 7960c784-9d77-4b89-8788-bfa056097eba status: code: 200 message: OK @@ -1239,16 +1239,16 @@ interactions: ParameterSetName: - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"vm1PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\r\n - \ \"etag\": \"W/\\\"ca594335-ab97-428a-8dfd-e4cd28a7d9c7\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"0b735981-05c2-42f7-ad36-744f7014c086\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"b5314d9e-a24a-4978-8183-cba851aa4d58\",\r\n - \ \"ipAddress\": \"20.49.23.31\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"d071a775-2c73-4b09-8349-3533441291df\",\r\n + \ \"ipAddress\": \"20.96.13.253\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n @@ -1257,13 +1257,13 @@ interactions: cache-control: - no-cache content-length: - - '996' + - '997' content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:53:40 GMT + - Wed, 14 Apr 2021 09:21:33 GMT etag: - - W/"ca594335-ab97-428a-8dfd-e4cd28a7d9c7" + - W/"0b735981-05c2-42f7-ad36-744f7014c086" expires: - '-1' pragma: @@ -1280,7 +1280,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a80feb53-f05e-4e7a-a6f6-dd48600ece82 + - fe06c225-c836-4e02-92a6-686d3cac343e status: code: 200 message: OK @@ -1303,7 +1303,7 @@ interactions: ParameterSetName: - -g -n --command-id --scripts User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/runCommand?api-version=2020-12-01 response: @@ -1311,17 +1311,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/04f86f8e-3317-4f04-a4a7-93be38d84537?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/f73a030a-3017-4604-94bb-55813121a908?api-version=2020-12-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 09 Apr 2021 03:53:41 GMT + - Wed, 14 Apr 2021 09:21:34 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/04f86f8e-3317-4f04-a4a7-93be38d84537?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/f73a030a-3017-4604-94bb-55813121a908?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -1332,7 +1332,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1197 + - Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1199 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1352,17 +1352,17 @@ interactions: ParameterSetName: - -g -n --command-id --scripts User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/04f86f8e-3317-4f04-a4a7-93be38d84537?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/f73a030a-3017-4604-94bb-55813121a908?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T03:53:41.4986143+00:00\",\r\n \"endTime\": - \"2021-04-09T03:53:55.2018401+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-14T09:21:35.3203514+00:00\",\r\n \"endTime\": + \"2021-04-14T09:21:45.7737894+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\"value\":[{\"code\":\"ProvisioningState/succeeded\",\"level\":\"Info\",\"displayStatus\":\"Provisioning succeeded\",\"message\":\"Enable succeeded: \\n[stdout]\\n\\n[stderr]\\nwarning: - commands will be executed using /bin/sh\\njob 1 at Fri Apr 9 03:54:00 2021\\n\"}]}\r\n - \ },\r\n \"name\": \"04f86f8e-3317-4f04-a4a7-93be38d84537\"\r\n}" + commands will be executed using /bin/sh\\njob 1 at Wed Apr 14 09:22:00 2021\\n\"}]}\r\n + \ },\r\n \"name\": \"f73a030a-3017-4604-94bb-55813121a908\"\r\n}" headers: cache-control: - no-cache @@ -1371,7 +1371,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:54:11 GMT + - Wed, 14 Apr 2021 09:22:05 GMT expires: - '-1' pragma: @@ -1388,7 +1388,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29968 + - Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29996 status: code: 200 message: OK @@ -1406,14 +1406,14 @@ interactions: ParameterSetName: - -g -n --command-id --scripts User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/04f86f8e-3317-4f04-a4a7-93be38d84537?monitor=true&api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/f73a030a-3017-4604-94bb-55813121a908?monitor=true&api-version=2020-12-01 response: body: string: '{"value":[{"code":"ProvisioningState/succeeded","level":"Info","displayStatus":"Provisioning succeeded","message":"Enable succeeded: \n[stdout]\n\n[stderr]\nwarning: commands - will be executed using /bin/sh\njob 1 at Fri Apr 9 03:54:00 2021\n"}]}' + will be executed using /bin/sh\njob 1 at Wed Apr 14 09:22:00 2021\n"}]}' headers: cache-control: - no-cache @@ -1422,7 +1422,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:54:11 GMT + - Wed, 14 Apr 2021 09:22:06 GMT expires: - '-1' pragma: @@ -1439,7 +1439,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29967 + - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29995 status: code: 200 message: OK @@ -1459,7 +1459,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/deallocate?api-version=2020-12-01 response: @@ -1467,17 +1467,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/0e3d20b0-e321-4449-8f31-a891b97e0658?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/b778870e-d409-4dd0-a44d-0a55ecf9c0da?api-version=2020-12-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 09 Apr 2021 03:55:22 GMT + - Wed, 14 Apr 2021 09:23:16 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/0e3d20b0-e321-4449-8f31-a891b97e0658?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/b778870e-d409-4dd0-a44d-0a55ecf9c0da?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -1488,7 +1488,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1197 + - Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1199 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1508,13 +1508,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/0e3d20b0-e321-4449-8f31-a891b97e0658?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/b778870e-d409-4dd0-a44d-0a55ecf9c0da?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T03:55:23.1555159+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"0e3d20b0-e321-4449-8f31-a891b97e0658\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:23:17.1051932+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"b778870e-d409-4dd0-a44d-0a55ecf9c0da\"\r\n}" headers: cache-control: - no-cache @@ -1523,7 +1523,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:55:32 GMT + - Wed, 14 Apr 2021 09:23:27 GMT expires: - '-1' pragma: @@ -1540,7 +1540,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29976 + - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29994 status: code: 200 message: OK @@ -1558,14 +1558,14 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/0e3d20b0-e321-4449-8f31-a891b97e0658?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/b778870e-d409-4dd0-a44d-0a55ecf9c0da?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T03:55:23.1555159+00:00\",\r\n \"endTime\": - \"2021-04-09T03:55:50.5775864+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"0e3d20b0-e321-4449-8f31-a891b97e0658\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:23:17.1051932+00:00\",\r\n \"endTime\": + \"2021-04-14T09:23:47.3876472+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"b778870e-d409-4dd0-a44d-0a55ecf9c0da\"\r\n}" headers: cache-control: - no-cache @@ -1574,7 +1574,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:56:09 GMT + - Wed, 14 Apr 2021 09:24:03 GMT expires: - '-1' pragma: @@ -1591,7 +1591,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29973 + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29990 status: code: 200 message: OK @@ -1609,9 +1609,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/0e3d20b0-e321-4449-8f31-a891b97e0658?monitor=true&api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/b778870e-d409-4dd0-a44d-0a55ecf9c0da?monitor=true&api-version=2020-12-01 response: body: string: '' @@ -1621,7 +1621,7 @@ interactions: content-length: - '0' date: - - Fri, 09 Apr 2021 03:56:10 GMT + - Wed, 14 Apr 2021 09:24:03 GMT expires: - '-1' pragma: @@ -1634,7 +1634,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29972 + - Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29989 status: code: 200 message: OK @@ -1654,7 +1654,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/generalize?api-version=2020-12-01 response: @@ -1666,7 +1666,7 @@ interactions: content-length: - '0' date: - - Fri, 09 Apr 2021 03:56:10 GMT + - Wed, 14 Apr 2021 09:24:04 GMT expires: - '-1' pragma: @@ -1679,9 +1679,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;238,Microsoft.Compute/UpdateVM30Min;1196 + - Microsoft.Compute/UpdateVM3Min;238,Microsoft.Compute/UpdateVM30Min;1198 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -1699,26 +1699,26 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"2d8c1f0e-52ce-484a-9fc4-dcf27109d87b\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"c3c90b30-5cbe-49e3-8119-d01b4c9d2fb2\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202103250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"vm1_disk1_0a3dd4d450aa47f2afc0dc2ebcb7d8f0\",\r\n + \"Linux\",\r\n \"name\": \"vm1_disk1_a9ebcddecf804119bb33f2a238f5e735\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n - \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_0a3dd4d450aa47f2afc0dc2ebcb7d8f0\"\r\n + \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_a9ebcddecf804119bb33f2a238f5e735\"\r\n \ }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": - 0,\r\n \"name\": \"vm1_disk2_a2d0f54ba6cd447480371766b3cf91bd\",\r\n + 0,\r\n \"name\": \"vm1_disk2_4d42740e01a145b78c38ed39709f2290\",\r\n \ \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n - \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_a2d0f54ba6cd447480371766b3cf91bd\"\r\n + \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_4d42740e01a145b78c38ed39709f2290\"\r\n \ },\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n \ },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": @@ -1731,21 +1731,21 @@ interactions: true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"disks\": - [\r\n {\r\n \"name\": \"vm1_disk1_0a3dd4d450aa47f2afc0dc2ebcb7d8f0\",\r\n + [\r\n {\r\n \"name\": \"vm1_disk1_a9ebcddecf804119bb33f2a238f5e735\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-09T03:55:48.4838472+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-14T09:23:45.3093656+00:00\"\r\n \ }\r\n ]\r\n },\r\n {\r\n \"name\": - \"vm1_disk2_a2d0f54ba6cd447480371766b3cf91bd\",\r\n \"statuses\": + \"vm1_disk2_4d42740e01a145b78c38ed39709f2290\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-09T03:55:48.4838472+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-14T09:23:45.3093656+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"OSState/generalized\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM generalized\"\r\n \ },\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-09T03:55:48.4994513+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-14T09:23:45.3249912+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/deallocated\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n \ }\r\n ]\r\n }\r\n }\r\n}" @@ -1757,7 +1757,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:56:11 GMT + - Wed, 14 Apr 2021 09:24:04 GMT expires: - '-1' pragma: @@ -1774,7 +1774,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31966 + - Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31996 status: code: 200 message: OK @@ -1793,14 +1793,14 @@ interactions: - -g -n --source User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1809,7 +1809,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:56:11 GMT + - Wed, 14 Apr 2021 09:24:05 GMT expires: - '-1' pragma: @@ -1843,7 +1843,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1?api-version=2020-12-01 response: @@ -1854,10 +1854,10 @@ interactions: \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\"\r\n \ },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"managedDisk\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_0a3dd4d450aa47f2afc0dc2ebcb7d8f0\"\r\n + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_a9ebcddecf804119bb33f2a238f5e735\"\r\n \ },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": - 0,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_a2d0f54ba6cd447480371766b3cf91bd\"\r\n + 0,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_4d42740e01a145b78c38ed39709f2290\"\r\n \ },\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Premium_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"hyperVGeneration\": \"V1\"\r\n }\r\n}" @@ -1865,7 +1865,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/2519bc83-8324-411d-8f03-57dfb07e6768?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/acc3e0aa-5674-473a-8798-2a206f743e44?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -1873,7 +1873,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:56:18 GMT + - Wed, 14 Apr 2021 09:24:13 GMT expires: - '-1' pragma: @@ -1886,9 +1886,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateImages3Min;39,Microsoft.Compute/CreateImages30Min;198 + - Microsoft.Compute/CreateImages3Min;39,Microsoft.Compute/CreateImages30Min;199 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1196' status: code: 201 message: Created @@ -1906,23 +1906,23 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/2519bc83-8324-411d-8f03-57dfb07e6768?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/acc3e0aa-5674-473a-8798-2a206f743e44?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T03:56:17.2340347+00:00\",\r\n \"endTime\": - \"2021-04-09T03:56:22.3434106+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"2519bc83-8324-411d-8f03-57dfb07e6768\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:24:11.185392+00:00\",\r\n \"endTime\": + \"2021-04-14T09:24:16.3261615+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"acc3e0aa-5674-473a-8798-2a206f743e44\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:56:48 GMT + - Wed, 14 Apr 2021 09:24:43 GMT expires: - '-1' pragma: @@ -1939,7 +1939,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29970 + - Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29987 status: code: 200 message: OK @@ -1957,7 +1957,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1?api-version=2020-12-01 response: @@ -1968,11 +1968,11 @@ interactions: \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\"\r\n \ },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"diskSizeGB\": - 30,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_0a3dd4d450aa47f2afc0dc2ebcb7d8f0\"\r\n + 30,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_a9ebcddecf804119bb33f2a238f5e735\"\r\n \ },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"diskSizeGB\": 10,\r\n \"managedDisk\": {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_a2d0f54ba6cd447480371766b3cf91bd\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_4d42740e01a145b78c38ed39709f2290\"\r\n \ },\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Premium_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\r\n }\r\n}" @@ -1984,7 +1984,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:56:49 GMT + - Wed, 14 Apr 2021 09:24:43 GMT expires: - '-1' pragma: @@ -2001,7 +2001,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetImages3Min;358,Microsoft.Compute/GetImages30Min;1792 + - Microsoft.Compute/GetImages3Min;358,Microsoft.Compute/GetImages30Min;1798 status: code: 200 message: OK @@ -2021,14 +2021,14 @@ interactions: --replica-count User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2037,7 +2037,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:56:49 GMT + - Wed, 14 Apr 2021 09:24:44 GMT expires: - '-1' pragma: @@ -2072,7 +2072,7 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2020-09-30 response: @@ -2083,21 +2083,21 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-09T03:56:55.964542+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-14T09:24:47.9357926+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n \ }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e87ef5fd-29a2-4592-93a2-cd37f65854a0?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0f378fef-d2e1-4943-8917-cf4d4703e391?api-version=2020-09-30 cache-control: - no-cache content-length: - - '1074' + - '1075' content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:56:57 GMT + - Wed, 14 Apr 2021 09:24:49 GMT expires: - '-1' pragma: @@ -2110,9 +2110,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1196 + - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1198 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1195' status: code: 201 message: Created @@ -2131,22 +2131,22 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e87ef5fd-29a2-4592-93a2-cd37f65854a0?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0f378fef-d2e1-4943-8917-cf4d4703e391?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T03:56:55.964542+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"e87ef5fd-29a2-4592-93a2-cd37f65854a0\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:24:47.9201677+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"0f378fef-d2e1-4943-8917-cf4d4703e391\"\r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:57:58 GMT + - Wed, 14 Apr 2021 09:25:50 GMT expires: - '-1' pragma: @@ -2163,7 +2163,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4123 + - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4182 status: code: 200 message: OK @@ -2182,22 +2182,22 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e87ef5fd-29a2-4592-93a2-cd37f65854a0?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0f378fef-d2e1-4943-8917-cf4d4703e391?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T03:56:55.964542+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"e87ef5fd-29a2-4592-93a2-cd37f65854a0\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:24:47.9201677+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"0f378fef-d2e1-4943-8917-cf4d4703e391\"\r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:59:00 GMT + - Wed, 14 Apr 2021 09:26:50 GMT expires: - '-1' pragma: @@ -2214,7 +2214,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4120 + - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4179 status: code: 200 message: OK @@ -2233,22 +2233,22 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e87ef5fd-29a2-4592-93a2-cd37f65854a0?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0f378fef-d2e1-4943-8917-cf4d4703e391?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T03:56:55.964542+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"e87ef5fd-29a2-4592-93a2-cd37f65854a0\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:24:47.9201677+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"0f378fef-d2e1-4943-8917-cf4d4703e391\"\r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:59:59 GMT + - Wed, 14 Apr 2021 09:27:51 GMT expires: - '-1' pragma: @@ -2265,7 +2265,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4124 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4175 status: code: 200 message: OK @@ -2284,22 +2284,22 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e87ef5fd-29a2-4592-93a2-cd37f65854a0?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0f378fef-d2e1-4943-8917-cf4d4703e391?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T03:56:55.964542+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"e87ef5fd-29a2-4592-93a2-cd37f65854a0\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:24:47.9201677+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"0f378fef-d2e1-4943-8917-cf4d4703e391\"\r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:01:01 GMT + - Wed, 14 Apr 2021 09:28:52 GMT expires: - '-1' pragma: @@ -2316,7 +2316,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4120 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4171 status: code: 200 message: OK @@ -2335,22 +2335,22 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e87ef5fd-29a2-4592-93a2-cd37f65854a0?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0f378fef-d2e1-4943-8917-cf4d4703e391?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T03:56:55.964542+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"e87ef5fd-29a2-4592-93a2-cd37f65854a0\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:24:47.9201677+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"0f378fef-d2e1-4943-8917-cf4d4703e391\"\r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:02:01 GMT + - Wed, 14 Apr 2021 09:29:54 GMT expires: - '-1' pragma: @@ -2367,7 +2367,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4116 + - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4168 status: code: 200 message: OK @@ -2386,22 +2386,22 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e87ef5fd-29a2-4592-93a2-cd37f65854a0?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0f378fef-d2e1-4943-8917-cf4d4703e391?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T03:56:55.964542+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"e87ef5fd-29a2-4592-93a2-cd37f65854a0\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:24:47.9201677+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"0f378fef-d2e1-4943-8917-cf4d4703e391\"\r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:03:02 GMT + - Wed, 14 Apr 2021 09:30:53 GMT expires: - '-1' pragma: @@ -2418,7 +2418,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4112 + - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4164 status: code: 200 message: OK @@ -2437,22 +2437,22 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e87ef5fd-29a2-4592-93a2-cd37f65854a0?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0f378fef-d2e1-4943-8917-cf4d4703e391?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T03:56:55.964542+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"e87ef5fd-29a2-4592-93a2-cd37f65854a0\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:24:47.9201677+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"0f378fef-d2e1-4943-8917-cf4d4703e391\"\r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:04:03 GMT + - Wed, 14 Apr 2021 09:31:55 GMT expires: - '-1' pragma: @@ -2469,7 +2469,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4108 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4159 status: code: 200 message: OK @@ -2488,23 +2488,23 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e87ef5fd-29a2-4592-93a2-cd37f65854a0?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0f378fef-d2e1-4943-8917-cf4d4703e391?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T03:56:55.964542+00:00\",\r\n \"endTime\": - \"2021-04-09T04:04:03.7939673+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"e87ef5fd-29a2-4592-93a2-cd37f65854a0\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:24:47.9201677+00:00\",\r\n \"endTime\": + \"2021-04-14T09:31:56.2509304+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"0f378fef-d2e1-4943-8917-cf4d4703e391\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:05:04 GMT + - Wed, 14 Apr 2021 09:32:54 GMT expires: - '-1' pragma: @@ -2521,7 +2521,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4122 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4156 status: code: 200 message: OK @@ -2540,7 +2540,7 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2020-09-30 response: @@ -2551,7 +2551,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-09T03:56:55.964542+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-14T09:24:47.9357926+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n \ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": @@ -2563,11 +2563,11 @@ interactions: cache-control: - no-cache content-length: - - '1333' + - '1334' content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:05:05 GMT + - Wed, 14 Apr 2021 09:32:55 GMT expires: - '-1' pragma: @@ -2584,7 +2584,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1997,Microsoft.Compute/GetGalleryImageVersion30Min;9980 + - Microsoft.Compute/GetGalleryImageVersion3Min;1993,Microsoft.Compute/GetGalleryImageVersion30Min;9986 status: code: 200 message: OK @@ -2602,22 +2602,22 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions?api-version=2020-09-30 response: body: string: '{"value":[{"name":"1.1.2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2","type":"Microsoft.Compute/galleries/images/versions","location":"eastus2","tags":{},"properties":{"publishingProfile":{"targetRegions":[{"name":"East - US 2","regionalReplicaCount":1,"storageAccountType":"Standard_LRS"}],"replicaCount":1,"excludeFromLatest":false,"publishedDate":"2021-04-09T03:56:55.964542+00:00","storageAccountType":"Standard_LRS"},"storageProfile":{"source":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1"},"osDiskImage":{"sizeInGB":30,"hostCaching":"ReadWrite","source":{}},"dataDiskImages":[{"lun":0,"sizeInGB":10,"hostCaching":"None"}]},"provisioningState":"Succeeded"}}]}' + US 2","regionalReplicaCount":1,"storageAccountType":"Standard_LRS"}],"replicaCount":1,"excludeFromLatest":false,"publishedDate":"2021-04-14T09:24:47.9357926+00:00","storageAccountType":"Standard_LRS"},"storageProfile":{"source":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1"},"osDiskImage":{"sizeInGB":30,"hostCaching":"ReadWrite","source":{}},"dataDiskImages":[{"lun":0,"sizeInGB":10,"hostCaching":"None"}]},"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '1010' + - '1011' content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:05:07 GMT + - Wed, 14 Apr 2021 09:32:57 GMT expires: - '-1' pragma: @@ -2629,42 +2629,42 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 3baea4c6-aa27-404e-8113-e0f2d50016af - - 97096964-bfea-4838-b748-f2dd2d77887b - - 0a681110-86b9-40ff-a5d3-0300fe2c087d - - 2d99cff5-cc74-41b4-98ab-a5b896ade3b3 - - 4e6eef6a-eee2-497b-82f2-1042b7b9e3a5 - - 9242686c-8537-4539-a8dd-3d4046b07a5b - - be4559dd-3c12-44b2-8957-3e7dded057dd - - 4623de0b-be63-4a3d-a65e-ad8c624f5fe9 - - 8cf65741-d330-4c1e-9c9e-43fa84385ab0 - - ac4ed535-a617-4bad-af5a-94b0f47a08c2 - - ece18745-4d05-4ebd-8c87-947334d40824 - - ea9bbe9e-f603-4690-9ede-cfc23c33e690 - - 114175d9-50c4-40ff-bd82-7f7ba9ecfcc9 - - 72adf364-b748-4c51-bde6-600634382b26 - - 9eb41150-4045-487e-a87c-6723a85919ee - - 70b2a007-9f3d-4b0a-8a20-ca82249b1295 - - 16760e73-0979-4242-b6f2-d181ed15ca48 - - b0902b81-749b-4c8b-9a5f-ce948b0d0ad6 - - a62fb6c1-b358-4064-a63f-7da301fe44e8 - - 4bc6bb21-cff4-45a3-94ca-b8bc70668dcb - - 0be232e6-3d77-4b94-8a48-5cb857e1ec9f - - 5f697804-c30e-4d10-87d4-4dbcaf341160 - - 1d6bb7f4-6f31-4228-b495-a6ddc0128f1c - - 5647bee5-0f3e-4b46-9660-d4fb58613322 - - dd8f5e07-2a4a-404e-9a8d-c033296c7271 - - f6a552ed-608c-481a-b815-df9d376f7844 - - 240b4129-df21-4bc2-b6ec-17bd188d8fc3 - - 84573435-b4c6-48c6-a176-6a9bfe1f48b6 - - 3d85c5f6-22d4-4898-a8a1-e58d3fb7f6a1 - - da32e956-e0cf-44fb-bb06-e865a1d42d3d - - 446cf4d0-9852-4f31-961b-78ab68d4e7ba - - 995cabfe-3fc7-4f4f-b3a3-04c074707bde - - 36a6ded6-a506-4431-a095-0faa404eeed2 - - 92d56143-4a16-413a-a244-58eb07173057 - - d8e49975-c5f5-4eaa-884c-bf0e755ea148 - - fad78676-f665-46c1-a8f1-6404a05e2bcf + - e77e5f61-d4f2-4954-98ee-fe01f8dedbd4 + - fcbaf940-5542-4c3b-940e-f692f62302dd + - 1d3aca94-6955-4da8-8c06-e8d9cf3853be + - 5a07e9f6-67fd-4693-8bf9-b0e5dfcea5f4 + - bfda1470-6480-49d9-8de8-046f148cbd38 + - 774073d1-949a-4a59-957d-a72358b48a40 + - c666c349-9d00-4780-bc4a-3af3cd33536c + - c7638ecd-d7b8-4c4a-978d-279f484d455d + - 7434a0bb-1ee6-4a43-adc1-06479f0b181b + - 4aed1195-17d9-4f36-892c-0a244d9807ab + - bd4a4150-2f82-453b-b626-8d354f7c88d2 + - 197fb7c9-a815-4dd0-bb0f-7cdfd6e6863e + - ad7a9b37-da4d-4208-9582-183af478ce64 + - fbd87cdd-d101-4490-b12d-16ed977a69d2 + - cee4ecbd-6124-4bed-914d-7c3bbf87f6c4 + - 70d72ec2-80b6-4fa0-a7e7-67eb68768dee + - d4da8899-081b-4001-ac24-3be988537d6d + - b00e522f-c5f8-459b-9222-d400327af99a + - 1cb76b09-87c7-4745-83ef-0300bf2e86a7 + - 0f3a5ced-80fd-4da4-bf5f-f5116c6ea9ec + - 3413f732-0c8a-4030-aeea-319a9c83df58 + - 49c823d3-4c30-4097-a687-f752f177ef3e + - d085e0b7-fc6c-4b2f-8423-8697fc754ce3 + - f41712fd-c46b-4c4d-b21c-f2fb61d38d4b + - 40003990-791a-43c9-bcad-b100bb8b76de + - 43597654-2536-4f44-ba95-49281530a549 + - 162629f5-cc6a-4431-af86-d15ddcad7e4d + - bb681ff1-3d91-4854-822a-5ccae6d1eef2 + - 3eadaec1-edcc-4fdf-a791-e9f104f19fbb + - f2f7c13f-9f1f-435c-aaf5-84ea6604a75f + - 7f39d104-8b6b-4769-93e1-f376e5ae72f8 + - eb9451c3-99ca-4c79-9583-f6a9af1bce80 + - 307a39c8-403d-4745-93b9-1ed36a724241 + - edab7c4e-fb31-4840-aff5-0da21c181ad3 + - 910542eb-0338-4f5c-9cd2-0dec29a2ac61 + - a409f186-9b32-4caf-b2dc-e9bfa50dd6f0 status: code: 200 message: OK @@ -2682,7 +2682,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2020-09-30 response: @@ -2693,7 +2693,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-09T03:56:55.964542+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-14T09:24:47.9357926+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n \ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": @@ -2705,11 +2705,11 @@ interactions: cache-control: - no-cache content-length: - - '1333' + - '1334' content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:05:08 GMT + - Wed, 14 Apr 2021 09:32:59 GMT expires: - '-1' pragma: @@ -2726,7 +2726,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1996,Microsoft.Compute/GetGalleryImageVersion30Min;9979 + - Microsoft.Compute/GetGalleryImageVersion3Min;1992,Microsoft.Compute/GetGalleryImageVersion30Min;9985 status: code: 200 message: OK @@ -2745,7 +2745,7 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2020-09-30 response: @@ -2756,7 +2756,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-09T03:56:55.964542+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-14T09:24:47.9357926+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n \ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": @@ -2768,11 +2768,11 @@ interactions: cache-control: - no-cache content-length: - - '1333' + - '1334' content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:05:08 GMT + - Wed, 14 Apr 2021 09:32:59 GMT expires: - '-1' pragma: @@ -2789,7 +2789,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1995,Microsoft.Compute/GetGalleryImageVersion30Min;9978 + - Microsoft.Compute/GetGalleryImageVersion3Min;1992,Microsoft.Compute/GetGalleryImageVersion30Min;9984 status: code: 200 message: OK @@ -2816,7 +2816,7 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2020-09-30 response: @@ -2829,7 +2829,7 @@ interactions: \"Standard_LRS\"\r\n },\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 2,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 2,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-09T03:56:55.964542+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-14T09:24:47.9357926+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n \ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": @@ -2839,15 +2839,15 @@ interactions: \ \"provisioningState\": \"Updating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a943606b-9d69-4d25-b4f7-373e080fa640?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8c4c43a-5437-40c1-ade5-5519a7a55543?api-version=2020-09-30 cache-control: - no-cache content-length: - - '1473' + - '1474' content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:05:10 GMT + - Wed, 14 Apr 2021 09:33:00 GMT expires: - '-1' pragma: @@ -2866,415 +2866,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1197 x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version update - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions - --replica-count - User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a943606b-9d69-4d25-b4f7-373e080fa640?api-version=2020-09-30 - response: - body: - string: "{\r\n \"startTime\": \"2021-04-09T04:05:10.5934582+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"a943606b-9d69-4d25-b4f7-373e080fa640\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 09 Apr 2021 04:06:10 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4119 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version update - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions - --replica-count - User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a943606b-9d69-4d25-b4f7-373e080fa640?api-version=2020-09-30 - response: - body: - string: "{\r\n \"startTime\": \"2021-04-09T04:05:10.5934582+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"a943606b-9d69-4d25-b4f7-373e080fa640\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 09 Apr 2021 04:07:10 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4115 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version update - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions - --replica-count - User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a943606b-9d69-4d25-b4f7-373e080fa640?api-version=2020-09-30 - response: - body: - string: "{\r\n \"startTime\": \"2021-04-09T04:05:10.5934582+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"a943606b-9d69-4d25-b4f7-373e080fa640\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 09 Apr 2021 04:08:11 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4111 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version update - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions - --replica-count - User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a943606b-9d69-4d25-b4f7-373e080fa640?api-version=2020-09-30 - response: - body: - string: "{\r\n \"startTime\": \"2021-04-09T04:05:10.5934582+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"a943606b-9d69-4d25-b4f7-373e080fa640\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 09 Apr 2021 04:09:12 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4107 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version update - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions - --replica-count - User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a943606b-9d69-4d25-b4f7-373e080fa640?api-version=2020-09-30 - response: - body: - string: "{\r\n \"startTime\": \"2021-04-09T04:05:10.5934582+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"a943606b-9d69-4d25-b4f7-373e080fa640\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 09 Apr 2021 04:10:12 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4122 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version update - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions - --replica-count - User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a943606b-9d69-4d25-b4f7-373e080fa640?api-version=2020-09-30 - response: - body: - string: "{\r\n \"startTime\": \"2021-04-09T04:05:10.5934582+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"a943606b-9d69-4d25-b4f7-373e080fa640\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 09 Apr 2021 04:11:14 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4118 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version update - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions - --replica-count - User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a943606b-9d69-4d25-b4f7-373e080fa640?api-version=2020-09-30 - response: - body: - string: "{\r\n \"startTime\": \"2021-04-09T04:05:10.5934582+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"a943606b-9d69-4d25-b4f7-373e080fa640\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 09 Apr 2021 04:12:14 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4116 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version update - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions - --replica-count - User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a943606b-9d69-4d25-b4f7-373e080fa640?api-version=2020-09-30 - response: - body: - string: "{\r\n \"startTime\": \"2021-04-09T04:05:10.5934582+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"a943606b-9d69-4d25-b4f7-373e080fa640\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 09 Apr 2021 04:13:15 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4112 + - '1198' status: code: 200 message: OK @@ -3293,13 +2885,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a943606b-9d69-4d25-b4f7-373e080fa640?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8c4c43a-5437-40c1-ade5-5519a7a55543?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T04:05:10.5934582+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"a943606b-9d69-4d25-b4f7-373e080fa640\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:33:01.0325905+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e8c4c43a-5437-40c1-ade5-5519a7a55543\"\r\n}" headers: cache-control: - no-cache @@ -3308,7 +2900,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:14:16 GMT + - Wed, 14 Apr 2021 09:34:00 GMT expires: - '-1' pragma: @@ -3325,7 +2917,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4108 + - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4155 status: code: 200 message: OK @@ -3344,13 +2936,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a943606b-9d69-4d25-b4f7-373e080fa640?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8c4c43a-5437-40c1-ade5-5519a7a55543?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T04:05:10.5934582+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"a943606b-9d69-4d25-b4f7-373e080fa640\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:33:01.0325905+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e8c4c43a-5437-40c1-ade5-5519a7a55543\"\r\n}" headers: cache-control: - no-cache @@ -3359,7 +2951,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:15:17 GMT + - Wed, 14 Apr 2021 09:35:02 GMT expires: - '-1' pragma: @@ -3376,7 +2968,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4114 + - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4153 status: code: 200 message: OK @@ -3395,13 +2987,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a943606b-9d69-4d25-b4f7-373e080fa640?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8c4c43a-5437-40c1-ade5-5519a7a55543?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T04:05:10.5934582+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"a943606b-9d69-4d25-b4f7-373e080fa640\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:33:01.0325905+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e8c4c43a-5437-40c1-ade5-5519a7a55543\"\r\n}" headers: cache-control: - no-cache @@ -3410,7 +3002,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:16:17 GMT + - Wed, 14 Apr 2021 09:36:02 GMT expires: - '-1' pragma: @@ -3427,7 +3019,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4110 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4151 status: code: 200 message: OK @@ -3446,13 +3038,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a943606b-9d69-4d25-b4f7-373e080fa640?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8c4c43a-5437-40c1-ade5-5519a7a55543?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T04:05:10.5934582+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"a943606b-9d69-4d25-b4f7-373e080fa640\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:33:01.0325905+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e8c4c43a-5437-40c1-ade5-5519a7a55543\"\r\n}" headers: cache-control: - no-cache @@ -3461,7 +3053,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:17:19 GMT + - Wed, 14 Apr 2021 09:37:02 GMT expires: - '-1' pragma: @@ -3478,7 +3070,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4106 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4149 status: code: 200 message: OK @@ -3497,13 +3089,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a943606b-9d69-4d25-b4f7-373e080fa640?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8c4c43a-5437-40c1-ade5-5519a7a55543?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T04:05:10.5934582+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"a943606b-9d69-4d25-b4f7-373e080fa640\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:33:01.0325905+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e8c4c43a-5437-40c1-ade5-5519a7a55543\"\r\n}" headers: cache-control: - no-cache @@ -3512,7 +3104,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:18:20 GMT + - Wed, 14 Apr 2021 09:38:04 GMT expires: - '-1' pragma: @@ -3529,7 +3121,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4102 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4147 status: code: 200 message: OK @@ -3548,13 +3140,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a943606b-9d69-4d25-b4f7-373e080fa640?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8c4c43a-5437-40c1-ade5-5519a7a55543?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T04:05:10.5934582+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"a943606b-9d69-4d25-b4f7-373e080fa640\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:33:01.0325905+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e8c4c43a-5437-40c1-ade5-5519a7a55543\"\r\n}" headers: cache-control: - no-cache @@ -3563,7 +3155,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:19:21 GMT + - Wed, 14 Apr 2021 09:39:04 GMT expires: - '-1' pragma: @@ -3580,7 +3172,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4098 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4145 status: code: 200 message: OK @@ -3599,13 +3191,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a943606b-9d69-4d25-b4f7-373e080fa640?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8c4c43a-5437-40c1-ade5-5519a7a55543?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T04:05:10.5934582+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"a943606b-9d69-4d25-b4f7-373e080fa640\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:33:01.0325905+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e8c4c43a-5437-40c1-ade5-5519a7a55543\"\r\n}" headers: cache-control: - no-cache @@ -3614,7 +3206,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:20:21 GMT + - Wed, 14 Apr 2021 09:40:06 GMT expires: - '-1' pragma: @@ -3631,7 +3223,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4110 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4143 status: code: 200 message: OK @@ -3650,14 +3242,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a943606b-9d69-4d25-b4f7-373e080fa640?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8c4c43a-5437-40c1-ade5-5519a7a55543?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T04:05:10.5934582+00:00\",\r\n \"endTime\": - \"2021-04-09T04:21:11.3662776+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"a943606b-9d69-4d25-b4f7-373e080fa640\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:33:01.0325905+00:00\",\r\n \"endTime\": + \"2021-04-14T09:40:47.4574311+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"e8c4c43a-5437-40c1-ade5-5519a7a55543\"\r\n}" headers: cache-control: - no-cache @@ -3666,7 +3258,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:21:22 GMT + - Wed, 14 Apr 2021 09:41:06 GMT expires: - '-1' pragma: @@ -3683,7 +3275,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4106 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4141 status: code: 200 message: OK @@ -3702,7 +3294,7 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2020-09-30 response: @@ -3715,7 +3307,7 @@ interactions: \"Standard_LRS\"\r\n },\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 2,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 2,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-09T03:56:55.964542+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-14T09:24:47.9357926+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n \ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": @@ -3727,11 +3319,11 @@ interactions: cache-control: - no-cache content-length: - - '1474' + - '1475' content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:21:23 GMT + - Wed, 14 Apr 2021 09:41:06 GMT expires: - '-1' pragma: @@ -3748,7 +3340,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1996,Microsoft.Compute/GetGalleryImageVersion30Min;9981 + - Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9982 status: code: 200 message: OK @@ -3767,14 +3359,14 @@ interactions: - -g -n --enable-purge-protection --enable-soft-delete User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3783,7 +3375,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:21:24 GMT + - Wed, 14 Apr 2021 09:41:08 GMT expires: - '-1' pragma: @@ -3828,19 +3420,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 09 Apr 2021 04:21:25 GMT + - Wed, 14 Apr 2021 09:41:09 GMT duration: - - '2541753' + - '4386885' expires: - '-1' ocp-aad-diagnostics-server-name: - - QypjRbR/biRrN8hO+Pq+ED+MWdsXDtDE9XzIBm0jg8Q= + - sHt0aHppBP2z8G93yj+JCdu8HrOizpiLsuKNO0oK2FA= ocp-aad-session-key: - - nRi_51L3J_KGqXoYtZ-xKSGhEtkOHeDcaXx59RXsq41OW3MLGr4TJRZtgvLhsgbwdHzOJ0LZhrMW6_ai4fScUeQBLaKAo1tohrfPKf3tCx5CCsZ7vITMpht8O7tgGght.EILewD5kZJotLzGw8B_xZwppO040glfcB7nAvQlZHbI + - 7DWBjP_sr0GVHWyrR5sgwfWEcYsaweS80Rm_V0lpjIZ4shCp9CUQq9Vd49CQj238loUZf8RbmkH1Otmi2OX9miK8pU_obsW2YL-wxXqiVxI4wINQeB6Ti8wjxP5Y5skr.hn7KSshAR7BzjIulfi9Roa-Gex33NWI3Z1BKATdEzhU pragma: - no-cache request-id: - - 756939c4-ed24-4b53-bd92-cc07c6625f18 + - 095a241d-dd0a-4aad-b620-ed76761290fd strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -3882,7 +3474,7 @@ interactions: ParameterSetName: - -g -n --enable-purge-protection --enable-soft-delete User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003?api-version=2019-09-01 response: @@ -3896,7 +3488,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:21:34 GMT + - Wed, 14 Apr 2021 09:41:17 GMT expires: - '-1' pragma: @@ -3914,9 +3506,9 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.286.0 + - 1.1.292.0 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' x-powered-by: - ASP.NET status: @@ -3936,7 +3528,7 @@ interactions: ParameterSetName: - -g -n --enable-purge-protection --enable-soft-delete User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003?api-version=2019-09-01 response: @@ -3950,7 +3542,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:22:04 GMT + - Wed, 14 Apr 2021 09:41:48 GMT expires: - '-1' pragma: @@ -3968,7 +3560,7 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.286.0 + - 1.1.292.0 x-powered-by: - ASP.NET status: @@ -4006,7 +3598,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:22:06 GMT + - Wed, 14 Apr 2021 09:41:50 GMT expires: - '-1' pragma: @@ -4051,7 +3643,7 @@ interactions: uri: https://vault-000003.vault.azure.net/keys/key-000004/create?api-version=7.0 response: body: - string: '{"key":{"kid":"https://vault-000003.vault.azure.net/keys/key-000004/c803d37b23b34abd8a3f23e51f43bbd4","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"7zvVJv-A-jjOb_48nAANvsMqlcofEI3yjIv87FLxBMamUtILIN_QJL6mEKHFpizFd_HbA4ifTlu7YSihxCuI6MW9s2CwbSwNBBlTyji2FqjWIsgE3NgwHTBUCS3ck-9BMUuv0t7_jWRERhCgZ-WyYuEgrsiYP-rxXV2q5dXJJACjirP7EHFn5RfINjkfy2Ru48vj5NWoVpMTdz-SI2cIde94nWpz-pM-aT99IJXYtzXTTMimNMIFAAKgnclni1ofrSM-73wPGELOIlmUsxPLdZBk-9IC3qSzGnNKUgIoo01rDg_jkmVmQlsAHW1TuHxq1UbGgkdak5FHi311ijoQqQ","e":"AQAB"},"attributes":{"enabled":true,"created":1617942127,"updated":1617942127,"recoveryLevel":"Recoverable"}}' + string: '{"key":{"kid":"https://vault-000003.vault.azure.net/keys/key-000004/5183b2423dea4264871a281e5f2e52c8","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"0tdv9IydO-CFc2H3BcmiHUOr8r5abjhIT4kNQqNuP4kxNGcDKIEIdZfgvZqSwRcCAMbwwz1nQdUqGeP0OUUrUzhaTehDYHim-G0TlvMaUyln4hDQUiWJXR53CZhF-Kxf0AeKN0M8TJGTaJ-_jfcjrh144OJjuXVtunBq5E6ZNr9pCYQYmVG6ZIAOYyT_glUtVeLB9NJgsLyRFtTgzKJzjBXlAmworGOOCwhg-XkJsvL700EKGFsp8BdKRW59kf_prFzC366TdozAItLNXCjLWCgCxBSyfDHgAOunDkN5EmQYJiyvxSJE6ZEy3o56DrEQBLJ5oyZovHFFWLdCxeaesQ","e":"AQAB"},"attributes":{"enabled":true,"created":1618393311,"updated":1618393311,"recoveryLevel":"Recoverable"}}' headers: cache-control: - no-cache @@ -4060,7 +3652,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:22:07 GMT + - Wed, 14 Apr 2021 09:41:52 GMT expires: - '-1' pragma: @@ -4095,14 +3687,14 @@ interactions: - -g -n --key-url --source-vault User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -4111,7 +3703,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:22:08 GMT + - Wed, 14 Apr 2021 09:41:52 GMT expires: - '-1' pragma: @@ -4128,7 +3720,7 @@ interactions: - request: body: '{"location": "eastus2", "identity": {"type": "SystemAssigned"}, "properties": {"activeKey": {"sourceVault": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003"}, - "keyUrl": "https://vault-000003.vault.azure.net/keys/key-000004/c803d37b23b34abd8a3f23e51f43bbd4"}}}' + "keyUrl": "https://vault-000003.vault.azure.net/keys/key-000004/5183b2423dea4264871a281e5f2e52c8"}}}' headers: Accept: - application/json @@ -4145,19 +3737,19 @@ interactions: ParameterSetName: - -g -n --key-url --source-vault User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005?api-version=2020-12-01 response: body: string: "{\r\n \"location\": \"eastus2\",\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"activeKey\": {\r\n \ \"sourceVault\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003\"\r\n - \ },\r\n \"keyUrl\": \"https://vault-000003.vault.azure.net/keys/key-000004/c803d37b23b34abd8a3f23e51f43bbd4\"\r\n + \ },\r\n \"keyUrl\": \"https://vault-000003.vault.azure.net/keys/key-000004/5183b2423dea4264871a281e5f2e52c8\"\r\n \ },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/627f3c9f-9c56-4bb4-af0a-deb155f8a553?api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/5c19e3ef-a44d-400a-9ee4-45535e5ddfb6?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -4165,11 +3757,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:22:15 GMT + - Wed, 14 Apr 2021 09:42:02 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/627f3c9f-9c56-4bb4-af0a-deb155f8a553?monitor=true&api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/5c19e3ef-a44d-400a-9ee4-45535e5ddfb6?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -4180,9 +3772,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostDiskEncryptionSet3Min;99,Microsoft.Compute/HighCostDiskEncryptionSet30Min;298 + - Microsoft.Compute/HighCostDiskEncryptionSet3Min;99,Microsoft.Compute/HighCostDiskEncryptionSet30Min;299 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted @@ -4200,15 +3792,15 @@ interactions: ParameterSetName: - -g -n --key-url --source-vault User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/627f3c9f-9c56-4bb4-af0a-deb155f8a553?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/5c19e3ef-a44d-400a-9ee4-45535e5ddfb6?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T04:22:15.9248356+00:00\",\r\n \"endTime\": - \"2021-04-09T04:22:15.9717095+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"properties\": {\r\n \"output\": {\"name\":\"des1-000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\",\"type\":\"Microsoft.Compute/diskEncryptionSets\",\"location\":\"eastus2\",\"identity\":{\"type\":\"SystemAssigned\",\"principalId\":\"7ad30645-6306-4bf9-9d64-85508ca79c9b\",\"tenantId\":\"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"},\"properties\":{\"activeKey\":{\"sourceVault\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003\"},\"keyUrl\":\"https://vault-000003.vault.azure.net/keys/key-000004/c803d37b23b34abd8a3f23e51f43bbd4\"},\"encryptionType\":\"EncryptionAtRestWithCustomerKey\",\"provisioningState\":\"Succeeded\"}}\r\n - \ },\r\n \"name\": \"627f3c9f-9c56-4bb4-af0a-deb155f8a553\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:42:03.2318429+00:00\",\r\n \"endTime\": + \"2021-04-14T09:42:03.3255468+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"properties\": {\r\n \"output\": {\"name\":\"des1-000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\",\"type\":\"Microsoft.Compute/diskEncryptionSets\",\"location\":\"eastus2\",\"identity\":{\"type\":\"SystemAssigned\",\"principalId\":\"1d8fb725-3405-4a8a-92de-9336c73524fa\",\"tenantId\":\"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"},\"properties\":{\"activeKey\":{\"sourceVault\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003\"},\"keyUrl\":\"https://vault-000003.vault.azure.net/keys/key-000004/5183b2423dea4264871a281e5f2e52c8\"},\"encryptionType\":\"EncryptionAtRestWithCustomerKey\",\"provisioningState\":\"Succeeded\"}}\r\n + \ },\r\n \"name\": \"5c19e3ef-a44d-400a-9ee4-45535e5ddfb6\"\r\n}" headers: cache-control: - no-cache @@ -4217,7 +3809,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:22:45 GMT + - Wed, 14 Apr 2021 09:42:32 GMT expires: - '-1' pragma: @@ -4234,7 +3826,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49996,Microsoft.Compute/GetOperation30Min;399918 + - Microsoft.Compute/GetOperation3Min;49998,Microsoft.Compute/GetOperation30Min;399990 status: code: 200 message: OK @@ -4252,18 +3844,18 @@ interactions: ParameterSetName: - -g -n --key-url --source-vault User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"des1-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\",\r\n \ \"type\": \"Microsoft.Compute/diskEncryptionSets\",\r\n \"location\": \"eastus2\",\r\n \ \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": - \"7ad30645-6306-4bf9-9d64-85508ca79c9b\",\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n + \"1d8fb725-3405-4a8a-92de-9336c73524fa\",\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n \ },\r\n \"properties\": {\r\n \"activeKey\": {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003\"\r\n - \ },\r\n \"keyUrl\": \"https://vault-000003.vault.azure.net/keys/key-000004/c803d37b23b34abd8a3f23e51f43bbd4\"\r\n + \ },\r\n \"keyUrl\": \"https://vault-000003.vault.azure.net/keys/key-000004/5183b2423dea4264871a281e5f2e52c8\"\r\n \ },\r\n \"encryptionType\": \"EncryptionAtRestWithCustomerKey\",\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: @@ -4274,7 +3866,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:22:45 GMT + - Wed, 14 Apr 2021 09:42:33 GMT expires: - '-1' pragma: @@ -4291,7 +3883,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14993,Microsoft.Compute/LowCostGet30Min;119975 + - Microsoft.Compute/LowCostGet3Min;14997,Microsoft.Compute/LowCostGet30Min;119994 status: code: 200 message: OK @@ -4309,18 +3901,18 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"des1-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\",\r\n \ \"type\": \"Microsoft.Compute/diskEncryptionSets\",\r\n \"location\": \"eastus2\",\r\n \ \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": - \"7ad30645-6306-4bf9-9d64-85508ca79c9b\",\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n + \"1d8fb725-3405-4a8a-92de-9336c73524fa\",\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n \ },\r\n \"properties\": {\r\n \"activeKey\": {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003\"\r\n - \ },\r\n \"keyUrl\": \"https://vault-000003.vault.azure.net/keys/key-000004/c803d37b23b34abd8a3f23e51f43bbd4\"\r\n + \ },\r\n \"keyUrl\": \"https://vault-000003.vault.azure.net/keys/key-000004/5183b2423dea4264871a281e5f2e52c8\"\r\n \ },\r\n \"encryptionType\": \"EncryptionAtRestWithCustomerKey\",\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: @@ -4331,7 +3923,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:22:47 GMT + - Wed, 14 Apr 2021 09:42:34 GMT expires: - '-1' pragma: @@ -4348,7 +3940,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14992,Microsoft.Compute/LowCostGet30Min;119974 + - Microsoft.Compute/LowCostGet3Min;14996,Microsoft.Compute/LowCostGet30Min;119993 status: code: 200 message: OK @@ -4366,21 +3958,21 @@ interactions: ParameterSetName: - -n --object-id --key-permissions User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azps-test-group/providers/Microsoft.KeyVault/vaults/azps-test-kv2","name":"azps-test-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azps-test-group/providers/Microsoft.KeyVault/vaults/azps-test-kv4","name":"azps-test-kv4","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_key_vault_key_urigk6zbmvpwndot4l2vqbg3jt2isvlqcuwlh542qwq/providers/Microsoft.KeyVault/vaults/clikcofxlhinqs5","name":"clikcofxlhinqs5","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_key_vault_key_urieolla4mizpsg4zn3jxdetwdrtyn6orfoar7axhii/providers/Microsoft.KeyVault/vaults/clibe4b26od6g3b","name":"clibe4b26od6g3b","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003","name":"vault-000003","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault1569","name":"vault1569","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.KeyVault/vaults/cli-sni-kv","name":"cli-sni-kv","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.KeyVault/vaults/ase-testdevice-020dc7b13","name":"ase-testdevice-020dc7b13","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{"dbe-resource":"testdevice"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.KeyVault/vaults/ase-ysgatewayd-e2960da93","name":"ase-ysgatewayd-e2960da93","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{"dbe-resource":"ysgatewaydevice"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.KeyVault/vaults/ysvault","name":"ysvault","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azps-test-group/providers/Microsoft.KeyVault/vaults/azps-test-kv2","name":"azps-test-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azps-test-group/providers/Microsoft.KeyVault/vaults/azps-test-kv4","name":"azps-test-kv4","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_certggzs7nxo5hjulhbph77kpvp354aj2g76gnb4o6vaxi6syrqnv6ggq/providers/Microsoft.KeyVault/vaults/cli-test-kv-ct-jf3usxgrl","name":"cli-test-kv-ct-jf3usxgrl","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_pecls2h5rxvfaqqkvye55nhoori3r3dmwaqfb7lzom54axazkkm4is7ke/providers/Microsoft.KeyVault/vaults/cli-test-kv-pec-x4mreb6v","name":"cli-test-kv-pec-x4mreb6v","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sdmncdngmrvbbjhfs6a2sosy2kv22fuft3gi3yy6yqcgh53atiqp7iu6m/providers/Microsoft.KeyVault/vaults/cli-test-kv-sd-bii62ul25","name":"cli-test-kv-sd-bii62ul25","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secret_soft_deletemq3pggvjub2evjp5lm4u3p6pogoqzenw3teewhk/providers/Microsoft.KeyVault/vaults/cli-test-kv-se-sd-oftopu","name":"cli-test-kv-se-sd-oftopu","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretf6hut52qzfmqwtgebrz7mtpsdiu7jd2kq2enndadzgrvtk5prq6/providers/Microsoft.KeyVault/vaults/cli-test-kv-se-ewh7pirby","name":"cli-test-kv-se-ewh7pirby","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003","name":"vault-000003","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault1569","name":"vault1569","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/houk-test/providers/Microsoft.KeyVault/vaults/houk-kv2","name":"houk-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.KeyVault/vaults/cli-sni-kv","name":"cli-sni-kv","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ljin-test/providers/Microsoft.KeyVault/vaults/kv-ljin-sni","name":"kv-ljin-sni","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.KeyVault/vaults/ase-testdevice-020dc7b13","name":"ase-testdevice-020dc7b13","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{"dbe-resource":"testdevice"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.KeyVault/vaults/ase-ysgatewayd-e2960da93","name":"ase-ysgatewayd-e2960da93","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{"dbe-resource":"ysgatewaydevice"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.KeyVault/vaults/ysvault","name":"ysvault","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}}]}' headers: cache-control: - no-cache content-length: - - '2578' + - '3986' content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:22:47 GMT + - Wed, 14 Apr 2021 09:42:34 GMT expires: - '-1' pragma: @@ -4408,7 +4000,7 @@ interactions: ParameterSetName: - -n --object-id --key-permissions User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003?api-version=2019-09-01 response: @@ -4422,7 +4014,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:22:49 GMT + - Wed, 14 Apr 2021 09:42:36 GMT expires: - '-1' pragma: @@ -4440,7 +4032,7 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.286.0 + - 1.1.292.0 x-powered-by: - ASP.NET status: @@ -4456,8 +4048,8 @@ interactions: "import", "update", "managecontacts", "getissuers", "listissuers", "setissuers", "deleteissuers", "manageissuers", "recover"], "storage": ["get", "list", "delete", "set", "update", "regeneratekey", "setsas", "listsas", "getsas", "deletesas"]}}, - {"tenantId": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", "objectId": "7ad30645-6306-4bf9-9d64-85508ca79c9b", - "permissions": {"keys": ["wrapKey", "unwrapKey", "get"]}}], "vaultUri": "https://vault-000003.vault.azure.net/", + {"tenantId": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", "objectId": "1d8fb725-3405-4a8a-92de-9336c73524fa", + "permissions": {"keys": ["wrapKey", "get", "unwrapKey"]}}], "vaultUri": "https://vault-000003.vault.azure.net/", "enabledForDeployment": false, "enableSoftDelete": true, "softDeleteRetentionInDays": 90, "enablePurgeProtection": true}}' headers: @@ -4476,12 +4068,12 @@ interactions: ParameterSetName: - -n --object-id --key-permissions User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003?api-version=2019-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003","name":"vault-000003","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"181c08fa-7ac8-48a6-a869-342ab74566a4","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}},{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"7ad30645-6306-4bf9-9d64-85508ca79c9b","permissions":{"keys":["wrapKey","unwrapKey","get"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://vault-000003.vault.azure.net/","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003","name":"vault-000003","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"181c08fa-7ac8-48a6-a869-342ab74566a4","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}},{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"1d8fb725-3405-4a8a-92de-9336c73524fa","permissions":{"keys":["wrapKey","get","unwrapKey"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://vault-000003.vault.azure.net/","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -4490,7 +4082,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:22:50 GMT + - Wed, 14 Apr 2021 09:42:37 GMT expires: - '-1' pragma: @@ -4508,7 +4100,7 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.286.0 + - 1.1.292.0 x-ms-ratelimit-remaining-subscription-writes: - '1198' x-powered-by: @@ -4531,7 +4123,7 @@ interactions: - --assignee --role --scope User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET @@ -4548,7 +4140,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:23:06 GMT + - Wed, 14 Apr 2021 09:42:53 GMT expires: - '-1' pragma: @@ -4581,11 +4173,11 @@ interactions: - --assignee --role --scope User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%277ad30645-6306-4bf9-9d64-85508ca79c9b%27%29&api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%271d8fb725-3405-4a8a-92de-9336c73524fa%27%29&api-version=1.6 response: body: string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[]}' @@ -4601,19 +4193,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 09 Apr 2021 04:23:06 GMT + - Wed, 14 Apr 2021 09:42:54 GMT duration: - - '2314671' + - '3562551' expires: - '-1' ocp-aad-diagnostics-server-name: - - FJzgbVq1lp5pqHkyPOKePObo1/uZdNLmTZ5DIf1YeLA= + - senIUAIzmIpAAHXt/NjwiUH8YenTZdR21Uaj8u7XsWM= ocp-aad-session-key: - - QLJUpEM3FKkckUJkQCQTjghxYiTWEkXbTIpP_-CFia6D6YQtX-4jAlIV11pjtqd0XLAgl1NEJ6in-lcIJeGSjnbYMl7Ucnv6NE1po4LxSpD91Na-SYT8_1dCdN7ZDUMq.obfHRvBeHws_UCr29ouJ3IbmzjCCtwNQQKuCOZ4qX68 + - lvrtr0AKjNp9IOujtazb6K-FH5fQIe9V35VUGZHOfBM_mSEFrEOU5ANJJrcTZm4ZD4EJpHZdFR7SK3knxt5OOoOFJki1ankwdZixsn5OS8QWj5hwO26qAp_iqRNGh4Zy.EgjDHfZ9lfa0rVV7vvMuuh29hInYQEBKs1yg1myAQVo pragma: - no-cache request-id: - - 2727be58-c4c0-4039-b5a4-9ac6555113a3 + - f54e8a27-cf3a-4cd0-a325-cb8df1687e60 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -4628,7 +4220,7 @@ interactions: code: 200 message: OK - request: - body: '{"objectIds": ["7ad30645-6306-4bf9-9d64-85508ca79c9b"], "includeDirectoryObjectReferences": + body: '{"objectIds": ["1d8fb725-3405-4a8a-92de-9336c73524fa"], "includeDirectoryObjectReferences": true}' headers: Accept: @@ -4647,14 +4239,14 @@ interactions: - --assignee --role --scope User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: POST uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/getObjectsByObjectIds?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"7ad30645-6306-4bf9-9d64-85508ca79c9b","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005"],"appDisplayName":null,"appId":"36e578b5-9efe-44e9-b403-5d857ee28cfe","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"des1-000005","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"DD57F37986F619B27252D3FF125C85E902C6479D","endDate":"2021-07-08T04:17:00Z","keyId":"2867abeb-9640-49a0-a00c-f68891c7808f","startDate":"2021-04-09T04:17:00Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["36e578b5-9efe-44e9-b403-5d857ee28cfe","https://identity.azure.net/hh4DTJlF1ixYO/MLKskF8xi0byRkm9PJL22RztSFDLQ="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null}]}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"1d8fb725-3405-4a8a-92de-9336c73524fa","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005"],"appDisplayName":null,"appId":"432e6688-28b8-4c3e-874f-5c30b79baa64","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"des1-000005","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"EBF82DD6BD083C732FF7F4986A00EE1942C02A09","endDate":"2021-07-13T09:36:00Z","keyId":"b9f148ad-d947-42ca-9cba-2b32b11cd5bc","startDate":"2021-04-14T09:36:00Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["432e6688-28b8-4c3e-874f-5c30b79baa64","https://identity.azure.net/3KOg/oqEthAiZVUqALL3kZzHSjHNS/P1dYh0W1loc1I="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' @@ -4667,19 +4259,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 09 Apr 2021 04:23:08 GMT + - Wed, 14 Apr 2021 09:42:55 GMT duration: - - '4472399' + - '3668425' expires: - '-1' ocp-aad-diagnostics-server-name: - - WgfjI/glOSzLpXiEbpyROH7VqmPfuY/iqs7yZLx5HGM= + - bwiMwB116ZrEIuwEbfQgIegc1Rx2/DCI0B8wZCFUMrQ= ocp-aad-session-key: - - 2W6UrTlqQ_ysfotZ4EDV3_I-OlzlBPE7wzKq4A3912uN0w9xOkLBaEkGZN7eAawFOSV-ykER-4O6mLM7Whm_ofwFzWy99ZltdYdgSKUp5Q-cF63RImrGPxy_viLyKqll.KTLg2DVi7JVrkIXNs7yJ_V8nnRoErcxIR6ALzN8rZ_Q + - IjJYZ9M8AgsYPFPkHiBQbqKe7NPjHxrA-Cu7mgDVQCuN9TMAW3zhjuHGXTajq1HsRegK01GaR-mPHU9b_ODDUCERU05gXpXZL0JJYMxXGBrkqWPGo_aqrw_acsiPL5Dx.0OnOPEBbWA3b7AHL1cMrYvSDZh_LU9kJNjtnOWQpjVc pragma: - no-cache request-id: - - bacf117c-4599-4aa2-98c1-647c748c3c3d + - 3b934ca2-349b-4889-a6d3-1a36c5b7e0e0 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -4695,7 +4287,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7", - "principalId": "7ad30645-6306-4bf9-9d64-85508ca79c9b"}}' + "principalId": "1d8fb725-3405-4a8a-92de-9336c73524fa"}}' headers: Accept: - application/json @@ -4715,14 +4307,14 @@ interactions: - --assignee --role --scope User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"7ad30645-6306-4bf9-9d64-85508ca79c9b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003","condition":null,"conditionVersion":null,"createdOn":"2021-04-09T04:23:08.6010246Z","updatedOn":"2021-04-09T04:23:09.3191848Z","createdBy":null,"updatedBy":"181c08fa-7ac8-48a6-a869-342ab74566a4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"1d8fb725-3405-4a8a-92de-9336c73524fa","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003","condition":null,"conditionVersion":null,"createdOn":"2021-04-14T09:42:55.9198198Z","updatedOn":"2021-04-14T09:42:57.6936327Z","createdBy":null,"updatedBy":"181c08fa-7ac8-48a6-a869-342ab74566a4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' headers: cache-control: - no-cache @@ -4731,7 +4323,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:23:13 GMT + - Wed, 14 Apr 2021 09:43:02 GMT expires: - '-1' pragma: @@ -4763,14 +4355,14 @@ interactions: --target-region-encryption --managed-image --replica-count User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -4779,7 +4371,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:23:29 GMT + - Wed, 14 Apr 2021 09:43:17 GMT expires: - '-1' pragma: @@ -4816,7 +4408,7 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3?api-version=2020-09-30 response: @@ -4832,13 +4424,13 @@ interactions: \ \"lun\": 0,\r\n \"diskEncryptionSetId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\"\r\n \ }\r\n ]\r\n }\r\n }\r\n ],\r\n \ \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": - \"2021-04-09T04:23:34.5594995+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n + \"2021-04-14T09:43:23.9271399+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n \ },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n \ }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e5bb887c-4f93-4f73-8669-96c2d3948c6b?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/44fb81d0-2c51-4f24-bc02-77c9f77e33dd?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -4846,7 +4438,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:23:35 GMT + - Wed, 14 Apr 2021 09:43:24 GMT expires: - '-1' pragma: @@ -4880,13 +4472,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e5bb887c-4f93-4f73-8669-96c2d3948c6b?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/44fb81d0-2c51-4f24-bc02-77c9f77e33dd?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T04:23:34.5438627+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"e5bb887c-4f93-4f73-8669-96c2d3948c6b\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:43:23.9115137+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"44fb81d0-2c51-4f24-bc02-77c9f77e33dd\"\r\n}" headers: cache-control: - no-cache @@ -4895,7 +4487,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:24:37 GMT + - Wed, 14 Apr 2021 09:44:26 GMT expires: - '-1' pragma: @@ -4912,7 +4504,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4097 + - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4138 status: code: 200 message: OK @@ -4931,13 +4523,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e5bb887c-4f93-4f73-8669-96c2d3948c6b?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/44fb81d0-2c51-4f24-bc02-77c9f77e33dd?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T04:23:34.5438627+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"e5bb887c-4f93-4f73-8669-96c2d3948c6b\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:43:23.9115137+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"44fb81d0-2c51-4f24-bc02-77c9f77e33dd\"\r\n}" headers: cache-control: - no-cache @@ -4946,7 +4538,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:25:37 GMT + - Wed, 14 Apr 2021 09:45:27 GMT expires: - '-1' pragma: @@ -4963,7 +4555,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4109 + - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4140 status: code: 200 message: OK @@ -4982,13 +4574,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e5bb887c-4f93-4f73-8669-96c2d3948c6b?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/44fb81d0-2c51-4f24-bc02-77c9f77e33dd?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T04:23:34.5438627+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"e5bb887c-4f93-4f73-8669-96c2d3948c6b\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:43:23.9115137+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"44fb81d0-2c51-4f24-bc02-77c9f77e33dd\"\r\n}" headers: cache-control: - no-cache @@ -4997,7 +4589,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:26:38 GMT + - Wed, 14 Apr 2021 09:46:28 GMT expires: - '-1' pragma: @@ -5014,7 +4606,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4104 + - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4138 status: code: 200 message: OK @@ -5033,13 +4625,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e5bb887c-4f93-4f73-8669-96c2d3948c6b?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/44fb81d0-2c51-4f24-bc02-77c9f77e33dd?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T04:23:34.5438627+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"e5bb887c-4f93-4f73-8669-96c2d3948c6b\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:43:23.9115137+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"44fb81d0-2c51-4f24-bc02-77c9f77e33dd\"\r\n}" headers: cache-control: - no-cache @@ -5048,7 +4640,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:27:39 GMT + - Wed, 14 Apr 2021 09:47:29 GMT expires: - '-1' pragma: @@ -5065,7 +4657,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4102 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4137 status: code: 200 message: OK @@ -5084,13 +4676,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e5bb887c-4f93-4f73-8669-96c2d3948c6b?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/44fb81d0-2c51-4f24-bc02-77c9f77e33dd?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T04:23:34.5438627+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"e5bb887c-4f93-4f73-8669-96c2d3948c6b\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:43:23.9115137+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"44fb81d0-2c51-4f24-bc02-77c9f77e33dd\"\r\n}" headers: cache-control: - no-cache @@ -5099,7 +4691,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:28:39 GMT + - Wed, 14 Apr 2021 09:48:30 GMT expires: - '-1' pragma: @@ -5116,7 +4708,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4100 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4135 status: code: 200 message: OK @@ -5135,13 +4727,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e5bb887c-4f93-4f73-8669-96c2d3948c6b?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/44fb81d0-2c51-4f24-bc02-77c9f77e33dd?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T04:23:34.5438627+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"e5bb887c-4f93-4f73-8669-96c2d3948c6b\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:43:23.9115137+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"44fb81d0-2c51-4f24-bc02-77c9f77e33dd\"\r\n}" headers: cache-control: - no-cache @@ -5150,7 +4742,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:29:40 GMT + - Wed, 14 Apr 2021 09:49:30 GMT expires: - '-1' pragma: @@ -5167,7 +4759,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4098 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4133 status: code: 200 message: OK @@ -5186,13 +4778,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e5bb887c-4f93-4f73-8669-96c2d3948c6b?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/44fb81d0-2c51-4f24-bc02-77c9f77e33dd?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T04:23:34.5438627+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"e5bb887c-4f93-4f73-8669-96c2d3948c6b\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:43:23.9115137+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"44fb81d0-2c51-4f24-bc02-77c9f77e33dd\"\r\n}" headers: cache-control: - no-cache @@ -5201,7 +4793,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:30:40 GMT + - Wed, 14 Apr 2021 09:50:31 GMT expires: - '-1' pragma: @@ -5218,7 +4810,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4116 + - Microsoft.Compute/GetOperationStatus3Min;1199,Microsoft.Compute/GetOperationStatus30Min;4199 status: code: 200 message: OK @@ -5237,13 +4829,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e5bb887c-4f93-4f73-8669-96c2d3948c6b?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/44fb81d0-2c51-4f24-bc02-77c9f77e33dd?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T04:23:34.5438627+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"e5bb887c-4f93-4f73-8669-96c2d3948c6b\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:43:23.9115137+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"44fb81d0-2c51-4f24-bc02-77c9f77e33dd\"\r\n}" headers: cache-control: - no-cache @@ -5252,7 +4844,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:31:41 GMT + - Wed, 14 Apr 2021 09:51:32 GMT expires: - '-1' pragma: @@ -5269,7 +4861,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4114 + - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4197 status: code: 200 message: OK @@ -5288,14 +4880,65 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e5bb887c-4f93-4f73-8669-96c2d3948c6b?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/44fb81d0-2c51-4f24-bc02-77c9f77e33dd?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T04:23:34.5438627+00:00\",\r\n \"endTime\": - \"2021-04-09T04:31:53.3394369+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"e5bb887c-4f93-4f73-8669-96c2d3948c6b\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:43:23.9115137+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"44fb81d0-2c51-4f24-bc02-77c9f77e33dd\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 14 Apr 2021 09:52:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4195 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions + --target-region-encryption --managed-image --replica-count + User-Agent: + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/44fb81d0-2c51-4f24-bc02-77c9f77e33dd?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-04-14T09:43:23.9115137+00:00\",\r\n \"endTime\": + \"2021-04-14T09:53:24.5174416+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"44fb81d0-2c51-4f24-bc02-77c9f77e33dd\"\r\n}" headers: cache-control: - no-cache @@ -5304,7 +4947,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:32:42 GMT + - Wed, 14 Apr 2021 09:53:34 GMT expires: - '-1' pragma: @@ -5321,7 +4964,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4112 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4193 status: code: 200 message: OK @@ -5340,7 +4983,7 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3?api-version=2020-09-30 response: @@ -5356,7 +4999,7 @@ interactions: \ \"lun\": 0,\r\n \"diskEncryptionSetId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\"\r\n \ }\r\n ]\r\n }\r\n }\r\n ],\r\n \ \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": - \"2021-04-09T04:23:34.5594995+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n + \"2021-04-14T09:43:23.9271399+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n \ },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n \ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": @@ -5372,7 +5015,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:32:42 GMT + - Wed, 14 Apr 2021 09:53:34 GMT expires: - '-1' pragma: @@ -5389,7 +5032,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1989,Microsoft.Compute/GetGalleryImageVersion30Min;9963 + - Microsoft.Compute/GetGalleryImageVersion3Min;1996,Microsoft.Compute/GetGalleryImageVersion30Min;9996 status: code: 200 message: OK @@ -5408,14 +5051,14 @@ interactions: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -5424,7 +5067,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:32:44 GMT + - Wed, 14 Apr 2021 09:53:34 GMT expires: - '-1' pragma: @@ -5452,7 +5095,7 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -5472,7 +5115,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:32:43 GMT + - Wed, 14 Apr 2021 09:53:36 GMT expires: - '-1' pragma: @@ -5489,7 +5132,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;599,Microsoft.Compute/GetGalleryImage30Min;2995 + - Microsoft.Compute/GetGalleryImage3Min;599,Microsoft.Compute/GetGalleryImage30Min;2999 status: code: 200 message: OK @@ -5507,24 +5150,24 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions?api-version=2020-09-30 response: body: string: '{"value":[{"name":"1.1.2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2","type":"Microsoft.Compute/galleries/images/versions","location":"eastus2","tags":{},"properties":{"publishingProfile":{"targetRegions":[{"name":"West US 2","regionalReplicaCount":1,"storageAccountType":"Standard_LRS"},{"name":"East - US 2","regionalReplicaCount":2,"storageAccountType":"Standard_LRS"}],"replicaCount":2,"excludeFromLatest":false,"publishedDate":"2021-04-09T03:56:55.964542+00:00","storageAccountType":"Standard_LRS"},"storageProfile":{"source":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1"},"osDiskImage":{"sizeInGB":30,"hostCaching":"ReadWrite","source":{}},"dataDiskImages":[{"lun":0,"sizeInGB":10,"hostCaching":"None"}]},"provisioningState":"Succeeded"}},{"name":"1.1.3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3","type":"Microsoft.Compute/galleries/images/versions","location":"eastus2","tags":{},"properties":{"publishingProfile":{"targetRegions":[{"name":"East - US 2","regionalReplicaCount":1,"storageAccountType":"Standard_LRS","encryption":{"osDiskImage":{"diskEncryptionSetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005"},"dataDiskImages":[{"lun":0,"diskEncryptionSetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005"}]}}],"replicaCount":1,"excludeFromLatest":false,"publishedDate":"2021-04-09T04:23:34.5594995+00:00","storageAccountType":"Standard_LRS"},"storageProfile":{"source":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1"},"osDiskImage":{"sizeInGB":30,"hostCaching":"ReadWrite","source":{}},"dataDiskImages":[{"lun":0,"sizeInGB":10,"hostCaching":"None"}]},"provisioningState":"Succeeded"}}]}' + US 2","regionalReplicaCount":2,"storageAccountType":"Standard_LRS"}],"replicaCount":2,"excludeFromLatest":false,"publishedDate":"2021-04-14T09:24:47.9357926+00:00","storageAccountType":"Standard_LRS"},"storageProfile":{"source":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1"},"osDiskImage":{"sizeInGB":30,"hostCaching":"ReadWrite","source":{}},"dataDiskImages":[{"lun":0,"sizeInGB":10,"hostCaching":"None"}]},"provisioningState":"Succeeded"}},{"name":"1.1.3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3","type":"Microsoft.Compute/galleries/images/versions","location":"eastus2","tags":{},"properties":{"publishingProfile":{"targetRegions":[{"name":"East + US 2","regionalReplicaCount":1,"storageAccountType":"Standard_LRS","encryption":{"osDiskImage":{"diskEncryptionSetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005"},"dataDiskImages":[{"lun":0,"diskEncryptionSetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005"}]}}],"replicaCount":1,"excludeFromLatest":false,"publishedDate":"2021-04-14T09:43:23.9271399+00:00","storageAccountType":"Standard_LRS"},"storageProfile":{"source":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1"},"osDiskImage":{"sizeInGB":30,"hostCaching":"ReadWrite","source":{}},"dataDiskImages":[{"lun":0,"sizeInGB":10,"hostCaching":"None"}]},"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '2622' + - '2623' content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:32:44 GMT + - Wed, 14 Apr 2021 09:53:37 GMT expires: - '-1' pragma: @@ -5536,42 +5179,42 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - a7cc27c7-f35e-42af-8eef-83cf87d82794 - - 5c3fc891-c325-474d-8661-c5dc257774b1 - - 81daafcd-b3e4-476a-83e1-4bd4393d64a8 - - e1a4b385-80d9-4029-bfa8-bdbd3657ff1e - - 12d653d2-9153-405e-94f1-480687e76f88 - - 0a98945e-ee4e-43a5-ad2a-70255ef64afc - - 5fdc26a8-ba29-4c1d-bfaa-0a5ff98739cf - - 39d6def4-3efa-45a2-9e79-1b84406fb383 - - 01adcf40-7c84-46d4-a1b9-bd4da8a2dfa1 - - 348bda0e-0d55-4460-a0e3-e0e60ceb2a10 - - 9f735d0b-b98a-4dac-a577-a11f2104e091 - - 4776ea6a-f1c0-4ea8-87bf-9d2656ee0b24 - - 1f1e979a-c2ac-4cd0-a218-c47c3a6a527c - - c9297af7-4fac-4d31-9d2f-6507c20dda11 - - a2454f85-ee20-46c1-9f4e-88eada04b04e - - d720fd59-e10d-40db-bdcb-6090ba36a9a0 - - 74306a88-10ba-40f2-b6e1-7f9a70723c4e - - ea7d8875-2e76-407e-9c54-e8fc1acfaf5a - - f14d2ed3-2b70-4129-9758-5b478fc4f99a - - 36b9f110-20de-43d5-8f36-d7a78ff52f8d - - 5dc17859-291d-4d67-a05a-b95278772fe5 - - fa0b29e2-098a-4130-86cb-c4c5bf39988e - - 15b029cc-0d72-4478-b96f-aa51d8b49d06 - - c77267f4-13f8-4102-96c3-77e9544f3513 - - 25c046ba-6413-49b0-9191-384c6b718e65 - - c572d6eb-f9f8-4698-ac27-b6a91f49018c - - aefb2752-3c5d-4801-ad50-2f1670ba643b - - f85b55df-1ae5-4282-90d5-82c46682a836 - - 591a2dfd-fe5a-4bdf-a02c-6ee94cd287cc - - 8f7c945b-acbe-4aa5-a689-d7b9e5aaebbf - - 6d2bd1b3-2183-4772-9aa5-4d8c63d76276 - - 645e7345-a84e-4609-bd9f-beb0607e4e4e - - 2d13cd15-df12-445b-8c95-6e936e28f9fb - - f2bb01fb-869f-48fb-9dc7-11f8077b3ed9 - - fa0980b5-352e-455d-a9c1-16a77aeaaa3e - - cc240417-3ebd-416c-943b-dda10b52cb36 + - 32f502ea-3b4e-45d9-b566-da82ce17ac82 + - 1415cf53-45ba-4055-9f68-36b9c7a95529 + - 5d7fda2b-1c0f-4670-bccb-5c68964d1e82 + - 4d9d1a39-9930-401e-aa94-93042ff51566 + - e6c6e27c-5f5c-4e84-ad62-05d3660a5766 + - 4d946d61-9b9e-4c3f-ac70-494b7a9235c2 + - 48544d36-8dcb-414c-9ec0-a053dee5611d + - b60c2c19-e51e-4b58-b07b-5bda59e62ce3 + - f3de4243-f5d1-43d0-938e-7826fd438b07 + - 7d5a727a-52ae-4c2a-8559-eae8387f294f + - ebd5cee4-cfbd-447f-bb51-79991bffdc79 + - 99abb0d6-6767-4f79-8310-4b0019a7049a + - 79c13a4e-c854-4aca-b26b-1e71ee0d3517 + - 534fb42a-e9bf-4dfd-b572-a9fb57f6b323 + - 583d2ab1-ba49-4725-a30a-adc52dcb7214 + - 068e1d88-c197-4c14-98a2-ae9d081223cd + - 77004088-186a-49a1-ab6b-b9e5cb5b8a8a + - b534f879-38a2-43c0-8691-f0b5e60c3713 + - d0e8f8b4-b54e-4846-b9d2-5d6f56bb19fa + - e1d8d70d-52cf-4b4f-b533-2ca69d875cb9 + - 372f2be9-cd3e-4fcc-b5d2-3ed8d7bc231f + - fcf253f3-0432-4da4-85f7-a7b0284e46c7 + - cde09a2b-aeee-4ad0-ad12-816f62c34f90 + - 50b65f22-81fe-471c-887a-f35c7a1e8517 + - a9650c52-113f-4c3d-963b-a21eeca8bed0 + - 3c564a42-6157-4ed8-b89b-ef47ab24db13 + - 9d65e386-0d6c-4f4b-8b23-dbda898687e5 + - 81b842e2-42e3-44a0-95d1-4fbd963b2e5c + - a55bd92c-f216-438b-83e6-ef18ce88b061 + - aac8afcf-5e00-41ae-b8a0-5a71a093dd8f + - ea5c222b-6d62-41c9-9894-83b3300af8d4 + - 559143a7-4e52-4792-b3ec-6992714bf034 + - d8394bc9-63bb-4bef-a345-63a173f41e4e + - bd186ba2-cc18-4443-92e4-1884c99ba0c2 + - f1666ddd-7b45-4412-bf60-0e506bd97360 + - cf864102-9015-4bc3-971f-3601d00ec66d status: code: 200 message: OK @@ -5589,21 +5232,21 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vm1VNET\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\r\n - \ \"etag\": \"W/\\\"07fa92bf-024a-40ba-a48f-fed87e30d7eb\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"a20d6c74-5763-4633-b8b5-8e9a0bdc5d03\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"b2521440-7019-47f5-8a3e-f051916d48c9\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"8d47a616-873d-4931-baef-9d722cf472a2\",\r\n \ \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n \ ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"vm1Subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\r\n - \ \"etag\": \"W/\\\"07fa92bf-024a-40ba-a48f-fed87e30d7eb\\\"\",\r\n + \ \"etag\": \"W/\\\"a20d6c74-5763-4633-b8b5-8e9a0bdc5d03\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n @@ -5619,7 +5262,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:32:45 GMT + - Wed, 14 Apr 2021 09:53:38 GMT expires: - '-1' pragma: @@ -5636,7 +5279,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3dbfc2b8-d6d4-41bd-a391-d6cee241a875 + - 8f762ab0-6061-4ef5-b5b9-fdba3273dce8 status: code: 200 message: OK @@ -5685,25 +5328,25 @@ interactions: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_PoL0elAut6jRxLjUanlRbULVAEycBBsK","name":"vm_deploy_PoL0elAut6jRxLjUanlRbULVAEycBBsK","type":"Microsoft.Resources/deployments","properties":{"templateHash":"2325148164401617493","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-09T04:32:53.8309236Z","duration":"PT2.7871929S","correlationId":"da41da39-8a5e-4480-b368-5a48b5357068","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmFromImageNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmFromImagePublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vmFromImage"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_IYJFao13QRM7qJY4vxvgYZjkPDReQoxP","name":"vm_deploy_IYJFao13QRM7qJY4vxvgYZjkPDReQoxP","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15019600982873647752","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-14T09:53:43.6527588Z","duration":"PT2.7346265S","correlationId":"3f53256c-8971-4059-9f29-02d0675acb72","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmFromImageNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmFromImagePublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vmFromImage"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_PoL0elAut6jRxLjUanlRbULVAEycBBsK/operationStatuses/08585836641144338990?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_IYJFao13QRM7qJY4vxvgYZjkPDReQoxP/operationStatuses/08585832128645594991?api-version=2020-10-01 cache-control: - no-cache content-length: - - '2488' + - '2489' content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:32:55 GMT + - Wed, 14 Apr 2021 09:53:44 GMT expires: - '-1' pragma: @@ -5713,7 +5356,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 201 message: Created @@ -5732,52 +5375,9 @@ interactions: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836641144338990?api-version=2020-10-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 09 Apr 2021 04:33:26 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --admin-username --generate-ssh-keys --nsg-rule - User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836641144338990?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585832128645594991?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -5789,7 +5389,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:33:56 GMT + - Wed, 14 Apr 2021 09:54:15 GMT expires: - '-1' pragma: @@ -5818,9 +5418,9 @@ interactions: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836641144338990?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585832128645594991?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -5832,7 +5432,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:34:27 GMT + - Wed, 14 Apr 2021 09:54:46 GMT expires: - '-1' pragma: @@ -5861,21 +5461,21 @@ interactions: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_PoL0elAut6jRxLjUanlRbULVAEycBBsK","name":"vm_deploy_PoL0elAut6jRxLjUanlRbULVAEycBBsK","type":"Microsoft.Resources/deployments","properties":{"templateHash":"2325148164401617493","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-09T04:34:04.9959032Z","duration":"PT1M13.9521725S","correlationId":"da41da39-8a5e-4480-b368-5a48b5357068","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmFromImageNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmFromImagePublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vmFromImage"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_IYJFao13QRM7qJY4vxvgYZjkPDReQoxP","name":"vm_deploy_IYJFao13QRM7qJY4vxvgYZjkPDReQoxP","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15019600982873647752","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-14T09:54:45.2990873Z","duration":"PT1M4.380955S","correlationId":"3f53256c-8971-4059-9f29-02d0675acb72","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmFromImageNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmFromImagePublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vmFromImage"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"}]}}' headers: cache-control: - no-cache content-length: - - '3383' + - '3382' content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:34:28 GMT + - Wed, 14 Apr 2021 09:54:47 GMT expires: - '-1' pragma: @@ -5903,31 +5503,31 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage?$expand=instanceView&api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"vmFromImage\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"533b6c19-767f-4043-929d-db308daefbbf\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"30accb0b-e180-4d06-b1f8-68c92b6dde4d\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1\",\r\n \ \"exactVersion\": \"1.1.3\"\r\n },\r\n \"osDisk\": {\r\n - \ \"osType\": \"Linux\",\r\n \"name\": \"vmFromImage_OsDisk_1_204bbf72edcb4f029e24c22c06b01141\",\r\n + \ \"osType\": \"Linux\",\r\n \"name\": \"vmFromImage_OsDisk_1_b8910c292e7b447eb8f379406f7f6ce3\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"diskEncryptionSet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\"\r\n \ },\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_204bbf72edcb4f029e24c22c06b01141\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_b8910c292e7b447eb8f379406f7f6ce3\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": - [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vmFromImage_lun_0_2_84f6587928b84cbf9484e2eb5f2a5612\",\r\n + [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vmFromImage_lun_0_2_438b413a0573424ca2e2d02b168761a4\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \ \"managedDisk\": {\r\n \"diskEncryptionSet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\"\r\n \ },\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vmFromImage_lun_0_2_84f6587928b84cbf9484e2eb5f2a5612\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vmFromImage_lun_0_2_438b413a0573424ca2e2d02b168761a4\"\r\n \ },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmFromImage\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": @@ -5946,20 +5546,20 @@ interactions: \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \ \"message\": \"Guest Agent is running\",\r\n \"time\": - \"2021-04-09T04:34:23+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vmFromImage_OsDisk_1_204bbf72edcb4f029e24c22c06b01141\",\r\n + \"2021-04-14T09:54:48+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vmFromImage_OsDisk_1_b8910c292e7b447eb8f379406f7f6ce3\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-09T04:33:20.9986301+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-14T09:54:12.5010074+00:00\"\r\n \ }\r\n ]\r\n },\r\n {\r\n \"name\": - \"vmFromImage_lun_0_2_84f6587928b84cbf9484e2eb5f2a5612\",\r\n \"statuses\": + \"vmFromImage_lun_0_2_438b413a0573424ca2e2d02b168761a4\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-09T04:33:20.9986301+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-14T09:54:12.5010074+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-09T04:34:02.3582649+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-14T09:54:42.1425254+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n \ }\r\n ]\r\n }\r\n }\r\n}" @@ -5971,7 +5571,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:34:29 GMT + - Wed, 14 Apr 2021 09:54:48 GMT expires: - '-1' pragma: @@ -5988,7 +5588,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31979 + - Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31982 status: code: 200 message: OK @@ -6006,18 +5606,18 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"vmFromImageVMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic\",\r\n - \ \"etag\": \"W/\\\"4645aec4-b56b-47c2-96be-ae3c51b2330c\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"f8056229-150a-4f4e-9222-df37cb00b4cd\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"ba27bfa5-2221-4e27-ab57-602b9577f8ba\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"7cf0d1da-9a1d-476b-ae71-18442bdb1ec0\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvmFromImage\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/ipConfigurations/ipconfigvmFromImage\",\r\n - \ \"etag\": \"W/\\\"4645aec4-b56b-47c2-96be-ae3c51b2330c\\\"\",\r\n + \ \"etag\": \"W/\\\"f8056229-150a-4f4e-9222-df37cb00b4cd\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": @@ -6026,8 +5626,8 @@ interactions: \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": - \"iakffmqzod0upcr44bizc1kizb.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-0F-D0-59\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"c0tepdj3q2yutoxptvzcz3dsuc.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-00-4B-80\",\r\n \"enableAcceleratedNetworking\": false,\r\n \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -6041,9 +5641,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:34:29 GMT + - Wed, 14 Apr 2021 09:54:48 GMT etag: - - W/"4645aec4-b56b-47c2-96be-ae3c51b2330c" + - W/"f8056229-150a-4f4e-9222-df37cb00b4cd" expires: - '-1' pragma: @@ -6060,7 +5660,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 11ea2d23-badc-499e-b394-7e7b9756a351 + - 343e9b4b-9d5b-4a37-8ffe-8f35b9933269 status: code: 200 message: OK @@ -6078,17 +5678,17 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"vmFromImagePublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\",\r\n - \ \"etag\": \"W/\\\"5ea6b8f6-64f4-4202-b5da-8ef279947dc0\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"40e9de5d-0e1c-40fe-9b21-6bc4a8b99582\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"8f682978-ce4f-45ea-89ca-0f4b82ebdd94\",\r\n - \ \"ipAddress\": \"52.167.6.98\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n - \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + \"Succeeded\",\r\n \"resourceGuid\": \"172dc1cc-63d3-4588-b629-389697d7432c\",\r\n + \ \"ipAddress\": \"52.247.126.161\",\r\n \"publicIPAddressVersion\": + \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/ipConfigurations/ipconfigvmFromImage\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" @@ -6096,13 +5696,13 @@ interactions: cache-control: - no-cache content-length: - - '1028' + - '1031' content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:34:30 GMT + - Wed, 14 Apr 2021 09:54:48 GMT etag: - - W/"5ea6b8f6-64f4-4202-b5da-8ef279947dc0" + - W/"40e9de5d-0e1c-40fe-9b21-6bc4a8b99582" expires: - '-1' pragma: @@ -6119,7 +5719,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5eb950d6-8bfe-46ce-b484-58f19622b706 + - e4f66d6d-6abf-4102-88c5-3754021d923c status: code: 200 message: OK @@ -6139,7 +5739,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2020-09-30 response: @@ -6147,17 +5747,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/fdad652f-d271-467e-a10e-75eec3fde629?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/d635873b-ba22-4011-9abf-89015d04f92b?api-version=2020-09-30 cache-control: - no-cache content-length: - '0' date: - - Fri, 09 Apr 2021 04:34:31 GMT + - Wed, 14 Apr 2021 09:54:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/fdad652f-d271-467e-a10e-75eec3fde629?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/d635873b-ba22-4011-9abf-89015d04f92b?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -6168,7 +5768,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteGalleryImageVersion3Min;149,Microsoft.Compute/DeleteGalleryImageVersion30Min;997 + - Microsoft.Compute/DeleteGalleryImageVersion3Min;149,Microsoft.Compute/DeleteGalleryImageVersion30Min;999 x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: @@ -6188,13 +5788,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/fdad652f-d271-467e-a10e-75eec3fde629?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/d635873b-ba22-4011-9abf-89015d04f92b?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T04:34:31.6320265+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"fdad652f-d271-467e-a10e-75eec3fde629\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:54:50.4327129+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d635873b-ba22-4011-9abf-89015d04f92b\"\r\n}" headers: cache-control: - no-cache @@ -6203,7 +5803,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:35:32 GMT + - Wed, 14 Apr 2021 09:55:50 GMT expires: - '-1' pragma: @@ -6220,7 +5820,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1199,Microsoft.Compute/GetOperationStatus30Min;4129 + - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4191 status: code: 200 message: OK @@ -6238,14 +5838,14 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/fdad652f-d271-467e-a10e-75eec3fde629?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/d635873b-ba22-4011-9abf-89015d04f92b?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T04:34:31.6320265+00:00\",\r\n \"endTime\": - \"2021-04-09T04:36:02.6824321+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"fdad652f-d271-467e-a10e-75eec3fde629\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:54:50.4327129+00:00\",\r\n \"endTime\": + \"2021-04-14T09:56:22.3464228+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"d635873b-ba22-4011-9abf-89015d04f92b\"\r\n}" headers: cache-control: - no-cache @@ -6254,7 +5854,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:36:33 GMT + - Wed, 14 Apr 2021 09:56:50 GMT expires: - '-1' pragma: @@ -6271,7 +5871,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4127 + - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4189 status: code: 200 message: OK @@ -6291,7 +5891,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3?api-version=2020-09-30 response: @@ -6299,17 +5899,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0b9d5287-23c3-4202-b449-f29c32dc2346?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/17a00e0e-801b-4b2e-9bc6-e46d1ed5ed84?api-version=2020-09-30 cache-control: - no-cache content-length: - '0' date: - - Fri, 09 Apr 2021 04:36:34 GMT + - Wed, 14 Apr 2021 09:56:53 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0b9d5287-23c3-4202-b449-f29c32dc2346?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/17a00e0e-801b-4b2e-9bc6-e46d1ed5ed84?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -6320,9 +5920,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteGalleryImageVersion3Min;148,Microsoft.Compute/DeleteGalleryImageVersion30Min;996 + - Microsoft.Compute/DeleteGalleryImageVersion3Min;148,Microsoft.Compute/DeleteGalleryImageVersion30Min;998 x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 202 message: Accepted @@ -6340,13 +5940,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0b9d5287-23c3-4202-b449-f29c32dc2346?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/17a00e0e-801b-4b2e-9bc6-e46d1ed5ed84?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T04:36:35.2774269+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"0b9d5287-23c3-4202-b449-f29c32dc2346\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:56:53.3789038+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"17a00e0e-801b-4b2e-9bc6-e46d1ed5ed84\"\r\n}" headers: cache-control: - no-cache @@ -6355,7 +5955,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:37:36 GMT + - Wed, 14 Apr 2021 09:57:53 GMT expires: - '-1' pragma: @@ -6372,7 +5972,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4125 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4187 status: code: 200 message: OK @@ -6390,23 +5990,23 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0b9d5287-23c3-4202-b449-f29c32dc2346?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/17a00e0e-801b-4b2e-9bc6-e46d1ed5ed84?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T04:36:35.2774269+00:00\",\r\n \"endTime\": - \"2021-04-09T04:38:05.5156709+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"0b9d5287-23c3-4202-b449-f29c32dc2346\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:56:53.3789038+00:00\",\r\n \"endTime\": + \"2021-04-14T09:58:26.036809+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"17a00e0e-801b-4b2e-9bc6-e46d1ed5ed84\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:38:36 GMT + - Wed, 14 Apr 2021 09:58:54 GMT expires: - '-1' pragma: @@ -6423,7 +6023,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4123 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4185 status: code: 200 message: OK @@ -6443,7 +6043,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -6451,17 +6051,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/4728773f-df5a-4ac8-90cd-2c44da185683?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/083dcd93-2771-44bc-bac7-79a462f05180?api-version=2020-09-30 cache-control: - no-cache content-length: - '0' date: - - Fri, 09 Apr 2021 04:39:38 GMT + - Wed, 14 Apr 2021 09:59:57 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/4728773f-df5a-4ac8-90cd-2c44da185683?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/083dcd93-2771-44bc-bac7-79a462f05180?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -6472,7 +6072,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteGalleryImage3Min;49,Microsoft.Compute/DeleteGalleryImage30Min;298 + - Microsoft.Compute/DeleteGalleryImage3Min;49,Microsoft.Compute/DeleteGalleryImage30Min;299 x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: @@ -6492,14 +6092,14 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/4728773f-df5a-4ac8-90cd-2c44da185683?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/083dcd93-2771-44bc-bac7-79a462f05180?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T04:39:38.3473887+00:00\",\r\n \"endTime\": - \"2021-04-09T04:39:38.5661522+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"4728773f-df5a-4ac8-90cd-2c44da185683\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:59:57.1360229+00:00\",\r\n \"endTime\": + \"2021-04-14T09:59:59.3392075+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"083dcd93-2771-44bc-bac7-79a462f05180\"\r\n}" headers: cache-control: - no-cache @@ -6508,7 +6108,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:40:08 GMT + - Wed, 14 Apr 2021 10:00:27 GMT expires: - '-1' pragma: @@ -6525,7 +6125,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4136 + - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4182 status: code: 200 message: OK @@ -6545,7 +6145,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01 response: @@ -6553,17 +6153,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/329a7af9-a16c-43ac-b9d6-678562384a45?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/129594fa-032d-4ec2-9704-d93c91c05902?api-version=2019-12-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 09 Apr 2021 04:40:10 GMT + - Wed, 14 Apr 2021 10:00:30 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/329a7af9-a16c-43ac-b9d6-678562384a45?monitor=true&api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/129594fa-032d-4ec2-9704-d93c91c05902?monitor=true&api-version=2019-12-01 pragma: - no-cache server: @@ -6574,7 +6174,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;298 + - Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;299 x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: @@ -6594,23 +6194,23 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/329a7af9-a16c-43ac-b9d6-678562384a45?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/129594fa-032d-4ec2-9704-d93c91c05902?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T04:40:10.661248+00:00\",\r\n \"endTime\": - \"2021-04-09T04:40:10.7706254+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"329a7af9-a16c-43ac-b9d6-678562384a45\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T10:00:29.7622682+00:00\",\r\n \"endTime\": + \"2021-04-14T10:00:31.0591963+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"129594fa-032d-4ec2-9704-d93c91c05902\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:40:40 GMT + - Wed, 14 Apr 2021 10:01:00 GMT expires: - '-1' pragma: @@ -6627,7 +6227,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4134 + - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4180 status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_specialized.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_specialized.yaml index 10446c9efe2..1fb2769fa8c 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_specialized.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_specialized.yaml @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-02-01T08:36:39Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:36:43 GMT + - Wed, 14 Apr 2021 09:18:58 GMT expires: - '-1' pragma: @@ -62,7 +62,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01 response: @@ -70,11 +70,11 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_LB4QO6AII4HA\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_OZFPNNWS3RGM\"\r\n },\r\n \ \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/719cae1e-47da-4203-9088-2f370ac072a4?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/3d127725-6899-4e84-b45c-2cc24ba4e8f1?api-version=2019-12-01 cache-control: - no-cache content-length: @@ -82,7 +82,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:36:53 GMT + - Wed, 14 Apr 2021 09:19:06 GMT expires: - '-1' pragma: @@ -95,9 +95,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299 + - Microsoft.Compute/CreateUpdateGallery3Min;48,Microsoft.Compute/CreateUpdateGallery30Min;298 x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1198' status: code: 201 message: Created @@ -115,14 +115,14 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/719cae1e-47da-4203-9088-2f370ac072a4?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/3d127725-6899-4e84-b45c-2cc24ba4e8f1?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-01T08:36:51.6462498+00:00\",\r\n \"endTime\": - \"2021-02-01T08:36:51.8806229+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"719cae1e-47da-4203-9088-2f370ac072a4\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:19:04.3852372+00:00\",\r\n \"endTime\": + \"2021-04-14T09:19:04.4789947+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"3d127725-6899-4e84-b45c-2cc24ba4e8f1\"\r\n}" headers: cache-control: - no-cache @@ -131,7 +131,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:37:23 GMT + - Wed, 14 Apr 2021 09:19:36 GMT expires: - '-1' pragma: @@ -148,7 +148,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4198 + - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4196 status: code: 200 message: OK @@ -166,7 +166,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01 response: @@ -174,7 +174,7 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_LB4QO6AII4HA\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_OZFPNNWS3RGM\"\r\n },\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -184,7 +184,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:37:23 GMT + - Wed, 14 Apr 2021 09:19:36 GMT expires: - '-1' pragma: @@ -201,7 +201,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2494 + - Microsoft.Compute/GetGallery3Min;342,Microsoft.Compute/GetGallery30Min;2492 status: code: 200 message: OK @@ -220,15 +220,15 @@ interactions: - -g --gallery-name --gallery-image-definition --os-type --os-state --hyper-v-generation -p -f -s User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-02-01T08:36:39Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -237,7 +237,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:37:24 GMT + - Wed, 14 Apr 2021 09:19:37 GMT expires: - '-1' pragma: @@ -272,7 +272,7 @@ interactions: - -g --gallery-name --gallery-image-definition --os-type --os-state --hyper-v-generation -p -f -s User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -286,7 +286,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/4707a2ae-cc7e-4513-9907-a38a8a7c4aab?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c060ef8a-587b-4473-b1fa-3e6012f9a436?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -294,7 +294,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:37:31 GMT + - Wed, 14 Apr 2021 09:19:46 GMT expires: - '-1' pragma: @@ -307,7 +307,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;749 + - Microsoft.Compute/CreateUpdateGalleryImage3Min;148,Microsoft.Compute/CreateUpdateGalleryImage30Min;748 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -328,23 +328,23 @@ interactions: - -g --gallery-name --gallery-image-definition --os-type --os-state --hyper-v-generation -p -f -s User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/4707a2ae-cc7e-4513-9907-a38a8a7c4aab?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c060ef8a-587b-4473-b1fa-3e6012f9a436?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-02-01T08:37:30.2558455+00:00\",\r\n \"endTime\": - \"2021-02-01T08:37:30.3495987+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"4707a2ae-cc7e-4513-9907-a38a8a7c4aab\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:19:45.0898667+00:00\",\r\n \"endTime\": + \"2021-04-14T09:19:45.183616+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"c060ef8a-587b-4473-b1fa-3e6012f9a436\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:38:02 GMT + - Wed, 14 Apr 2021 09:20:16 GMT expires: - '-1' pragma: @@ -361,7 +361,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4196 + - Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4193 status: code: 200 message: OK @@ -380,7 +380,7 @@ interactions: - -g --gallery-name --gallery-image-definition --os-type --os-state --hyper-v-generation -p -f -s User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -400,7 +400,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:38:03 GMT + - Wed, 14 Apr 2021 09:20:17 GMT expires: - '-1' pragma: @@ -417,7 +417,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;596,Microsoft.Compute/GetGalleryImage30Min;2994 + - Microsoft.Compute/GetGalleryImage3Min;593,Microsoft.Compute/GetGalleryImage30Min;2993 status: code: 200 message: OK @@ -435,15 +435,15 @@ interactions: ParameterSetName: - -g -n --size-gb User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-02-01T08:36:39Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -452,7 +452,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:38:03 GMT + - Wed, 14 Apr 2021 09:20:17 GMT expires: - '-1' pragma: @@ -485,9 +485,9 @@ interactions: ParameterSetName: - -g -n --size-gb User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"d1\",\r\n \"location\": \"eastus2\",\r\n \"tags\": @@ -497,7 +497,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/dea7b55f-74e6-4c32-842e-928f0233e9a8?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/0094d88f-084b-435b-be78-661d751f8f12?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -505,11 +505,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:38:09 GMT + - Wed, 14 Apr 2021 09:20:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/dea7b55f-74e6-4c32-842e-928f0233e9a8?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/0094d88f-084b-435b-be78-661d751f8f12?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -522,7 +522,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' status: code: 202 message: Accepted @@ -540,13 +540,13 @@ interactions: ParameterSetName: - -g -n --size-gb User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/dea7b55f-74e6-4c32-842e-928f0233e9a8?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/0094d88f-084b-435b-be78-661d751f8f12?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-01T08:38:09.5384262+00:00\",\r\n \"endTime\": - \"2021-02-01T08:38:09.7415753+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-14T09:20:22.7325396+00:00\",\r\n \"endTime\": + \"2021-04-14T09:20:22.8419314+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus2\",\r\n @@ -555,19 +555,19 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-02-01T08:38:09.554084+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-14T09:20:22.7325396+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"c36aabd8-f653-45e5-ba62-ec4077b13c49\",\r\n \"networkAccessPolicy\": - \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"dea7b55f-74e6-4c32-842e-928f0233e9a8\"\r\n}" + \ \"uniqueId\": \"9bf668f6-4220-447e-81ef-d7ebafac29da\",\r\n \"networkAccessPolicy\": + \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"0094d88f-084b-435b-be78-661d751f8f12\"\r\n}" headers: cache-control: - no-cache content-length: - - '1111' + - '1112' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:38:11 GMT + - Wed, 14 Apr 2021 09:20:24 GMT expires: - '-1' pragma: @@ -602,9 +602,9 @@ interactions: ParameterSetName: - -g -n --size-gb User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"d1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1\",\r\n @@ -614,19 +614,19 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-02-01T08:38:09.554084+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-14T09:20:22.7325396+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"c36aabd8-f653-45e5-ba62-ec4077b13c49\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"9bf668f6-4220-447e-81ef-d7ebafac29da\",\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '886' + - '887' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:38:11 GMT + - Wed, 14 Apr 2021 09:20:24 GMT expires: - '-1' pragma: @@ -643,7 +643,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14999,Microsoft.Compute/LowCostGet30Min;119998 + - Microsoft.Compute/LowCostGet3Min;14999,Microsoft.Compute/LowCostGet30Min;119999 status: code: 200 message: OK @@ -661,15 +661,15 @@ interactions: ParameterSetName: - -g -n --size-gb User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-02-01T08:36:39Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -678,7 +678,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:38:13 GMT + - Wed, 14 Apr 2021 09:20:25 GMT expires: - '-1' pragma: @@ -711,9 +711,9 @@ interactions: ParameterSetName: - -g -n --size-gb User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"d2\",\r\n \"location\": \"eastus2\",\r\n \"tags\": @@ -723,7 +723,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/2dc78c92-a688-4dd3-8c6d-56283d08051d?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/08f6a80d-4f40-4abf-9a34-ae579cd2d0e8?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -731,11 +731,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:38:18 GMT + - Wed, 14 Apr 2021 09:20:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/2dc78c92-a688-4dd3-8c6d-56283d08051d?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/08f6a80d-4f40-4abf-9a34-ae579cd2d0e8?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -748,7 +748,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7998 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -766,13 +766,13 @@ interactions: ParameterSetName: - -g -n --size-gb User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/2dc78c92-a688-4dd3-8c6d-56283d08051d?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/08f6a80d-4f40-4abf-9a34-ae579cd2d0e8?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-01T08:38:18.8512893+00:00\",\r\n \"endTime\": - \"2021-02-01T08:38:19.0544249+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-14T09:20:32.514106+00:00\",\r\n \"endTime\": + \"2021-04-14T09:20:32.6078586+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus2\",\r\n @@ -781,19 +781,19 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-02-01T08:38:18.8669211+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-14T09:20:32.514106+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"64d1bb45-2d5c-4ac3-85a4-7ed51502db8c\",\r\n \"networkAccessPolicy\": - \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"2dc78c92-a688-4dd3-8c6d-56283d08051d\"\r\n}" + \ \"uniqueId\": \"1e8c8576-1162-4d5a-8f08-3e1c4f1f8404\",\r\n \"networkAccessPolicy\": + \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"08f6a80d-4f40-4abf-9a34-ae579cd2d0e8\"\r\n}" headers: cache-control: - no-cache content-length: - - '1112' + - '1110' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:38:20 GMT + - Wed, 14 Apr 2021 09:20:34 GMT expires: - '-1' pragma: @@ -828,9 +828,9 @@ interactions: ParameterSetName: - -g -n --size-gb User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"d2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2\",\r\n @@ -840,19 +840,19 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-02-01T08:38:18.8669211+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-14T09:20:32.514106+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"64d1bb45-2d5c-4ac3-85a4-7ed51502db8c\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"1e8c8576-1162-4d5a-8f08-3e1c4f1f8404\",\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '887' + - '886' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:38:21 GMT + - Wed, 14 Apr 2021 09:20:35 GMT expires: - '-1' pragma: @@ -869,7 +869,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14997,Microsoft.Compute/LowCostGet30Min;119996 + - Microsoft.Compute/LowCostGet3Min;14996,Microsoft.Compute/LowCostGet30Min;119996 status: code: 200 message: OK @@ -887,15 +887,15 @@ interactions: ParameterSetName: - -g -n --size-gb User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-02-01T08:36:39Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -904,7 +904,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:38:22 GMT + - Wed, 14 Apr 2021 09:20:35 GMT expires: - '-1' pragma: @@ -937,9 +937,9 @@ interactions: ParameterSetName: - -g -n --size-gb User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"d3\",\r\n \"location\": \"eastus2\",\r\n \"tags\": @@ -949,7 +949,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/88c85f65-7114-4097-999e-1eb394b4bd43?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/a0191969-89e8-4de3-b3c6-db1e7de901e3?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -957,11 +957,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:38:27 GMT + - Wed, 14 Apr 2021 09:20:41 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/88c85f65-7114-4097-999e-1eb394b4bd43?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/a0191969-89e8-4de3-b3c6-db1e7de901e3?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -974,7 +974,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7997 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -992,13 +992,13 @@ interactions: ParameterSetName: - -g -n --size-gb User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/88c85f65-7114-4097-999e-1eb394b4bd43?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/a0191969-89e8-4de3-b3c6-db1e7de901e3?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-01T08:38:27.6797825+00:00\",\r\n \"endTime\": - \"2021-02-01T08:38:27.8828938+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-14T09:20:42.1550225+00:00\",\r\n \"endTime\": + \"2021-04-14T09:20:42.2487767+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus2\",\r\n @@ -1007,10 +1007,10 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-02-01T08:38:27.6797825+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-14T09:20:42.1550225+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"c84c4acb-7900-47ad-a7fd-c9f66303c691\",\r\n \"networkAccessPolicy\": - \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"88c85f65-7114-4097-999e-1eb394b4bd43\"\r\n}" + \ \"uniqueId\": \"ef5785f5-f708-48f0-bd2e-cbd8453c9d24\",\r\n \"networkAccessPolicy\": + \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"a0191969-89e8-4de3-b3c6-db1e7de901e3\"\r\n}" headers: cache-control: - no-cache @@ -1019,7 +1019,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:38:29 GMT + - Wed, 14 Apr 2021 09:20:44 GMT expires: - '-1' pragma: @@ -1054,9 +1054,9 @@ interactions: ParameterSetName: - -g -n --size-gb User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"d3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3\",\r\n @@ -1066,9 +1066,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-02-01T08:38:27.6797825+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-14T09:20:42.1550225+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"c84c4acb-7900-47ad-a7fd-c9f66303c691\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"ef5785f5-f708-48f0-bd2e-cbd8453c9d24\",\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: @@ -1078,7 +1078,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:38:30 GMT + - Wed, 14 Apr 2021 09:20:44 GMT expires: - '-1' pragma: @@ -1095,7 +1095,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14995,Microsoft.Compute/LowCostGet30Min;119994 + - Microsoft.Compute/LowCostGet3Min;14993,Microsoft.Compute/LowCostGet30Min;119993 status: code: 200 message: OK @@ -1113,7 +1113,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/d1?api-version=2020-05-01 response: @@ -1129,7 +1129,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:38:30 GMT + - Wed, 14 Apr 2021 09:20:45 GMT expires: - '-1' pragma: @@ -1157,9 +1157,9 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"d1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1\",\r\n @@ -1169,19 +1169,19 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-02-01T08:38:09.554084+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-14T09:20:22.7325396+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"c36aabd8-f653-45e5-ba62-ec4077b13c49\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"9bf668f6-4220-447e-81ef-d7ebafac29da\",\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '886' + - '887' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:38:30 GMT + - Wed, 14 Apr 2021 09:20:45 GMT expires: - '-1' pragma: @@ -1198,7 +1198,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14994,Microsoft.Compute/LowCostGet30Min;119993 + - Microsoft.Compute/LowCostGet3Min;14992,Microsoft.Compute/LowCostGet30Min;119992 status: code: 200 message: OK @@ -1216,15 +1216,15 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-02-01T08:36:39Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1233,7 +1233,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:38:31 GMT + - Wed, 14 Apr 2021 09:20:46 GMT expires: - '-1' pragma: @@ -1266,7 +1266,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 response: @@ -1274,12 +1274,12 @@ interactions: string: "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1\",\r\n - \ \"sourceUniqueId\": \"c36aabd8-f653-45e5-ba62-ec4077b13c49\"\r\n },\r\n + \ \"sourceUniqueId\": \"9bf668f6-4220-447e-81ef-d7ebafac29da\"\r\n },\r\n \ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/6830f0c0-f042-463c-89ec-04eb05026fb9?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/192ecbc3-5ce7-4efb-b6f8-71ae6f381b1a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1287,11 +1287,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:38:34 GMT + - Wed, 14 Apr 2021 09:20:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/6830f0c0-f042-463c-89ec-04eb05026fb9?monitor=true&api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/192ecbc3-5ce7-4efb-b6f8-71ae6f381b1a?monitor=true&api-version=2020-05-01 pragma: - no-cache server: @@ -1304,7 +1304,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7999 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' status: code: 202 message: Accepted @@ -1322,35 +1322,35 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/6830f0c0-f042-463c-89ec-04eb05026fb9?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/192ecbc3-5ce7-4efb-b6f8-71ae6f381b1a?api-version=2020-05-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-01T08:38:35.1644511+00:00\",\r\n \"endTime\": - \"2021-02-01T08:38:36.211366+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-14T09:20:51.9365814+00:00\",\r\n \"endTime\": + \"2021-04-14T09:20:53.1242028+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s1\",\r\n \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1\",\r\n - \ \"sourceUniqueId\": \"c36aabd8-f653-45e5-ba62-ec4077b13c49\"\r\n },\r\n + \ \"sourceUniqueId\": \"9bf668f6-4220-447e-81ef-d7ebafac29da\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-02-01T08:38:35.1644511+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-14T09:20:51.9522089+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"27d3677f-5e21-4d1c-9968-a3aa6070afbb\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"81710171-fec1-4ea4-b582-655ba96b063c\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"6830f0c0-f042-463c-89ec-04eb05026fb9\"\r\n}" + \"192ecbc3-5ce7-4efb-b6f8-71ae6f381b1a\"\r\n}" headers: cache-control: - no-cache content-length: - - '1342' + - '1343' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:38:37 GMT + - Wed, 14 Apr 2021 09:20:53 GMT expires: - '-1' pragma: @@ -1385,7 +1385,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 response: @@ -1395,11 +1395,11 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1\",\r\n - \ \"sourceUniqueId\": \"c36aabd8-f653-45e5-ba62-ec4077b13c49\"\r\n },\r\n + \ \"sourceUniqueId\": \"9bf668f6-4220-447e-81ef-d7ebafac29da\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-02-01T08:38:35.1644511+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-14T09:20:51.9522089+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"27d3677f-5e21-4d1c-9968-a3aa6070afbb\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"81710171-fec1-4ea4-b582-655ba96b063c\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -1409,7 +1409,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:38:37 GMT + - Wed, 14 Apr 2021 09:20:53 GMT expires: - '-1' pragma: @@ -1426,7 +1426,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14990,Microsoft.Compute/LowCostGet30Min;119989 + - Microsoft.Compute/LowCostGet3Min;14988,Microsoft.Compute/LowCostGet30Min;119988 status: code: 200 message: OK @@ -1444,7 +1444,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/d2?api-version=2020-05-01 response: @@ -1460,7 +1460,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:38:38 GMT + - Wed, 14 Apr 2021 09:20:55 GMT expires: - '-1' pragma: @@ -1488,9 +1488,9 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"d2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2\",\r\n @@ -1500,19 +1500,19 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-02-01T08:38:18.8669211+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-14T09:20:32.514106+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"64d1bb45-2d5c-4ac3-85a4-7ed51502db8c\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"1e8c8576-1162-4d5a-8f08-3e1c4f1f8404\",\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '887' + - '886' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:38:38 GMT + - Wed, 14 Apr 2021 09:20:55 GMT expires: - '-1' pragma: @@ -1529,7 +1529,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14989,Microsoft.Compute/LowCostGet30Min;119988 + - Microsoft.Compute/LowCostGet3Min;14986,Microsoft.Compute/LowCostGet30Min;119986 status: code: 200 message: OK @@ -1547,15 +1547,15 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-02-01T08:36:39Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1564,7 +1564,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:38:39 GMT + - Wed, 14 Apr 2021 09:20:56 GMT expires: - '-1' pragma: @@ -1597,7 +1597,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s2?api-version=2020-05-01 response: @@ -1605,12 +1605,12 @@ interactions: string: "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2\",\r\n - \ \"sourceUniqueId\": \"64d1bb45-2d5c-4ac3-85a4-7ed51502db8c\"\r\n },\r\n + \ \"sourceUniqueId\": \"1e8c8576-1162-4d5a-8f08-3e1c4f1f8404\"\r\n },\r\n \ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/aba20818-9e08-4e81-abf9-a134654652e8?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/be39f9b5-64ce-42fe-b51b-7483a414b433?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1618,11 +1618,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:38:45 GMT + - Wed, 14 Apr 2021 09:21:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/aba20818-9e08-4e81-abf9-a134654652e8?monitor=true&api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/be39f9b5-64ce-42fe-b51b-7483a414b433?monitor=true&api-version=2020-05-01 pragma: - no-cache server: @@ -1635,7 +1635,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;998,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7998 x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1198' status: code: 202 message: Accepted @@ -1653,26 +1653,26 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/aba20818-9e08-4e81-abf9-a134654652e8?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/be39f9b5-64ce-42fe-b51b-7483a414b433?api-version=2020-05-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-01T08:38:45.8680543+00:00\",\r\n \"endTime\": - \"2021-02-01T08:38:46.3055365+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-14T09:21:01.6244687+00:00\",\r\n \"endTime\": + \"2021-04-14T09:21:02.3744885+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"s2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s2\",\r\n \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2\",\r\n - \ \"sourceUniqueId\": \"64d1bb45-2d5c-4ac3-85a4-7ed51502db8c\"\r\n },\r\n + \ \"sourceUniqueId\": \"1e8c8576-1162-4d5a-8f08-3e1c4f1f8404\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-02-01T08:38:45.8680543+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-14T09:21:01.6400932+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"3b4d9828-369a-4e46-abec-1a2a7a4c7ec4\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"93f6475e-6ef9-4298-b53f-aa86243bc80f\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"aba20818-9e08-4e81-abf9-a134654652e8\"\r\n}" + \"be39f9b5-64ce-42fe-b51b-7483a414b433\"\r\n}" headers: cache-control: - no-cache @@ -1681,7 +1681,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:38:47 GMT + - Wed, 14 Apr 2021 09:21:04 GMT expires: - '-1' pragma: @@ -1716,7 +1716,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s2?api-version=2020-05-01 response: @@ -1726,11 +1726,11 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2\",\r\n - \ \"sourceUniqueId\": \"64d1bb45-2d5c-4ac3-85a4-7ed51502db8c\"\r\n },\r\n + \ \"sourceUniqueId\": \"1e8c8576-1162-4d5a-8f08-3e1c4f1f8404\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-02-01T08:38:45.8680543+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-14T09:21:01.6400932+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"3b4d9828-369a-4e46-abec-1a2a7a4c7ec4\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"93f6475e-6ef9-4298-b53f-aa86243bc80f\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -1740,7 +1740,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:38:47 GMT + - Wed, 14 Apr 2021 09:21:04 GMT expires: - '-1' pragma: @@ -1757,7 +1757,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14986,Microsoft.Compute/LowCostGet30Min;119985 + - Microsoft.Compute/LowCostGet3Min;14983,Microsoft.Compute/LowCostGet30Min;119983 status: code: 200 message: OK @@ -1775,7 +1775,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/d3?api-version=2020-05-01 response: @@ -1791,7 +1791,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:38:50 GMT + - Wed, 14 Apr 2021 09:21:05 GMT expires: - '-1' pragma: @@ -1819,9 +1819,9 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"d3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3\",\r\n @@ -1831,9 +1831,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-02-01T08:38:27.6797825+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-14T09:20:42.1550225+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"c84c4acb-7900-47ad-a7fd-c9f66303c691\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"ef5785f5-f708-48f0-bd2e-cbd8453c9d24\",\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: @@ -1843,7 +1843,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:38:50 GMT + - Wed, 14 Apr 2021 09:21:06 GMT expires: - '-1' pragma: @@ -1860,7 +1860,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14984,Microsoft.Compute/LowCostGet30Min;119983 + - Microsoft.Compute/LowCostGet3Min;14982,Microsoft.Compute/LowCostGet30Min;119982 status: code: 200 message: OK @@ -1878,15 +1878,15 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-02-01T08:36:39Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1895,7 +1895,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:38:50 GMT + - Wed, 14 Apr 2021 09:21:06 GMT expires: - '-1' pragma: @@ -1928,7 +1928,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s3?api-version=2020-05-01 response: @@ -1936,12 +1936,12 @@ interactions: string: "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3\",\r\n - \ \"sourceUniqueId\": \"c84c4acb-7900-47ad-a7fd-c9f66303c691\"\r\n },\r\n + \ \"sourceUniqueId\": \"ef5785f5-f708-48f0-bd2e-cbd8453c9d24\"\r\n },\r\n \ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/7d550a43-db7b-49c4-be17-c455605d170e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/82f7f5ca-a006-4338-92d8-f731da91ce84?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1949,11 +1949,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:38:56 GMT + - Wed, 14 Apr 2021 09:21:11 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/7d550a43-db7b-49c4-be17-c455605d170e?monitor=true&api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/82f7f5ca-a006-4338-92d8-f731da91ce84?monitor=true&api-version=2020-05-01 pragma: - no-cache server: @@ -1984,26 +1984,26 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/7d550a43-db7b-49c4-be17-c455605d170e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/82f7f5ca-a006-4338-92d8-f731da91ce84?api-version=2020-05-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-01T08:38:56.7747124+00:00\",\r\n \"endTime\": - \"2021-02-01T08:38:57.2278136+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-14T09:21:11.6717254+00:00\",\r\n \"endTime\": + \"2021-04-14T09:21:12.4069036+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"s3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s3\",\r\n \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3\",\r\n - \ \"sourceUniqueId\": \"c84c4acb-7900-47ad-a7fd-c9f66303c691\"\r\n },\r\n + \ \"sourceUniqueId\": \"ef5785f5-f708-48f0-bd2e-cbd8453c9d24\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-02-01T08:38:56.7747124+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-14T09:21:11.6873536+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"d559c4ac-3de3-4e3c-b167-b7f639064c31\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"d6c9b97f-91af-466f-bcd9-475dcb538a03\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"7d550a43-db7b-49c4-be17-c455605d170e\"\r\n}" + \"82f7f5ca-a006-4338-92d8-f731da91ce84\"\r\n}" headers: cache-control: - no-cache @@ -2012,7 +2012,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:38:58 GMT + - Wed, 14 Apr 2021 09:21:13 GMT expires: - '-1' pragma: @@ -2047,7 +2047,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s3?api-version=2020-05-01 response: @@ -2057,11 +2057,11 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3\",\r\n - \ \"sourceUniqueId\": \"c84c4acb-7900-47ad-a7fd-c9f66303c691\"\r\n },\r\n + \ \"sourceUniqueId\": \"ef5785f5-f708-48f0-bd2e-cbd8453c9d24\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-02-01T08:38:56.7747124+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-14T09:21:11.6873536+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"d559c4ac-3de3-4e3c-b167-b7f639064c31\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"d6c9b97f-91af-466f-bcd9-475dcb538a03\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -2071,7 +2071,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:38:58 GMT + - Wed, 14 Apr 2021 09:21:14 GMT expires: - '-1' pragma: @@ -2088,7 +2088,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14982,Microsoft.Compute/LowCostGet30Min;119981 + - Microsoft.Compute/LowCostGet3Min;14979,Microsoft.Compute/LowCostGet30Min;119979 status: code: 200 message: OK @@ -2107,15 +2107,15 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot --data-snapshots --data-snapshot-luns User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-02-01T08:36:39Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2124,7 +2124,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:38:59 GMT + - Wed, 14 Apr 2021 09:21:15 GMT expires: - '-1' pragma: @@ -2162,7 +2162,7 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot --data-snapshots --data-snapshot-luns User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2020-09-30 response: @@ -2173,7 +2173,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-01T08:39:05.5064359+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-14T09:21:21.2157256+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"hostCaching\": \"ReadWrite\",\r\n \ \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2186,7 +2186,7 @@ interactions: \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/72f06fbe-241b-4b95-9d3c-6c90acd3c7fe?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/72c02e88-b5a4-4fcc-858c-e9dd3f30d6b3?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -2194,7 +2194,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:39:07 GMT + - Wed, 14 Apr 2021 09:21:22 GMT expires: - '-1' pragma: @@ -2209,7 +2209,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1199 x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1198' status: code: 201 message: Created @@ -2228,13 +2228,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot --data-snapshots --data-snapshot-luns User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/72f06fbe-241b-4b95-9d3c-6c90acd3c7fe?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/72c02e88-b5a4-4fcc-858c-e9dd3f30d6b3?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-02-01T08:39:05.4908212+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"72f06fbe-241b-4b95-9d3c-6c90acd3c7fe\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:21:21.2000988+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"72c02e88-b5a4-4fcc-858c-e9dd3f30d6b3\"\r\n}" headers: cache-control: - no-cache @@ -2243,7 +2243,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:40:07 GMT + - Wed, 14 Apr 2021 09:22:23 GMT expires: - '-1' pragma: @@ -2260,7 +2260,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4194 + - Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4191 status: code: 200 message: OK @@ -2279,13 +2279,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot --data-snapshots --data-snapshot-luns User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/72f06fbe-241b-4b95-9d3c-6c90acd3c7fe?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/72c02e88-b5a4-4fcc-858c-e9dd3f30d6b3?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-02-01T08:39:05.4908212+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"72f06fbe-241b-4b95-9d3c-6c90acd3c7fe\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:21:21.2000988+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"72c02e88-b5a4-4fcc-858c-e9dd3f30d6b3\"\r\n}" headers: cache-control: - no-cache @@ -2294,7 +2294,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:41:08 GMT + - Wed, 14 Apr 2021 09:23:24 GMT expires: - '-1' pragma: @@ -2311,7 +2311,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4192 + - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4189 status: code: 200 message: OK @@ -2330,13 +2330,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot --data-snapshots --data-snapshot-luns User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/72f06fbe-241b-4b95-9d3c-6c90acd3c7fe?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/72c02e88-b5a4-4fcc-858c-e9dd3f30d6b3?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-02-01T08:39:05.4908212+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"72f06fbe-241b-4b95-9d3c-6c90acd3c7fe\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:21:21.2000988+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"72c02e88-b5a4-4fcc-858c-e9dd3f30d6b3\"\r\n}" headers: cache-control: - no-cache @@ -2345,7 +2345,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:42:10 GMT + - Wed, 14 Apr 2021 09:24:25 GMT expires: - '-1' pragma: @@ -2362,7 +2362,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4191 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4187 status: code: 200 message: OK @@ -2381,13 +2381,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot --data-snapshots --data-snapshot-luns User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/72f06fbe-241b-4b95-9d3c-6c90acd3c7fe?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/72c02e88-b5a4-4fcc-858c-e9dd3f30d6b3?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-02-01T08:39:05.4908212+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"72f06fbe-241b-4b95-9d3c-6c90acd3c7fe\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:21:21.2000988+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"72c02e88-b5a4-4fcc-858c-e9dd3f30d6b3\"\r\n}" headers: cache-control: - no-cache @@ -2396,7 +2396,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:43:10 GMT + - Wed, 14 Apr 2021 09:25:25 GMT expires: - '-1' pragma: @@ -2413,7 +2413,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4189 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4185 status: code: 200 message: OK @@ -2432,13 +2432,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot --data-snapshots --data-snapshot-luns User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/72f06fbe-241b-4b95-9d3c-6c90acd3c7fe?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/72c02e88-b5a4-4fcc-858c-e9dd3f30d6b3?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-02-01T08:39:05.4908212+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"72f06fbe-241b-4b95-9d3c-6c90acd3c7fe\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:21:21.2000988+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"72c02e88-b5a4-4fcc-858c-e9dd3f30d6b3\"\r\n}" headers: cache-control: - no-cache @@ -2447,7 +2447,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:44:12 GMT + - Wed, 14 Apr 2021 09:26:26 GMT expires: - '-1' pragma: @@ -2464,7 +2464,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4187 + - Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4181 status: code: 200 message: OK @@ -2483,13 +2483,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot --data-snapshots --data-snapshot-luns User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/72f06fbe-241b-4b95-9d3c-6c90acd3c7fe?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/72c02e88-b5a4-4fcc-858c-e9dd3f30d6b3?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-02-01T08:39:05.4908212+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"72f06fbe-241b-4b95-9d3c-6c90acd3c7fe\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:21:21.2000988+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"72c02e88-b5a4-4fcc-858c-e9dd3f30d6b3\"\r\n}" headers: cache-control: - no-cache @@ -2498,7 +2498,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:45:13 GMT + - Wed, 14 Apr 2021 09:27:27 GMT expires: - '-1' pragma: @@ -2515,7 +2515,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4185 + - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4177 status: code: 200 message: OK @@ -2534,14 +2534,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot --data-snapshots --data-snapshot-luns User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/72f06fbe-241b-4b95-9d3c-6c90acd3c7fe?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/72c02e88-b5a4-4fcc-858c-e9dd3f30d6b3?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-02-01T08:39:05.4908212+00:00\",\r\n \"endTime\": - \"2021-02-01T08:46:06.2272373+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"72f06fbe-241b-4b95-9d3c-6c90acd3c7fe\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:21:21.2000988+00:00\",\r\n \"endTime\": + \"2021-04-14T09:27:44.5774545+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"72c02e88-b5a4-4fcc-858c-e9dd3f30d6b3\"\r\n}" headers: cache-control: - no-cache @@ -2550,7 +2550,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:46:13 GMT + - Wed, 14 Apr 2021 09:28:27 GMT expires: - '-1' pragma: @@ -2567,7 +2567,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4183 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4173 status: code: 200 message: OK @@ -2586,7 +2586,7 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot --data-snapshots --data-snapshot-luns User-Agent: - - AZURECLI/2.18.0 azsdk-python-azure-mgmt-compute/18.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2020-09-30 response: @@ -2597,7 +2597,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-01T08:39:05.5064359+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-14T09:21:21.2157256+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 10,\r\n \"hostCaching\": \"ReadWrite\",\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2617,7 +2617,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Feb 2021 08:46:13 GMT + - Wed, 14 Apr 2021 09:28:27 GMT expires: - '-1' pragma: @@ -2634,7 +2634,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9997 + - Microsoft.Compute/GetGalleryImageVersion3Min;1998,Microsoft.Compute/GetGalleryImageVersion30Min;9995 status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_specialized_image.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_specialized_image.yaml index 27628105c42..24ed26097f4 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_specialized_image.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_specialized_image.yaml @@ -14,14 +14,14 @@ interactions: - -g --gallery-name User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:51:01 GMT + - Wed, 14 Apr 2021 09:18:57 GMT expires: - '-1' pragma: @@ -62,7 +62,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01 response: @@ -70,11 +70,11 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_Z2Y6MOKXVPPQ\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_7XSGIDPGYYCS\"\r\n },\r\n \ \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d51f93e6-4eaf-4a09-9fea-8a7314616687?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/2a6edd07-dc0b-4d74-b9b2-c1c76204c8cf?api-version=2019-12-01 cache-control: - no-cache content-length: @@ -82,7 +82,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:51:07 GMT + - Wed, 14 Apr 2021 09:19:03 GMT expires: - '-1' pragma: @@ -95,9 +95,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;297 + - Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -115,14 +115,14 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d51f93e6-4eaf-4a09-9fea-8a7314616687?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/2a6edd07-dc0b-4d74-b9b2-c1c76204c8cf?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T03:51:06.5902657+00:00\",\r\n \"endTime\": - \"2021-04-09T03:51:06.6996311+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"d51f93e6-4eaf-4a09-9fea-8a7314616687\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:19:03.4479592+00:00\",\r\n \"endTime\": + \"2021-04-14T09:19:05.4166918+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"2a6edd07-dc0b-4d74-b9b2-c1c76204c8cf\"\r\n}" headers: cache-control: - no-cache @@ -131,7 +131,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:51:38 GMT + - Wed, 14 Apr 2021 09:19:34 GMT expires: - '-1' pragma: @@ -148,7 +148,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4115 + - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4198 status: code: 200 message: OK @@ -166,7 +166,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01 response: @@ -174,7 +174,7 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_Z2Y6MOKXVPPQ\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_7XSGIDPGYYCS\"\r\n },\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -184,7 +184,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:51:38 GMT + - Wed, 14 Apr 2021 09:19:34 GMT expires: - '-1' pragma: @@ -201,7 +201,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGallery3Min;341,Microsoft.Compute/GetGallery30Min;2461 + - Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2496 status: code: 200 message: OK @@ -220,14 +220,14 @@ interactions: - -g --gallery-name --gallery-image-definition --os-type --os-state -p -f -s User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -236,7 +236,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:51:38 GMT + - Wed, 14 Apr 2021 09:19:35 GMT expires: - '-1' pragma: @@ -270,7 +270,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type --os-state -p -f -s User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -284,7 +284,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/2432c1ef-d93f-40fe-bb60-636146356d09?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/cad4b80f-caaf-4972-b132-1a2fa63f79bc?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -292,7 +292,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:51:46 GMT + - Wed, 14 Apr 2021 09:19:39 GMT expires: - '-1' pragma: @@ -305,9 +305,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;746 + - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;749 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -325,14 +325,14 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type --os-state -p -f -s User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/2432c1ef-d93f-40fe-bb60-636146356d09?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/cad4b80f-caaf-4972-b132-1a2fa63f79bc?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T03:51:44.6371486+00:00\",\r\n \"endTime\": - \"2021-04-09T03:51:44.7621727+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"2432c1ef-d93f-40fe-bb60-636146356d09\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:19:38.8854501+00:00\",\r\n \"endTime\": + \"2021-04-14T09:19:39.1042039+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"cad4b80f-caaf-4972-b132-1a2fa63f79bc\"\r\n}" headers: cache-control: - no-cache @@ -341,7 +341,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:52:16 GMT + - Wed, 14 Apr 2021 09:20:09 GMT expires: - '-1' pragma: @@ -358,7 +358,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4111 + - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4194 status: code: 200 message: OK @@ -376,7 +376,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type --os-state -p -f -s User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -396,7 +396,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:52:16 GMT + - Wed, 14 Apr 2021 09:20:10 GMT expires: - '-1' pragma: @@ -413,7 +413,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;594,Microsoft.Compute/GetGalleryImage30Min;2957 + - Microsoft.Compute/GetGalleryImage3Min;595,Microsoft.Compute/GetGalleryImage30Min;2995 status: code: 200 message: OK @@ -432,14 +432,14 @@ interactions: - -g -n --image --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -448,7 +448,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:52:16 GMT + - Wed, 14 Apr 2021 09:20:11 GMT expires: - '-1' pragma: @@ -527,13 +527,13 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Fri, 09 Apr 2021 03:52:18 GMT + - Wed, 14 Apr 2021 09:20:11 GMT etag: - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" expires: - - Fri, 09 Apr 2021 03:57:18 GMT + - Wed, 14 Apr 2021 09:25:11 GMT source-age: - - '136' + - '62' strict-transport-security: - max-age=31536000 vary: @@ -547,15 +547,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 6e0dafe57dc9df0afffd4e71caa1cb1741d0d2ed + - 8c6992ed499770a85d665e6773aa09dd899e0179 x-frame-options: - deny x-github-request-id: - - C62E:4586:4AE6C2:58C97E:606FB659 + - B82A:0EF1:2D6432:361BB8:60763DA4 x-served-by: - - cache-qpg1250-QPG + - cache-qpg1221-QPG x-timer: - - S1617940338.133329,VS0,VE0 + - S1618392012.753437,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -575,7 +575,7 @@ interactions: ParameterSetName: - -g -n --image --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 response: @@ -589,7 +589,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:52:17 GMT + - Wed, 14 Apr 2021 09:20:11 GMT expires: - '-1' pragma: @@ -649,17 +649,17 @@ interactions: - -g -n --image --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_r4DR0vigI6Z52exHetJoA2lmuPsFtaTT","name":"vm_deploy_r4DR0vigI6Z52exHetJoA2lmuPsFtaTT","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15126210756843502239","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-09T03:52:22.3582207Z","duration":"PT2.1729794S","correlationId":"0a8fa1d4-5da3-48c3-a300-a805f5fa2d25","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_G5wwJVrMtP6WUz1r6aJPaVgMsbZ0qXyi","name":"vm_deploy_G5wwJVrMtP6WUz1r6aJPaVgMsbZ0qXyi","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16249800001152442868","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-14T09:20:16.2255487Z","duration":"PT2.3204889S","correlationId":"794f2724-516a-40f1-8ca3-a331abe76a9d","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_r4DR0vigI6Z52exHetJoA2lmuPsFtaTT/operationStatuses/08585836665452924061?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_G5wwJVrMtP6WUz1r6aJPaVgMsbZ0qXyi/operationStatuses/08585832148715725719?api-version=2020-10-01 cache-control: - no-cache content-length: @@ -667,7 +667,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:52:24 GMT + - Wed, 14 Apr 2021 09:20:16 GMT expires: - '-1' pragma: @@ -696,9 +696,9 @@ interactions: - -g -n --image --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836665452924061?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585832148715725719?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -710,7 +710,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:52:54 GMT + - Wed, 14 Apr 2021 09:20:47 GMT expires: - '-1' pragma: @@ -739,9 +739,9 @@ interactions: - -g -n --image --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836665452924061?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585832148715725719?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -753,7 +753,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:53:24 GMT + - Wed, 14 Apr 2021 09:21:18 GMT expires: - '-1' pragma: @@ -782,12 +782,12 @@ interactions: - -g -n --image --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_r4DR0vigI6Z52exHetJoA2lmuPsFtaTT","name":"vm_deploy_r4DR0vigI6Z52exHetJoA2lmuPsFtaTT","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15126210756843502239","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-09T03:53:00.6182565Z","duration":"PT40.4330152S","correlationId":"0a8fa1d4-5da3-48c3-a300-a805f5fa2d25","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_G5wwJVrMtP6WUz1r6aJPaVgMsbZ0qXyi","name":"vm_deploy_G5wwJVrMtP6WUz1r6aJPaVgMsbZ0qXyi","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16249800001152442868","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-14T09:20:50.0242739Z","duration":"PT36.1192141S","correlationId":"794f2724-516a-40f1-8ca3-a331abe76a9d","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}' headers: cache-control: - no-cache @@ -796,7 +796,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:53:25 GMT + - Wed, 14 Apr 2021 09:21:18 GMT expires: - '-1' pragma: @@ -824,23 +824,23 @@ interactions: ParameterSetName: - -g -n --image --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"6afa5107-b6d7-4cd3-a5f3-cb324e6782e7\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"ebeb0936-01e5-43ed-bbec-a11a62fbfe42\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202103250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"vm1_disk1_542ef6000e4744b5b446b31c49c2757b\",\r\n + \"Linux\",\r\n \"name\": \"vm1_disk1_f0bc08d7708e47299ae8095afc69ecff\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_542ef6000e4744b5b446b31c49c2757b\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_f0bc08d7708e47299ae8095afc69ecff\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n \ \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": {\r\n @@ -855,15 +855,15 @@ interactions: [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \ \"message\": \"Guest Agent is running\",\r\n \"time\": - \"2021-04-09T03:53:23+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_disk1_542ef6000e4744b5b446b31c49c2757b\",\r\n + \"2021-04-14T09:21:14+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_disk1_f0bc08d7708e47299ae8095afc69ecff\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-09T03:52:47.1262889+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-14T09:20:35.7855812+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-09T03:52:57.3611395+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-14T09:20:46.8017045+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n \ }\r\n ]\r\n }\r\n }\r\n}" @@ -875,7 +875,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:53:26 GMT + - Wed, 14 Apr 2021 09:21:19 GMT expires: - '-1' pragma: @@ -892,7 +892,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3978,Microsoft.Compute/LowCostGet30Min;31719 + - Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31977 status: code: 200 message: OK @@ -910,18 +910,18 @@ interactions: ParameterSetName: - -g -n --image --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"vm1VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\r\n - \ \"etag\": \"W/\\\"049e09d0-02b1-4adf-a9c4-a70e0f2e1891\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"212471c5-e5df-4fdb-8ad5-393f738fc5cc\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"753f6256-2e25-47cb-b3d7-49996f39c902\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"bc76fc27-6cdf-47ea-ba79-0710a91a8cab\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm1\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\r\n - \ \"etag\": \"W/\\\"049e09d0-02b1-4adf-a9c4-a70e0f2e1891\\\"\",\r\n + \ \"etag\": \"W/\\\"212471c5-e5df-4fdb-8ad5-393f738fc5cc\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -930,8 +930,8 @@ interactions: \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": - \"u4kgf4byuanurlba2fjy2vkzpa.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-36-FA-F3\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"pgcbhvylntkubk5plkyqmitthd.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-22-48-03-A6-8A\",\r\n \"enableAcceleratedNetworking\": false,\r\n \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -945,9 +945,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:53:27 GMT + - Wed, 14 Apr 2021 09:21:20 GMT etag: - - W/"049e09d0-02b1-4adf-a9c4-a70e0f2e1891" + - W/"212471c5-e5df-4fdb-8ad5-393f738fc5cc" expires: - '-1' pragma: @@ -964,7 +964,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ec215062-bf68-4f00-918e-c55822533e0d + - 75283a2a-0356-433f-b629-e4e661c4c42a status: code: 200 message: OK @@ -982,17 +982,17 @@ interactions: ParameterSetName: - -g -n --image --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"vm1PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\r\n - \ \"etag\": \"W/\\\"59cf5442-a63a-47cc-ae87-0a6efedcee7b\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"e228f436-989e-4d0d-bad7-2364705afc19\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"da229d21-f6a7-4196-b578-1a63c87e7f7f\",\r\n - \ \"ipAddress\": \"168.62.205.98\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n - \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + \"Succeeded\",\r\n \"resourceGuid\": \"101facf8-564e-43b4-8788-1a418660008b\",\r\n + \ \"ipAddress\": \"137.135.59.164\",\r\n \"publicIPAddressVersion\": + \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" @@ -1000,13 +1000,13 @@ interactions: cache-control: - no-cache content-length: - - '997' + - '998' content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:53:27 GMT + - Wed, 14 Apr 2021 09:21:20 GMT etag: - - W/"59cf5442-a63a-47cc-ae87-0a6efedcee7b" + - W/"e228f436-989e-4d0d-bad7-2364705afc19" expires: - '-1' pragma: @@ -1023,7 +1023,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2aba49e2-edf4-4de9-9db9-697f3fa118d9 + - ef0a0ca9-8ed0-4547-870e-bf53228c678a status: code: 200 message: OK @@ -1041,23 +1041,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"6afa5107-b6d7-4cd3-a5f3-cb324e6782e7\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"ebeb0936-01e5-43ed-bbec-a11a62fbfe42\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202103250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"vm1_disk1_542ef6000e4744b5b446b31c49c2757b\",\r\n + \"Linux\",\r\n \"name\": \"vm1_disk1_f0bc08d7708e47299ae8095afc69ecff\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_542ef6000e4744b5b446b31c49c2757b\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_f0bc08d7708e47299ae8095afc69ecff\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n \ \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": {\r\n @@ -1075,7 +1075,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:53:27 GMT + - Wed, 14 Apr 2021 09:21:20 GMT expires: - '-1' pragma: @@ -1092,7 +1092,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3977,Microsoft.Compute/LowCostGet30Min;31718 + - Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31976 status: code: 200 message: OK @@ -1110,12 +1110,12 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/vm1_disk1_542ef6000e4744b5b446b31c49c2757b?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/vm1_disk1_f0bc08d7708e47299ae8095afc69ecff?api-version=2020-05-01 response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/vm1_disk1_542ef6000e4744b5b446b31c49c2757b'' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/vm1_disk1_f0bc08d7708e47299ae8095afc69ecff'' under resource group ''cli_test_test_specialized_image_000001'' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: @@ -1126,7 +1126,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:53:28 GMT + - Wed, 14 Apr 2021 09:21:21 GMT expires: - '-1' pragma: @@ -1154,13 +1154,13 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_542ef6000e4744b5b446b31c49c2757b?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_f0bc08d7708e47299ae8095afc69ecff?api-version=2020-12-01 response: body: - string: "{\r\n \"name\": \"vm1_disk1_542ef6000e4744b5b446b31c49c2757b\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_542ef6000e4744b5b446b31c49c2757b\",\r\n + string: "{\r\n \"name\": \"vm1_disk1_f0bc08d7708e47299ae8095afc69ecff\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_f0bc08d7708e47299ae8095afc69ecff\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n @@ -1169,19 +1169,19 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/canonical/ArtifactTypes/VMImage/Offers/ubuntuserver/Skus/18.04-lts/Versions/18.04.202103250\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-09T03:52:46.3748691+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-14T09:20:34.74053+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"542ef600-0e47-44b5-b446-b31c49c2757b\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"f0bc08d7-708e-4729-9ae8-095afc69ecff\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1437' + - '1435' content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:53:29 GMT + - Wed, 14 Apr 2021 09:21:22 GMT expires: - '-1' pragma: @@ -1198,7 +1198,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4970,Microsoft.Compute/LowCostGet30Min;39853 + - Microsoft.Compute/LowCostGet3Min;4975,Microsoft.Compute/LowCostGet30Min;39966 status: code: 200 message: OK @@ -1217,14 +1217,14 @@ interactions: - -g -n --source User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1233,7 +1233,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:53:30 GMT + - Wed, 14 Apr 2021 09:21:22 GMT expires: - '-1' pragma: @@ -1249,7 +1249,7 @@ interactions: message: OK - request: body: '{"location": "westus", "tags": {}, "sku": {"name": "Standard_LRS"}, "properties": - {"creationData": {"createOption": "Copy", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_542ef6000e4744b5b446b31c49c2757b"}}}' + {"creationData": {"createOption": "Copy", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_f0bc08d7708e47299ae8095afc69ecff"}}}' headers: Accept: - application/json @@ -1266,7 +1266,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 response: @@ -1274,13 +1274,13 @@ interactions: string: "{\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \ \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n - \ \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_542ef6000e4744b5b446b31c49c2757b\",\r\n - \ \"sourceUniqueId\": \"542ef600-0e47-44b5-b446-b31c49c2757b\"\r\n },\r\n + \ \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_f0bc08d7708e47299ae8095afc69ecff\",\r\n + \ \"sourceUniqueId\": \"f0bc08d7-708e-4729-9ae8-095afc69ecff\"\r\n },\r\n \ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/833f2974-1a0e-492e-976d-2e243167895e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f5b63a26-bcfe-4d0d-a2f1-0741c113329f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1288,11 +1288,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:53:33 GMT + - Wed, 14 Apr 2021 09:21:24 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/833f2974-1a0e-492e-976d-2e243167895e?monitor=true&api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f5b63a26-bcfe-4d0d-a2f1-0741c113329f?monitor=true&api-version=2020-05-01 pragma: - no-cache server: @@ -1303,9 +1303,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;998,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7994 + - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;998,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7998 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 202 message: Accepted @@ -1323,27 +1323,27 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/833f2974-1a0e-492e-976d-2e243167895e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f5b63a26-bcfe-4d0d-a2f1-0741c113329f?api-version=2020-05-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T03:53:34.3605877+00:00\",\r\n \"endTime\": - \"2021-04-09T03:53:35.1262338+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-14T09:21:24.8670324+00:00\",\r\n \"endTime\": + \"2021-04-14T09:21:25.6639054+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\",\r\n \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \ \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_542ef6000e4744b5b446b31c49c2757b\",\r\n - \ \"sourceUniqueId\": \"542ef600-0e47-44b5-b446-b31c49c2757b\"\r\n },\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_f0bc08d7708e47299ae8095afc69ecff\",\r\n + \ \"sourceUniqueId\": \"f0bc08d7-708e-4729-9ae8-095afc69ecff\"\r\n },\r\n \ \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-09T03:53:34.3605877+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-14T09:21:24.8826371+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"1ea649d1-d0b2-4703-a654-585264194861\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"4daeca81-df26-455c-9f15-9a6adb21795a\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"833f2974-1a0e-492e-976d-2e243167895e\"\r\n}" + \"f5b63a26-bcfe-4d0d-a2f1-0741c113329f\"\r\n}" headers: cache-control: - no-cache @@ -1352,7 +1352,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:53:35 GMT + - Wed, 14 Apr 2021 09:21:26 GMT expires: - '-1' pragma: @@ -1369,7 +1369,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49982,Microsoft.Compute/GetOperation30Min;399872 + - Microsoft.Compute/GetOperation3Min;49985,Microsoft.Compute/GetOperation30Min;399985 status: code: 200 message: OK @@ -1387,7 +1387,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 response: @@ -1397,12 +1397,12 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \ \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_542ef6000e4744b5b446b31c49c2757b\",\r\n - \ \"sourceUniqueId\": \"542ef600-0e47-44b5-b446-b31c49c2757b\"\r\n },\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_f0bc08d7708e47299ae8095afc69ecff\",\r\n + \ \"sourceUniqueId\": \"f0bc08d7-708e-4729-9ae8-095afc69ecff\"\r\n },\r\n \ \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-09T03:53:34.3605877+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-14T09:21:24.8826371+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"1ea649d1-d0b2-4703-a654-585264194861\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"4daeca81-df26-455c-9f15-9a6adb21795a\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -1412,7 +1412,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:53:36 GMT + - Wed, 14 Apr 2021 09:21:27 GMT expires: - '-1' pragma: @@ -1429,7 +1429,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4969,Microsoft.Compute/LowCostGet30Min;39852 + - Microsoft.Compute/LowCostGet3Min;4974,Microsoft.Compute/LowCostGet30Min;39965 status: code: 200 message: OK @@ -1448,14 +1448,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1464,7 +1464,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:53:37 GMT + - Wed, 14 Apr 2021 09:21:27 GMT expires: - '-1' pragma: @@ -1498,7 +1498,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2020-09-30 response: @@ -1509,7 +1509,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-09T03:53:40.9029298+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-14T09:21:33.229228+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"hostCaching\": \"ReadWrite\",\r\n \ \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -1517,15 +1517,15 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d10517f2-61ac-4334-be15-33f57c1bd413?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/14d014c1-917d-44dd-a502-9879acd4302a?api-version=2020-09-30 cache-control: - no-cache content-length: - - '1140' + - '1139' content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:53:41 GMT + - Wed, 14 Apr 2021 09:21:33 GMT expires: - '-1' pragma: @@ -1538,9 +1538,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;373,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1194 + - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;373,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1198 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' status: code: 201 message: Created @@ -1558,13 +1558,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d10517f2-61ac-4334-be15-33f57c1bd413?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/14d014c1-917d-44dd-a502-9879acd4302a?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T03:53:40.8872814+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"d10517f2-61ac-4334-be15-33f57c1bd413\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:21:33.2136043+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"14d014c1-917d-44dd-a502-9879acd4302a\"\r\n}" headers: cache-control: - no-cache @@ -1573,7 +1573,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:54:42 GMT + - Wed, 14 Apr 2021 09:22:34 GMT expires: - '-1' pragma: @@ -1590,7 +1590,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;4101 + - Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4189 status: code: 200 message: OK @@ -1608,13 +1608,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d10517f2-61ac-4334-be15-33f57c1bd413?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/14d014c1-917d-44dd-a502-9879acd4302a?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T03:53:40.8872814+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"d10517f2-61ac-4334-be15-33f57c1bd413\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:21:33.2136043+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"14d014c1-917d-44dd-a502-9879acd4302a\"\r\n}" headers: cache-control: - no-cache @@ -1623,7 +1623,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:55:42 GMT + - Wed, 14 Apr 2021 09:23:35 GMT expires: - '-1' pragma: @@ -1640,7 +1640,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4102 + - Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4185 status: code: 200 message: OK @@ -1658,13 +1658,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d10517f2-61ac-4334-be15-33f57c1bd413?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/14d014c1-917d-44dd-a502-9879acd4302a?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T03:53:40.8872814+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"d10517f2-61ac-4334-be15-33f57c1bd413\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:21:33.2136043+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"14d014c1-917d-44dd-a502-9879acd4302a\"\r\n}" headers: cache-control: - no-cache @@ -1673,7 +1673,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:56:43 GMT + - Wed, 14 Apr 2021 09:24:36 GMT expires: - '-1' pragma: @@ -1690,7 +1690,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4098 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4181 status: code: 200 message: OK @@ -1708,13 +1708,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d10517f2-61ac-4334-be15-33f57c1bd413?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/14d014c1-917d-44dd-a502-9879acd4302a?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T03:53:40.8872814+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"d10517f2-61ac-4334-be15-33f57c1bd413\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:21:33.2136043+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"14d014c1-917d-44dd-a502-9879acd4302a\"\r\n}" headers: cache-control: - no-cache @@ -1723,7 +1723,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:57:44 GMT + - Wed, 14 Apr 2021 09:25:36 GMT expires: - '-1' pragma: @@ -1740,7 +1740,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4094 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4177 status: code: 200 message: OK @@ -1758,13 +1758,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d10517f2-61ac-4334-be15-33f57c1bd413?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/14d014c1-917d-44dd-a502-9879acd4302a?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T03:53:40.8872814+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"d10517f2-61ac-4334-be15-33f57c1bd413\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:21:33.2136043+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"14d014c1-917d-44dd-a502-9879acd4302a\"\r\n}" headers: cache-control: - no-cache @@ -1773,7 +1773,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:58:44 GMT + - Wed, 14 Apr 2021 09:26:37 GMT expires: - '-1' pragma: @@ -1790,7 +1790,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4090 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4173 status: code: 200 message: OK @@ -1808,13 +1808,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d10517f2-61ac-4334-be15-33f57c1bd413?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/14d014c1-917d-44dd-a502-9879acd4302a?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T03:53:40.8872814+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"d10517f2-61ac-4334-be15-33f57c1bd413\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:21:33.2136043+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"14d014c1-917d-44dd-a502-9879acd4302a\"\r\n}" headers: cache-control: - no-cache @@ -1823,7 +1823,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:59:45 GMT + - Wed, 14 Apr 2021 09:27:38 GMT expires: - '-1' pragma: @@ -1840,7 +1840,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4086 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4169 status: code: 200 message: OK @@ -1858,13 +1858,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d10517f2-61ac-4334-be15-33f57c1bd413?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/14d014c1-917d-44dd-a502-9879acd4302a?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T03:53:40.8872814+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"d10517f2-61ac-4334-be15-33f57c1bd413\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:21:33.2136043+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"14d014c1-917d-44dd-a502-9879acd4302a\"\r\n}" headers: cache-control: - no-cache @@ -1873,7 +1873,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:00:44 GMT + - Wed, 14 Apr 2021 09:28:38 GMT expires: - '-1' pragma: @@ -1890,7 +1890,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4088 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4165 status: code: 200 message: OK @@ -1908,13 +1908,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d10517f2-61ac-4334-be15-33f57c1bd413?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/14d014c1-917d-44dd-a502-9879acd4302a?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T03:53:40.8872814+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"d10517f2-61ac-4334-be15-33f57c1bd413\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:21:33.2136043+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"14d014c1-917d-44dd-a502-9879acd4302a\"\r\n}" headers: cache-control: - no-cache @@ -1923,7 +1923,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:01:46 GMT + - Wed, 14 Apr 2021 09:29:39 GMT expires: - '-1' pragma: @@ -1940,7 +1940,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4085 + - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4163 status: code: 200 message: OK @@ -1958,14 +1958,64 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d10517f2-61ac-4334-be15-33f57c1bd413?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/14d014c1-917d-44dd-a502-9879acd4302a?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T03:53:40.8872814+00:00\",\r\n \"endTime\": - \"2021-04-09T04:02:41.5766932+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"d10517f2-61ac-4334-be15-33f57c1bd413\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:21:33.2136043+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"14d014c1-917d-44dd-a502-9879acd4302a\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 14 Apr 2021 09:30:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4160 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot + User-Agent: + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/14d014c1-917d-44dd-a502-9879acd4302a?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-04-14T09:21:33.2136043+00:00\",\r\n \"endTime\": + \"2021-04-14T09:31:41.0419379+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"14d014c1-917d-44dd-a502-9879acd4302a\"\r\n}" headers: cache-control: - no-cache @@ -1974,7 +2024,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:02:47 GMT + - Wed, 14 Apr 2021 09:31:40 GMT expires: - '-1' pragma: @@ -1991,7 +2041,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4081 + - Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4157 status: code: 200 message: OK @@ -2009,7 +2059,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2020-09-30 response: @@ -2020,7 +2070,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-09T03:53:40.9029298+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-14T09:21:33.229228+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": \"ReadWrite\",\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2030,11 +2080,11 @@ interactions: cache-control: - no-cache content-length: - - '1166' + - '1165' content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:02:47 GMT + - Wed, 14 Apr 2021 09:31:40 GMT expires: - '-1' pragma: @@ -2051,7 +2101,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1994,Microsoft.Compute/GetGalleryImageVersion30Min;9961 + - Microsoft.Compute/GetGalleryImageVersion3Min;1996,Microsoft.Compute/GetGalleryImageVersion30Min;9989 status: code: 200 message: OK @@ -2070,14 +2120,14 @@ interactions: - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2086,7 +2136,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:02:48 GMT + - Wed, 14 Apr 2021 09:31:42 GMT expires: - '-1' pragma: @@ -2114,7 +2164,7 @@ interactions: ParameterSetName: - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -2134,7 +2184,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:02:48 GMT + - Wed, 14 Apr 2021 09:31:42 GMT expires: - '-1' pragma: @@ -2151,7 +2201,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;590,Microsoft.Compute/GetGalleryImage30Min;2944 + - Microsoft.Compute/GetGalleryImage3Min;592,Microsoft.Compute/GetGalleryImage30Min;2980 status: code: 200 message: OK @@ -2169,7 +2219,7 @@ interactions: ParameterSetName: - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2020-09-30 response: @@ -2180,7 +2230,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-09T03:53:40.9029298+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-14T09:21:33.229228+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": \"ReadWrite\",\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2190,11 +2240,11 @@ interactions: cache-control: - no-cache content-length: - - '1166' + - '1165' content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:02:49 GMT + - Wed, 14 Apr 2021 09:31:42 GMT expires: - '-1' pragma: @@ -2211,7 +2261,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1993,Microsoft.Compute/GetGalleryImageVersion30Min;9960 + - Microsoft.Compute/GetGalleryImageVersion3Min;1995,Microsoft.Compute/GetGalleryImageVersion30Min;9988 status: code: 200 message: OK @@ -2229,21 +2279,21 @@ interactions: ParameterSetName: - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vm1VNET\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\r\n - \ \"etag\": \"W/\\\"26778bab-c605-4cb4-82b6-0d39983cbe6e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"e31d441e-e86d-4cf4-9f12-a7874ced3268\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"f86294a7-a038-481b-ac20-e1538e555978\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"d7138479-6c0b-40d5-abef-5ab10622733b\",\r\n \ \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n \ ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"vm1Subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\r\n - \ \"etag\": \"W/\\\"26778bab-c605-4cb4-82b6-0d39983cbe6e\\\"\",\r\n + \ \"etag\": \"W/\\\"e31d441e-e86d-4cf4-9f12-a7874ced3268\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n @@ -2259,7 +2309,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:02:49 GMT + - Wed, 14 Apr 2021 09:31:43 GMT expires: - '-1' pragma: @@ -2276,7 +2326,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 003203cd-a7d8-4ba6-97fc-bef91b7f542c + - 4536062a-7a1b-4891-b98c-46baa47dcb66 status: code: 200 message: OK @@ -2321,17 +2371,17 @@ interactions: - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_VTIt2irFp2hrPuZkLLZlDvrRP4lb6Ow0","name":"vm_deploy_VTIt2irFp2hrPuZkLLZlDvrRP4lb6Ow0","type":"Microsoft.Resources/deployments","properties":{"templateHash":"10034398040209273652","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-09T04:02:54.0279081Z","duration":"PT2.0418405S","correlationId":"3afb1876-2ffd-4887-aed1-edeb6844f5c9","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_5X8rLmmWK7UaA3NC8NiGdrP8Es77wemi","name":"vm_deploy_5X8rLmmWK7UaA3NC8NiGdrP8Es77wemi","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17322333019619755427","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-14T09:31:45.9893889Z","duration":"PT1.2178427S","correlationId":"fa7fe497-17ec-4164-a268-cc25484d9652","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_VTIt2irFp2hrPuZkLLZlDvrRP4lb6Ow0/operationStatuses/08585836659134915581?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_5X8rLmmWK7UaA3NC8NiGdrP8Es77wemi/operationStatuses/08585832141807060953?api-version=2020-10-01 cache-control: - no-cache content-length: @@ -2339,7 +2389,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:02:55 GMT + - Wed, 14 Apr 2021 09:31:46 GMT expires: - '-1' pragma: @@ -2349,7 +2399,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -2368,52 +2418,9 @@ interactions: - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836659134915581?api-version=2020-10-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 09 Apr 2021 04:03:25 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type - User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836659134915581?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585832141807060953?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -2425,7 +2432,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:03:56 GMT + - Wed, 14 Apr 2021 09:32:17 GMT expires: - '-1' pragma: @@ -2454,12 +2461,12 @@ interactions: - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_VTIt2irFp2hrPuZkLLZlDvrRP4lb6Ow0","name":"vm_deploy_VTIt2irFp2hrPuZkLLZlDvrRP4lb6Ow0","type":"Microsoft.Resources/deployments","properties":{"templateHash":"10034398040209273652","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-09T04:03:41.9973408Z","duration":"PT50.0112732S","correlationId":"3afb1876-2ffd-4887-aed1-edeb6844f5c9","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_5X8rLmmWK7UaA3NC8NiGdrP8Es77wemi","name":"vm_deploy_5X8rLmmWK7UaA3NC8NiGdrP8Es77wemi","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17322333019619755427","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-14T09:32:16.0813416Z","duration":"PT31.3097954S","correlationId":"fa7fe497-17ec-4164-a268-cc25484d9652","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"}]}}' headers: cache-control: - no-cache @@ -2468,7 +2475,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:03:57 GMT + - Wed, 14 Apr 2021 09:32:17 GMT expires: - '-1' pragma: @@ -2496,22 +2503,22 @@ interactions: ParameterSetName: - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2?$expand=instanceView&api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"vm2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"b3338194-6224-40e6-91e7-0b4db0be51bb\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"c39ba4f1-e0af-48d2-b294-d05d463c7f85\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0\",\r\n \ \"exactVersion\": \"1.0.0\"\r\n },\r\n \"osDisk\": {\r\n - \ \"osType\": \"Linux\",\r\n \"name\": \"vm2_OsDisk_1_0c1267b0373c411d9de28e5134d27ad8\",\r\n + \ \"osType\": \"Linux\",\r\n \"name\": \"vm2_OsDisk_1_224cb12d96f24c5e9ad267f4ebd07826\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm2_OsDisk_1_0c1267b0373c411d9de28e5134d27ad8\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm2_OsDisk_1_224cb12d96f24c5e9ad267f4ebd07826\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\"}]},\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": @@ -2519,18 +2526,18 @@ interactions: \ {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \ \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet - populated.\",\r\n \"time\": \"2021-04-09T04:03:57+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2021-04-14T09:32:19+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"vm2_OsDisk_1_0c1267b0373c411d9de28e5134d27ad8\",\r\n \"statuses\": + \"vm2_OsDisk_1_224cb12d96f24c5e9ad267f4ebd07826\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-09T04:03:19.8118207+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-14T09:32:04.8636808+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"OSState/specialized\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM specialized\"\r\n \ },\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-09T04:03:40.4690526+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-14T09:32:12.7547238+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n \ }\r\n ]\r\n }\r\n }\r\n}" @@ -2542,7 +2549,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:03:57 GMT + - Wed, 14 Apr 2021 09:32:18 GMT expires: - '-1' pragma: @@ -2559,7 +2566,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3979,Microsoft.Compute/LowCostGet30Min;31755 + - Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31974 status: code: 200 message: OK @@ -2577,18 +2584,18 @@ interactions: ParameterSetName: - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"vm2VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\",\r\n - \ \"etag\": \"W/\\\"106ed6d6-d5f0-4448-8c35-dfe762c543a8\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"fbf00fcc-9144-4088-a231-63fa8273915b\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"0ffa3251-e043-4ebc-b760-93cac1657914\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"b81795a4-629f-47da-9e04-cdeb687882a3\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm2\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2\",\r\n - \ \"etag\": \"W/\\\"106ed6d6-d5f0-4448-8c35-dfe762c543a8\\\"\",\r\n + \ \"etag\": \"W/\\\"fbf00fcc-9144-4088-a231-63fa8273915b\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": @@ -2597,8 +2604,8 @@ interactions: \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": - \"u4kgf4byuanurlba2fjy2vkzpa.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-22-48-09-8B-85\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"pgcbhvylntkubk5plkyqmitthd.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-31-20-BD\",\r\n \"enableAcceleratedNetworking\": false,\r\n \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -2612,9 +2619,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:03:57 GMT + - Wed, 14 Apr 2021 09:32:19 GMT etag: - - W/"106ed6d6-d5f0-4448-8c35-dfe762c543a8" + - W/"fbf00fcc-9144-4088-a231-63fa8273915b" expires: - '-1' pragma: @@ -2631,7 +2638,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 08c17171-c70c-476f-81f2-8c51b11693f1 + - 15e01164-b351-466f-88cf-bd125939ef56 status: code: 200 message: OK @@ -2649,16 +2656,16 @@ interactions: ParameterSetName: - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"vm2PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\",\r\n - \ \"etag\": \"W/\\\"4c7f5f8b-0fb7-4211-84fe-b11ae2d21352\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"a19d52be-7aeb-4168-9dd2-7106129b0ab1\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"633777e9-4ecb-48e1-88a1-8e7c5ccdd8e4\",\r\n - \ \"ipAddress\": \"13.91.219.60\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"97820ae1-c2f3-4eb6-a48a-522b34129ad1\",\r\n + \ \"ipAddress\": \"137.135.57.99\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n @@ -2667,13 +2674,13 @@ interactions: cache-control: - no-cache content-length: - - '996' + - '997' content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:03:57 GMT + - Wed, 14 Apr 2021 09:32:19 GMT etag: - - W/"4c7f5f8b-0fb7-4211-84fe-b11ae2d21352" + - W/"a19d52be-7aeb-4168-9dd2-7106129b0ab1" expires: - '-1' pragma: @@ -2690,7 +2697,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b20d27f5-485f-4758-978f-9fc939aed6f2 + - 488d0e7d-e3f1-405b-8d26-e85d6ef46f07 status: code: 200 message: OK @@ -2709,14 +2716,14 @@ interactions: - -g -n --image --specialized --admin-username --admin-password --authentication-type User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2725,7 +2732,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:03:58 GMT + - Wed, 14 Apr 2021 09:32:20 GMT expires: - '-1' pragma: @@ -2753,7 +2760,7 @@ interactions: ParameterSetName: - -g -n --image --specialized --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -2773,7 +2780,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:03:59 GMT + - Wed, 14 Apr 2021 09:32:20 GMT expires: - '-1' pragma: @@ -2790,7 +2797,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;586,Microsoft.Compute/GetGalleryImage30Min;2939 + - Microsoft.Compute/GetGalleryImage3Min;589,Microsoft.Compute/GetGalleryImage30Min;2977 status: code: 200 message: OK @@ -2808,7 +2815,7 @@ interactions: ParameterSetName: - -g -n --image --specialized --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2020-09-30 response: @@ -2819,7 +2826,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-09T03:53:40.9029298+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-14T09:21:33.229228+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": \"ReadWrite\",\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2829,11 +2836,11 @@ interactions: cache-control: - no-cache content-length: - - '1166' + - '1165' content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:04:00 GMT + - Wed, 14 Apr 2021 09:32:20 GMT expires: - '-1' pragma: @@ -2850,7 +2857,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1988,Microsoft.Compute/GetGalleryImageVersion30Min;9953 + - Microsoft.Compute/GetGalleryImageVersion3Min;1992,Microsoft.Compute/GetGalleryImageVersion30Min;9985 status: code: 200 message: OK @@ -2868,21 +2875,21 @@ interactions: ParameterSetName: - -g -n --image --specialized --admin-username --admin-password --authentication-type User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vm1VNET\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\r\n - \ \"etag\": \"W/\\\"625484df-741c-4877-8bef-ef80b554850b\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"e1098bcf-f426-47fa-af4a-054c749d5ad0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"f86294a7-a038-481b-ac20-e1538e555978\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"d7138479-6c0b-40d5-abef-5ab10622733b\",\r\n \ \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n \ ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"vm1Subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\r\n - \ \"etag\": \"W/\\\"625484df-741c-4877-8bef-ef80b554850b\\\"\",\r\n + \ \"etag\": \"W/\\\"e1098bcf-f426-47fa-af4a-054c749d5ad0\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n @@ -2899,7 +2906,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:03:59 GMT + - Wed, 14 Apr 2021 09:32:22 GMT expires: - '-1' pragma: @@ -2916,7 +2923,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9abaedc1-14bf-4036-ba9b-f2e8fac6dc72 + - 1fbebadf-c8cc-4df2-b3d2-b44d663d418d status: code: 200 message: OK @@ -2944,8 +2951,8 @@ interactions: null}}, "virtualMachineProfile": {"storageProfile": {"osDisk": {"createOption": "FromImage", "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0"}}, - "networkProfile": {"networkInterfaceConfigurations": [{"name": "vmss10f7dNic", - "properties": {"primary": "true", "ipConfigurations": [{"name": "vmss10f7dIPConfig", + "networkProfile": {"networkInterfaceConfigurations": [{"name": "vmss1817cNic", + "properties": {"primary": "true", "ipConfigurations": [{"name": "vmss1817cIPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"}, "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}], "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}}, @@ -2970,25 +2977,25 @@ interactions: - -g -n --image --specialized --admin-username --admin-password --authentication-type User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_R2aF4wv40y6zs6EhcBGAGtWqhZtNhc6A","name":"vmss_deploy_R2aF4wv40y6zs6EhcBGAGtWqhZtNhc6A","type":"Microsoft.Resources/deployments","properties":{"templateHash":"3327261582343558237","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-09T04:04:05.6231513Z","duration":"PT2.6666173S","correlationId":"80be6578-c10e-4007-8362-796d89bc0019","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_uP02kfrC6GWb3hAEKlfprWHMdWWR4mMB","name":"vmss_deploy_uP02kfrC6GWb3hAEKlfprWHMdWWR4mMB","type":"Microsoft.Resources/deployments","properties":{"templateHash":"18003282430716128804","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-14T09:32:26.4982685Z","duration":"PT1.5913391S","correlationId":"3fc7375f-1ee1-457b-8a63-ae9e463187bd","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_R2aF4wv40y6zs6EhcBGAGtWqhZtNhc6A/operationStatuses/08585836658425210899?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_uP02kfrC6GWb3hAEKlfprWHMdWWR4mMB/operationStatuses/08585832141405707003?api-version=2020-10-01 cache-control: - no-cache content-length: - - '2105' + - '2106' content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:04:06 GMT + - Wed, 14 Apr 2021 09:32:28 GMT expires: - '-1' pragma: @@ -2998,7 +3005,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' status: code: 201 message: Created @@ -3017,9 +3024,9 @@ interactions: - -g -n --image --specialized --admin-username --admin-password --authentication-type User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836658425210899?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585832141405707003?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -3031,7 +3038,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:04:38 GMT + - Wed, 14 Apr 2021 09:32:58 GMT expires: - '-1' pragma: @@ -3060,9 +3067,9 @@ interactions: - -g -n --image --specialized --admin-username --admin-password --authentication-type User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836658425210899?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585832141405707003?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -3074,7 +3081,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:05:09 GMT + - Wed, 14 Apr 2021 09:33:29 GMT expires: - '-1' pragma: @@ -3103,21 +3110,21 @@ interactions: - -g -n --image --specialized --admin-username --admin-password --authentication-type User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_R2aF4wv40y6zs6EhcBGAGtWqhZtNhc6A","name":"vmss_deploy_R2aF4wv40y6zs6EhcBGAGtWqhZtNhc6A","type":"Microsoft.Resources/deployments","properties":{"templateHash":"3327261582343558237","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-09T04:04:50.3587845Z","duration":"PT47.4022505S","correlationId":"80be6578-c10e-4007-8362-796d89bc0019","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual","rollingUpgradePolicy":{"maxBatchInstancePercent":20,"maxUnhealthyInstancePercent":20,"maxUnhealthyUpgradedInstancePercent":20,"pauseTimeBetweenBatches":"PT0S"}},"virtualMachineProfile":{"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss10f7dNic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss10f7dIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"501d11c2-20e7-4e97-b28f-f803af88695c"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_uP02kfrC6GWb3hAEKlfprWHMdWWR4mMB","name":"vmss_deploy_uP02kfrC6GWb3hAEKlfprWHMdWWR4mMB","type":"Microsoft.Resources/deployments","properties":{"templateHash":"18003282430716128804","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-14T09:33:03.6834872Z","duration":"PT38.7765578S","correlationId":"3fc7375f-1ee1-457b-8a63-ae9e463187bd","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual","rollingUpgradePolicy":{"maxBatchInstancePercent":20,"maxUnhealthyInstancePercent":20,"maxUnhealthyUpgradedInstancePercent":20,"pauseTimeBetweenBatches":"PT0S"}},"virtualMachineProfile":{"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss1817cNic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss1817cIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"07188822-2d2d-4d5b-9d05-b233be15fba6"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"}]}}' headers: cache-control: - no-cache content-length: - - '4688' + - '4689' content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:05:10 GMT + - Wed, 14 Apr 2021 09:33:30 GMT expires: - '-1' pragma: @@ -3146,14 +3153,14 @@ interactions: - -g -n --specialized User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3162,7 +3169,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:05:11 GMT + - Wed, 14 Apr 2021 09:33:31 GMT expires: - '-1' pragma: @@ -3191,14 +3198,14 @@ interactions: - -g -n --specialized User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3207,7 +3214,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 04:05:10 GMT + - Wed, 14 Apr 2021 09:33:31 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_disk_max_shares_etc.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_disk_max_shares_etc.yaml index 4d5ca817edd..97feda36c76 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_disk_max_shares_etc.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_disk_max_shares_etc.yaml @@ -14,14 +14,14 @@ interactions: - -g -n --size-gb --sku --disk-iops-read-only --disk-mbps-read-only User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:51:03 GMT + - Wed, 14 Apr 2021 09:18:57 GMT expires: - '-1' pragma: @@ -64,9 +64,9 @@ interactions: ParameterSetName: - -g -n --size-gb --sku --disk-iops-read-only --disk-mbps-read-only User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"d1\",\r\n \"location\": \"westus\",\r\n \"tags\": @@ -78,7 +78,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/616c50fa-60c4-497d-a5e7-4296b5db1a8d?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/44835d65-bb8c-45b8-9efe-c228052f6d1d?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -86,11 +86,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:51:08 GMT + - Wed, 14 Apr 2021 09:19:02 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/616c50fa-60c4-497d-a5e7-4296b5db1a8d?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/44835d65-bb8c-45b8-9efe-c228052f6d1d?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -101,7 +101,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7992 + - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -121,13 +121,13 @@ interactions: ParameterSetName: - -g -n --size-gb --sku --disk-iops-read-only --disk-mbps-read-only User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/616c50fa-60c4-497d-a5e7-4296b5db1a8d?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/44835d65-bb8c-45b8-9efe-c228052f6d1d?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T03:51:08.9054118+00:00\",\r\n \"endTime\": - \"2021-04-09T03:51:09.8741975+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-14T09:19:02.5374391+00:00\",\r\n \"endTime\": + \"2021-04-14T09:19:03.5374434+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n @@ -137,11 +137,11 @@ interactions: 10,\r\n \"diskIOPSReadWrite\": 100,\r\n \"diskMBpsReadWrite\": 13,\r\n \ \"readOnly\": false,\r\n \"diskIOPSReadOnly\": 200,\r\n \"diskMBpsReadOnly\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-09T03:51:08.9054118+00:00\",\r\n + \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-14T09:19:02.5374391+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"0e55e8d0-d2c4-4512-a7ee-2a874d618502\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"5aaea554-9d16-453e-a7d2-f94700b25cb3\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"616c50fa-60c4-497d-a5e7-4296b5db1a8d\"\r\n}" + \"44835d65-bb8c-45b8-9efe-c228052f6d1d\"\r\n}" headers: cache-control: - no-cache @@ -150,7 +150,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:51:10 GMT + - Wed, 14 Apr 2021 09:19:04 GMT expires: - '-1' pragma: @@ -167,7 +167,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49992,Microsoft.Compute/GetOperation30Min;399889 + - Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399999 status: code: 200 message: OK @@ -185,9 +185,9 @@ interactions: ParameterSetName: - -g -n --size-gb --sku --disk-iops-read-only --disk-mbps-read-only User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"d1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1\",\r\n @@ -198,9 +198,9 @@ interactions: 10,\r\n \"diskIOPSReadWrite\": 100,\r\n \"diskMBpsReadWrite\": 13,\r\n \ \"readOnly\": false,\r\n \"diskIOPSReadOnly\": 200,\r\n \"diskMBpsReadOnly\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-09T03:51:08.9054118+00:00\",\r\n + \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-14T09:19:02.5374391+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"0e55e8d0-d2c4-4512-a7ee-2a874d618502\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"5aaea554-9d16-453e-a7d2-f94700b25cb3\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -210,7 +210,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:51:10 GMT + - Wed, 14 Apr 2021 09:19:04 GMT expires: - '-1' pragma: @@ -227,7 +227,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4989,Microsoft.Compute/LowCostGet30Min;39881 + - Microsoft.Compute/LowCostGet3Min;4992,Microsoft.Compute/LowCostGet30Min;39990 status: code: 200 message: OK @@ -245,9 +245,9 @@ interactions: ParameterSetName: - -g -n --disk-iops-read-only --disk-mbps-read-only User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"d1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1\",\r\n @@ -258,9 +258,9 @@ interactions: 10,\r\n \"diskIOPSReadWrite\": 100,\r\n \"diskMBpsReadWrite\": 13,\r\n \ \"readOnly\": false,\r\n \"diskIOPSReadOnly\": 200,\r\n \"diskMBpsReadOnly\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-09T03:51:08.9054118+00:00\",\r\n + \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-14T09:19:02.5374391+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"0e55e8d0-d2c4-4512-a7ee-2a874d618502\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"5aaea554-9d16-453e-a7d2-f94700b25cb3\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -270,7 +270,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:51:12 GMT + - Wed, 14 Apr 2021 09:19:05 GMT expires: - '-1' pragma: @@ -287,7 +287,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4988,Microsoft.Compute/LowCostGet30Min;39880 + - Microsoft.Compute/LowCostGet3Min;4991,Microsoft.Compute/LowCostGet30Min;39989 status: code: 200 message: OK @@ -313,9 +313,9 @@ interactions: ParameterSetName: - -g -n --disk-iops-read-only --disk-mbps-read-only User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"d1\",\r\n \"location\": \"westus\",\r\n \"tags\": @@ -329,7 +329,7 @@ interactions: \ \"faultDomain\": 0,\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/93718fe6-2e62-4878-a406-0ca5fe9b0fe4?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/e7dd0666-1534-47ae-ad70-2a27e8522b49?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -337,11 +337,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:51:13 GMT + - Wed, 14 Apr 2021 09:19:06 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/93718fe6-2e62-4878-a406-0ca5fe9b0fe4?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/e7dd0666-1534-47ae-ad70-2a27e8522b49?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -352,7 +352,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7991 + - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7998 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -372,13 +372,13 @@ interactions: ParameterSetName: - -g -n --disk-iops-read-only --disk-mbps-read-only User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/93718fe6-2e62-4878-a406-0ca5fe9b0fe4?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/e7dd0666-1534-47ae-ad70-2a27e8522b49?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T03:51:13.9991757+00:00\",\r\n \"endTime\": - \"2021-04-09T03:51:14.1241887+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-14T09:19:07.1624273+00:00\",\r\n \"endTime\": + \"2021-04-14T09:19:07.3186674+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n @@ -388,11 +388,11 @@ interactions: 10,\r\n \"diskIOPSReadWrite\": 100,\r\n \"diskMBpsReadWrite\": 13,\r\n \ \"readOnly\": false,\r\n \"diskIOPSReadOnly\": 250,\r\n \"diskMBpsReadOnly\": 40,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-09T03:51:08.9054118+00:00\",\r\n + \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-14T09:19:02.5374391+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"0e55e8d0-d2c4-4512-a7ee-2a874d618502\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"5aaea554-9d16-453e-a7d2-f94700b25cb3\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"93718fe6-2e62-4878-a406-0ca5fe9b0fe4\"\r\n}" + \"e7dd0666-1534-47ae-ad70-2a27e8522b49\"\r\n}" headers: cache-control: - no-cache @@ -401,7 +401,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:51:15 GMT + - Wed, 14 Apr 2021 09:19:09 GMT expires: - '-1' pragma: @@ -418,7 +418,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49990,Microsoft.Compute/GetOperation30Min;399887 + - Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399997 status: code: 200 message: OK @@ -436,9 +436,9 @@ interactions: ParameterSetName: - -g -n --disk-iops-read-only --disk-mbps-read-only User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"d1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1\",\r\n @@ -449,9 +449,9 @@ interactions: 10,\r\n \"diskIOPSReadWrite\": 100,\r\n \"diskMBpsReadWrite\": 13,\r\n \ \"readOnly\": false,\r\n \"diskIOPSReadOnly\": 250,\r\n \"diskMBpsReadOnly\": 40,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-09T03:51:08.9054118+00:00\",\r\n + \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-14T09:19:02.5374391+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"0e55e8d0-d2c4-4512-a7ee-2a874d618502\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"5aaea554-9d16-453e-a7d2-f94700b25cb3\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -461,7 +461,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:51:16 GMT + - Wed, 14 Apr 2021 09:19:09 GMT expires: - '-1' pragma: @@ -478,7 +478,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4985,Microsoft.Compute/LowCostGet30Min;39877 + - Microsoft.Compute/LowCostGet3Min;4989,Microsoft.Compute/LowCostGet30Min;39987 status: code: 200 message: OK @@ -497,14 +497,14 @@ interactions: - -g -n --image-reference User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -513,7 +513,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:51:16 GMT + - Wed, 14 Apr 2021 09:19:09 GMT expires: - '-1' pragma: @@ -546,9 +546,9 @@ interactions: ParameterSetName: - -g -n --image-reference User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d2?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d2?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"d2\",\r\n \"location\": \"westus\",\r\n \"tags\": @@ -560,7 +560,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/97b958a6-53a8-4589-9e20-3a2dbdf87108?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/e12b2c32-1784-414e-83d5-9c100a52d089?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -568,11 +568,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:51:20 GMT + - Wed, 14 Apr 2021 09:19:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/97b958a6-53a8-4589-9e20-3a2dbdf87108?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/e12b2c32-1784-414e-83d5-9c100a52d089?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -583,7 +583,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7990 + - Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7997 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -603,13 +603,13 @@ interactions: ParameterSetName: - -g -n --image-reference User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/97b958a6-53a8-4589-9e20-3a2dbdf87108?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/e12b2c32-1784-414e-83d5-9c100a52d089?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T03:51:21.1710333+00:00\",\r\n \"endTime\": - \"2021-04-09T03:51:21.936692+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-14T09:19:15.0687122+00:00\",\r\n \"endTime\": + \"2021-04-14T09:19:15.8968175+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d2\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n @@ -619,20 +619,20 @@ interactions: \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202002180\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-09T03:51:21.1866783+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-14T09:19:15.0999485+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"20f20fbd-1b2c-4446-8bff-0f09b33730d5\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"5b4bf4e4-c621-4ce5-8660-33060158b4df\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"97b958a6-53a8-4589-9e20-3a2dbdf87108\"\r\n}" + \ },\r\n \"name\": \"e12b2c32-1784-414e-83d5-9c100a52d089\"\r\n}" headers: cache-control: - no-cache content-length: - - '1423' + - '1424' content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:51:23 GMT + - Wed, 14 Apr 2021 09:19:17 GMT expires: - '-1' pragma: @@ -649,7 +649,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49988,Microsoft.Compute/GetOperation30Min;399885 + - Microsoft.Compute/GetOperation3Min;49995,Microsoft.Compute/GetOperation30Min;399995 status: code: 200 message: OK @@ -667,9 +667,9 @@ interactions: ParameterSetName: - -g -n --image-reference User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d2?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d2?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"d2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d2\",\r\n @@ -680,9 +680,9 @@ interactions: \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202002180\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-09T03:51:21.1866783+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-14T09:19:15.0999485+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"20f20fbd-1b2c-4446-8bff-0f09b33730d5\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"5b4bf4e4-c621-4ce5-8660-33060158b4df\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}" headers: cache-control: @@ -692,7 +692,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:51:23 GMT + - Wed, 14 Apr 2021 09:19:17 GMT expires: - '-1' pragma: @@ -709,7 +709,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4982,Microsoft.Compute/LowCostGet30Min;39874 + - Microsoft.Compute/LowCostGet3Min;4985,Microsoft.Compute/LowCostGet30Min;39983 status: code: 200 message: OK @@ -728,14 +728,14 @@ interactions: - -g -n --image-reference User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -744,7 +744,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:51:24 GMT + - Wed, 14 Apr 2021 09:19:18 GMT expires: - '-1' pragma: @@ -772,7 +772,7 @@ interactions: ParameterSetName: - -g -n --image-reference User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202002180?api-version=2020-12-01 response: @@ -792,7 +792,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:51:25 GMT + - Wed, 14 Apr 2021 09:19:19 GMT expires: - '-1' pragma: @@ -809,7 +809,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73993 + - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73998 status: code: 200 message: OK @@ -832,9 +832,9 @@ interactions: ParameterSetName: - -g -n --image-reference User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d3?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d3?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"d3\",\r\n \"location\": \"westus\",\r\n \"tags\": @@ -846,7 +846,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/55ed8aa6-c403-4aa6-9532-ff75b3159139?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4389f8e2-1fd8-4cfb-a1d3-99088d9b028f?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -854,11 +854,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:51:29 GMT + - Wed, 14 Apr 2021 09:19:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/55ed8aa6-c403-4aa6-9532-ff75b3159139?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4389f8e2-1fd8-4cfb-a1d3-99088d9b028f?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -869,7 +869,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;996,Microsoft.Compute/CreateUpdateDisks30Min;7989 + - Microsoft.Compute/CreateUpdateDisks3Min;996,Microsoft.Compute/CreateUpdateDisks30Min;7996 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -889,13 +889,13 @@ interactions: ParameterSetName: - -g -n --image-reference User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/55ed8aa6-c403-4aa6-9532-ff75b3159139?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4389f8e2-1fd8-4cfb-a1d3-99088d9b028f?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T03:51:30.1866723+00:00\",\r\n \"endTime\": - \"2021-04-09T03:51:30.6709797+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-14T09:19:24.7249321+00:00\",\r\n \"endTime\": + \"2021-04-14T09:19:25.3655392+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d3\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n @@ -905,11 +905,11 @@ interactions: \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202002180\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-09T03:51:30.1866723+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-14T09:19:24.7405363+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"08906c81-022c-4fe0-9d27-2f10f20591d2\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"1f96c928-6ec5-4ec2-b6b1-373e6449cd31\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"55ed8aa6-c403-4aa6-9532-ff75b3159139\"\r\n}" + \ },\r\n \"name\": \"4389f8e2-1fd8-4cfb-a1d3-99088d9b028f\"\r\n}" headers: cache-control: - no-cache @@ -918,7 +918,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:51:32 GMT + - Wed, 14 Apr 2021 09:19:26 GMT expires: - '-1' pragma: @@ -935,7 +935,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399883 + - Microsoft.Compute/GetOperation3Min;49993,Microsoft.Compute/GetOperation30Min;399993 status: code: 200 message: OK @@ -953,9 +953,9 @@ interactions: ParameterSetName: - -g -n --image-reference User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d3?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d3?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"d3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d3\",\r\n @@ -966,9 +966,9 @@ interactions: \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202002180\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-09T03:51:30.1866723+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-14T09:19:24.7405363+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"08906c81-022c-4fe0-9d27-2f10f20591d2\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"1f96c928-6ec5-4ec2-b6b1-373e6449cd31\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}" headers: cache-control: @@ -978,7 +978,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:51:32 GMT + - Wed, 14 Apr 2021 09:19:26 GMT expires: - '-1' pragma: @@ -995,7 +995,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4983,Microsoft.Compute/LowCostGet30Min;39871 + - Microsoft.Compute/LowCostGet3Min;4982,Microsoft.Compute/LowCostGet30Min;39980 status: code: 200 message: OK @@ -1014,14 +1014,14 @@ interactions: - -g --gallery-name User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1030,7 +1030,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:51:33 GMT + - Wed, 14 Apr 2021 09:19:28 GMT expires: - '-1' pragma: @@ -1062,7 +1062,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002?api-version=2019-12-01 response: @@ -1070,11 +1070,11 @@ interactions: string: "{\r\n \"name\": \"g1000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-G1NQTXVXFYJABJZW6GEG\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-G1J5TXJMLJA466XI2WUW\"\r\n },\r\n \ \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/cc0bdf08-4630-4baa-b07d-e07aa31f2a03?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/254eea48-ef90-41d3-bcec-d0501b346f6b?api-version=2019-12-01 cache-control: - no-cache content-length: @@ -1082,7 +1082,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:51:39 GMT + - Wed, 14 Apr 2021 09:19:34 GMT expires: - '-1' pragma: @@ -1095,7 +1095,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGallery3Min;48,Microsoft.Compute/CreateUpdateGallery30Min;296 + - Microsoft.Compute/CreateUpdateGallery3Min;48,Microsoft.Compute/CreateUpdateGallery30Min;298 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1115,14 +1115,14 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/cc0bdf08-4630-4baa-b07d-e07aa31f2a03?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/254eea48-ef90-41d3-bcec-d0501b346f6b?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T03:51:38.8871452+00:00\",\r\n \"endTime\": - \"2021-04-09T03:51:38.9965193+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"cc0bdf08-4630-4baa-b07d-e07aa31f2a03\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:19:33.1979338+00:00\",\r\n \"endTime\": + \"2021-04-14T09:19:33.3073089+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"254eea48-ef90-41d3-bcec-d0501b346f6b\"\r\n}" headers: cache-control: - no-cache @@ -1131,7 +1131,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:52:10 GMT + - Wed, 14 Apr 2021 09:20:04 GMT expires: - '-1' pragma: @@ -1148,7 +1148,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4112 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4195 status: code: 200 message: OK @@ -1166,7 +1166,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002?api-version=2019-12-01 response: @@ -1174,7 +1174,7 @@ interactions: string: "{\r\n \"name\": \"g1000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-G1NQTXVXFYJABJZW6GEG\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-G1J5TXJMLJA466XI2WUW\"\r\n },\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -1184,7 +1184,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:52:10 GMT + - Wed, 14 Apr 2021 09:20:04 GMT expires: - '-1' pragma: @@ -1201,7 +1201,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGallery3Min;335,Microsoft.Compute/GetGallery30Min;2455 + - Microsoft.Compute/GetGallery3Min;342,Microsoft.Compute/GetGallery30Min;2492 status: code: 200 message: OK @@ -1221,14 +1221,14 @@ interactions: --hyper-v-generation User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1237,7 +1237,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:52:11 GMT + - Wed, 14 Apr 2021 09:20:04 GMT expires: - '-1' pragma: @@ -1273,7 +1273,7 @@ interactions: - -g --gallery-name --gallery-image-definition --os-type -p -f -s --features --hyper-v-generation User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image?api-version=2020-09-30 response: @@ -1288,7 +1288,7 @@ interactions: \ },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/5d4fb648-2efd-4622-94cb-f7cc6ac7ae87?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/dcfd0f8e-ebdf-41e4-9861-cf3fb85d572c?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -1296,7 +1296,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:52:17 GMT + - Wed, 14 Apr 2021 09:20:11 GMT expires: - '-1' pragma: @@ -1309,9 +1309,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImage3Min;148,Microsoft.Compute/CreateUpdateGalleryImage30Min;745 + - Microsoft.Compute/CreateUpdateGalleryImage3Min;148,Microsoft.Compute/CreateUpdateGalleryImage30Min;748 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -1330,14 +1330,14 @@ interactions: - -g --gallery-name --gallery-image-definition --os-type -p -f -s --features --hyper-v-generation User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/5d4fb648-2efd-4622-94cb-f7cc6ac7ae87?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/dcfd0f8e-ebdf-41e4-9861-cf3fb85d572c?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T03:52:16.5121958+00:00\",\r\n \"endTime\": - \"2021-04-09T03:52:16.6059468+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"5d4fb648-2efd-4622-94cb-f7cc6ac7ae87\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:20:10.7604229+00:00\",\r\n \"endTime\": + \"2021-04-14T09:20:10.9635306+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"dcfd0f8e-ebdf-41e4-9861-cf3fb85d572c\"\r\n}" headers: cache-control: - no-cache @@ -1346,7 +1346,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:52:48 GMT + - Wed, 14 Apr 2021 09:20:42 GMT expires: - '-1' pragma: @@ -1363,7 +1363,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4107 + - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4192 status: code: 200 message: OK @@ -1382,7 +1382,7 @@ interactions: - -g --gallery-name --gallery-image-definition --os-type -p -f -s --features --hyper-v-generation User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image?api-version=2020-09-30 response: @@ -1403,7 +1403,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:52:48 GMT + - Wed, 14 Apr 2021 09:20:43 GMT expires: - '-1' pragma: @@ -1420,7 +1420,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;589,Microsoft.Compute/GetGalleryImage30Min;2950 + - Microsoft.Compute/GetGalleryImage3Min;590,Microsoft.Compute/GetGalleryImage30Min;2990 status: code: 200 message: OK @@ -1439,14 +1439,14 @@ interactions: - -g -n --size-gb User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1455,7 +1455,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:52:49 GMT + - Wed, 14 Apr 2021 09:20:43 GMT expires: - '-1' pragma: @@ -1488,9 +1488,9 @@ interactions: ParameterSetName: - -g -n --size-gb User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"disk\",\r\n \"location\": \"westus\",\r\n \"tags\": @@ -1500,7 +1500,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/42c31bbc-afda-477d-ae03-c03ebc9bc96f?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/49538a73-e779-4292-b82e-f5475e163cda?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -1508,11 +1508,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:52:52 GMT + - Wed, 14 Apr 2021 09:20:47 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/42c31bbc-afda-477d-ae03-c03ebc9bc96f?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/49538a73-e779-4292-b82e-f5475e163cda?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -1523,7 +1523,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;995,Microsoft.Compute/CreateUpdateDisks30Min;7988 + - Microsoft.Compute/CreateUpdateDisks3Min;995,Microsoft.Compute/CreateUpdateDisks30Min;7995 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1543,13 +1543,13 @@ interactions: ParameterSetName: - -g -n --size-gb User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/42c31bbc-afda-477d-ae03-c03ebc9bc96f?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/49538a73-e779-4292-b82e-f5475e163cda?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T03:52:53.5624074+00:00\",\r\n \"endTime\": - \"2021-04-09T03:52:53.6561808+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-14T09:20:48.4436673+00:00\",\r\n \"endTime\": + \"2021-04-14T09:20:48.5374208+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"disk\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n @@ -1558,10 +1558,10 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-04-09T03:52:53.5624074+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-14T09:20:48.4436673+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"f708807b-4205-4db4-a0da-fdff0165fcdd\",\r\n \"networkAccessPolicy\": - \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"42c31bbc-afda-477d-ae03-c03ebc9bc96f\"\r\n}" + \ \"uniqueId\": \"133eab51-ec89-44d6-9a71-20d47486bd8e\",\r\n \"networkAccessPolicy\": + \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"49538a73-e779-4292-b82e-f5475e163cda\"\r\n}" headers: cache-control: - no-cache @@ -1570,7 +1570,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:52:55 GMT + - Wed, 14 Apr 2021 09:20:49 GMT expires: - '-1' pragma: @@ -1587,7 +1587,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49985,Microsoft.Compute/GetOperation30Min;399878 + - Microsoft.Compute/GetOperation3Min;49991,Microsoft.Compute/GetOperation30Min;399991 status: code: 200 message: OK @@ -1605,9 +1605,9 @@ interactions: ParameterSetName: - -g -n --size-gb User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"disk\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk\",\r\n @@ -1617,9 +1617,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-04-09T03:52:53.5624074+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-14T09:20:48.4436673+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"f708807b-4205-4db4-a0da-fdff0165fcdd\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"133eab51-ec89-44d6-9a71-20d47486bd8e\",\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: @@ -1629,7 +1629,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:52:55 GMT + - Wed, 14 Apr 2021 09:20:50 GMT expires: - '-1' pragma: @@ -1646,7 +1646,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4976,Microsoft.Compute/LowCostGet30Min;39862 + - Microsoft.Compute/LowCostGet3Min;4980,Microsoft.Compute/LowCostGet30Min;39975 status: code: 200 message: OK @@ -1664,7 +1664,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/disk?api-version=2020-05-01 response: @@ -1680,7 +1680,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:52:56 GMT + - Wed, 14 Apr 2021 09:20:51 GMT expires: - '-1' pragma: @@ -1708,9 +1708,9 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"disk\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk\",\r\n @@ -1720,9 +1720,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-04-09T03:52:53.5624074+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-14T09:20:48.4436673+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"f708807b-4205-4db4-a0da-fdff0165fcdd\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"133eab51-ec89-44d6-9a71-20d47486bd8e\",\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: @@ -1732,7 +1732,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:52:57 GMT + - Wed, 14 Apr 2021 09:20:52 GMT expires: - '-1' pragma: @@ -1749,7 +1749,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4975,Microsoft.Compute/LowCostGet30Min;39861 + - Microsoft.Compute/LowCostGet3Min;4979,Microsoft.Compute/LowCostGet30Min;39974 status: code: 200 message: OK @@ -1768,14 +1768,14 @@ interactions: - -g -n --source User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1784,7 +1784,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:52:57 GMT + - Wed, 14 Apr 2021 09:20:53 GMT expires: - '-1' pragma: @@ -1817,7 +1817,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 response: @@ -1825,12 +1825,12 @@ interactions: string: "{\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \ \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk\",\r\n - \ \"sourceUniqueId\": \"f708807b-4205-4db4-a0da-fdff0165fcdd\"\r\n },\r\n + \ \"sourceUniqueId\": \"133eab51-ec89-44d6-9a71-20d47486bd8e\"\r\n },\r\n \ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/3aaad6d6-71f4-4ee3-bc46-0f7b860d1b2f?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/c0785906-d65e-4985-adce-5e82a96d3b3c?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1838,11 +1838,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:53:01 GMT + - Wed, 14 Apr 2021 09:20:57 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/3aaad6d6-71f4-4ee3-bc46-0f7b860d1b2f?monitor=true&api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/c0785906-d65e-4985-adce-5e82a96d3b3c?monitor=true&api-version=2020-05-01 pragma: - no-cache server: @@ -1853,7 +1853,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7995 + - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7999 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1873,26 +1873,26 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/3aaad6d6-71f4-4ee3-bc46-0f7b860d1b2f?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/c0785906-d65e-4985-adce-5e82a96d3b3c?api-version=2020-05-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T03:53:01.8906219+00:00\",\r\n \"endTime\": - \"2021-04-09T03:53:02.6875086+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-14T09:20:58.4436368+00:00\",\r\n \"endTime\": + \"2021-04-14T09:20:59.2248818+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1\",\r\n \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk\",\r\n - \ \"sourceUniqueId\": \"f708807b-4205-4db4-a0da-fdff0165fcdd\"\r\n },\r\n + \ \"sourceUniqueId\": \"133eab51-ec89-44d6-9a71-20d47486bd8e\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-09T03:53:01.8906219+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-14T09:20:58.4436368+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"0d227e66-890a-4e67-8df7-83bbabad3d5f\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"c656dbdf-cb32-408c-8c41-33874674abcc\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"3aaad6d6-71f4-4ee3-bc46-0f7b860d1b2f\"\r\n}" + \"c0785906-d65e-4985-adce-5e82a96d3b3c\"\r\n}" headers: cache-control: - no-cache @@ -1901,7 +1901,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:53:03 GMT + - Wed, 14 Apr 2021 09:20:59 GMT expires: - '-1' pragma: @@ -1918,7 +1918,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49985,Microsoft.Compute/GetOperation30Min;399876 + - Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399989 status: code: 200 message: OK @@ -1936,7 +1936,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 response: @@ -1946,11 +1946,11 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk\",\r\n - \ \"sourceUniqueId\": \"f708807b-4205-4db4-a0da-fdff0165fcdd\"\r\n },\r\n + \ \"sourceUniqueId\": \"133eab51-ec89-44d6-9a71-20d47486bd8e\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-09T03:53:01.8906219+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-14T09:20:58.4436368+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"0d227e66-890a-4e67-8df7-83bbabad3d5f\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"c656dbdf-cb32-408c-8c41-33874674abcc\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -1960,7 +1960,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:53:03 GMT + - Wed, 14 Apr 2021 09:21:00 GMT expires: - '-1' pragma: @@ -1977,7 +1977,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4974,Microsoft.Compute/LowCostGet30Min;39858 + - Microsoft.Compute/LowCostGet3Min;4979,Microsoft.Compute/LowCostGet30Min;39970 status: code: 200 message: OK @@ -1996,14 +1996,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2012,7 +2012,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:53:04 GMT + - Wed, 14 Apr 2021 09:21:01 GMT expires: - '-1' pragma: @@ -2046,7 +2046,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0?api-version=2020-09-30 response: @@ -2057,7 +2057,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-09T03:53:10.9029293+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-14T09:21:06.1042517+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"hostCaching\": \"ReadWrite\",\r\n \ \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2065,7 +2065,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/236791f3-652c-4794-9d70-905ff353b44c?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d0259c47-8596-48d4-afe6-a5278de6c4cf?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -2073,7 +2073,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:53:11 GMT + - Wed, 14 Apr 2021 09:21:07 GMT expires: - '-1' pragma: @@ -2086,9 +2086,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1195 + - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1199 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -2106,13 +2106,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/236791f3-652c-4794-9d70-905ff353b44c?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d0259c47-8596-48d4-afe6-a5278de6c4cf?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T03:53:10.9029293+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"236791f3-652c-4794-9d70-905ff353b44c\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:21:06.0886287+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d0259c47-8596-48d4-afe6-a5278de6c4cf\"\r\n}" headers: cache-control: - no-cache @@ -2121,7 +2121,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:54:12 GMT + - Wed, 14 Apr 2021 09:22:07 GMT expires: - '-1' pragma: @@ -2138,7 +2138,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;4103 + - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4190 status: code: 200 message: OK @@ -2156,13 +2156,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/236791f3-652c-4794-9d70-905ff353b44c?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d0259c47-8596-48d4-afe6-a5278de6c4cf?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T03:53:10.9029293+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"236791f3-652c-4794-9d70-905ff353b44c\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:21:06.0886287+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d0259c47-8596-48d4-afe6-a5278de6c4cf\"\r\n}" headers: cache-control: - no-cache @@ -2171,7 +2171,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:55:13 GMT + - Wed, 14 Apr 2021 09:23:08 GMT expires: - '-1' pragma: @@ -2188,7 +2188,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4104 + - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4187 status: code: 200 message: OK @@ -2206,13 +2206,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/236791f3-652c-4794-9d70-905ff353b44c?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d0259c47-8596-48d4-afe6-a5278de6c4cf?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T03:53:10.9029293+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"236791f3-652c-4794-9d70-905ff353b44c\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:21:06.0886287+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d0259c47-8596-48d4-afe6-a5278de6c4cf\"\r\n}" headers: cache-control: - no-cache @@ -2221,7 +2221,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:56:13 GMT + - Wed, 14 Apr 2021 09:24:08 GMT expires: - '-1' pragma: @@ -2238,7 +2238,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4100 + - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4183 status: code: 200 message: OK @@ -2256,13 +2256,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/236791f3-652c-4794-9d70-905ff353b44c?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d0259c47-8596-48d4-afe6-a5278de6c4cf?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T03:53:10.9029293+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"236791f3-652c-4794-9d70-905ff353b44c\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:21:06.0886287+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d0259c47-8596-48d4-afe6-a5278de6c4cf\"\r\n}" headers: cache-control: - no-cache @@ -2271,7 +2271,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:57:14 GMT + - Wed, 14 Apr 2021 09:25:08 GMT expires: - '-1' pragma: @@ -2288,7 +2288,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4096 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4179 status: code: 200 message: OK @@ -2306,13 +2306,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/236791f3-652c-4794-9d70-905ff353b44c?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d0259c47-8596-48d4-afe6-a5278de6c4cf?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T03:53:10.9029293+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"236791f3-652c-4794-9d70-905ff353b44c\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:21:06.0886287+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d0259c47-8596-48d4-afe6-a5278de6c4cf\"\r\n}" headers: cache-control: - no-cache @@ -2321,7 +2321,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:58:15 GMT + - Wed, 14 Apr 2021 09:26:09 GMT expires: - '-1' pragma: @@ -2338,7 +2338,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4092 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4175 status: code: 200 message: OK @@ -2356,14 +2356,64 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/236791f3-652c-4794-9d70-905ff353b44c?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d0259c47-8596-48d4-afe6-a5278de6c4cf?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T03:53:10.9029293+00:00\",\r\n \"endTime\": - \"2021-04-09T03:59:11.7169726+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"236791f3-652c-4794-9d70-905ff353b44c\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:21:06.0886287+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d0259c47-8596-48d4-afe6-a5278de6c4cf\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 14 Apr 2021 09:27:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4171 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot + User-Agent: + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d0259c47-8596-48d4-afe6-a5278de6c4cf?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-04-14T09:21:06.0886287+00:00\",\r\n \"endTime\": + \"2021-04-14T09:28:00.9012246+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"d0259c47-8596-48d4-afe6-a5278de6c4cf\"\r\n}" headers: cache-control: - no-cache @@ -2372,7 +2422,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:59:15 GMT + - Wed, 14 Apr 2021 09:28:11 GMT expires: - '-1' pragma: @@ -2389,7 +2439,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4088 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4167 status: code: 200 message: OK @@ -2407,7 +2457,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0?api-version=2020-09-30 response: @@ -2418,7 +2468,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-09T03:53:10.9029293+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-14T09:21:06.1042517+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 10,\r\n \"hostCaching\": \"ReadWrite\",\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2432,7 +2482,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:59:16 GMT + - Wed, 14 Apr 2021 09:28:11 GMT expires: - '-1' pragma: @@ -2449,7 +2499,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1998,Microsoft.Compute/GetGalleryImageVersion30Min;9969 + - Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9995 status: code: 200 message: OK @@ -2468,14 +2518,14 @@ interactions: - -g -n --gallery-image-reference User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2484,7 +2534,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:59:17 GMT + - Wed, 14 Apr 2021 09:28:11 GMT expires: - '-1' pragma: @@ -2518,9 +2568,9 @@ interactions: ParameterSetName: - -g -n --gallery-image-reference User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d4?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d4?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"d4\",\r\n \"location\": \"westus\",\r\n \"tags\": @@ -2532,7 +2582,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/2ddb5f16-d3e3-4552-a2f0-9f7425481151?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/ed18dd2a-68df-41c5-a25f-58afa2bd3b85?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -2540,11 +2590,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:59:22 GMT + - Wed, 14 Apr 2021 09:28:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/2ddb5f16-d3e3-4552-a2f0-9f7425481151?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/ed18dd2a-68df-41c5-a25f-58afa2bd3b85?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -2555,7 +2605,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7985 + - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7992 x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -2575,13 +2625,13 @@ interactions: ParameterSetName: - -g -n --gallery-image-reference User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/2ddb5f16-d3e3-4552-a2f0-9f7425481151?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/ed18dd2a-68df-41c5-a25f-58afa2bd3b85?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T03:59:21.9713867+00:00\",\r\n \"endTime\": - \"2021-04-09T03:59:22.533911+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-14T09:28:16.4698615+00:00\",\r\n \"endTime\": + \"2021-04-14T09:28:17.0167664+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d4\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n @@ -2592,20 +2642,20 @@ interactions: \ },\r\n \"galleryImageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-09T03:59:22.0026361+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-14T09:28:16.5167639+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"23f0cbbe-7ca7-498d-b669-afafeff8c925\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"20c245bb-e627-4a5b-ab93-ff88d135e5cc\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"2ddb5f16-d3e3-4552-a2f0-9f7425481151\"\r\n}" + \ },\r\n \"name\": \"ed18dd2a-68df-41c5-a25f-58afa2bd3b85\"\r\n}" headers: cache-control: - no-cache content-length: - - '1744' + - '1745' content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:59:24 GMT + - Wed, 14 Apr 2021 09:28:18 GMT expires: - '-1' pragma: @@ -2622,7 +2672,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399849 + - Microsoft.Compute/GetOperation3Min;49991,Microsoft.Compute/GetOperation30Min;399957 status: code: 200 message: OK @@ -2640,9 +2690,9 @@ interactions: ParameterSetName: - -g -n --gallery-image-reference User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d4?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d4?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"d4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d4\",\r\n @@ -2654,9 +2704,9 @@ interactions: \ },\r\n \"galleryImageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-09T03:59:22.0026361+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-14T09:28:16.5167639+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"23f0cbbe-7ca7-498d-b669-afafeff8c925\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"20c245bb-e627-4a5b-ab93-ff88d135e5cc\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: @@ -2666,7 +2716,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:59:24 GMT + - Wed, 14 Apr 2021 09:28:18 GMT expires: - '-1' pragma: @@ -2683,7 +2733,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4979,Microsoft.Compute/LowCostGet30Min;39835 + - Microsoft.Compute/LowCostGet3Min;4999,Microsoft.Compute/LowCostGet30Min;39962 status: code: 200 message: OK @@ -2707,9 +2757,9 @@ interactions: ParameterSetName: - -g -n --size-gb --max-shares -l User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"d6\",\r\n \"location\": \"centraluseuap\",\r\n @@ -2720,7 +2770,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/571e6944-28f9-4f82-8bfa-812426180add?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/bcb8de75-cfb2-461c-9116-b41f26039edb?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -2728,11 +2778,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:59:30 GMT + - Wed, 14 Apr 2021 09:28:25 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/571e6944-28f9-4f82-8bfa-812426180add?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/bcb8de75-cfb2-461c-9116-b41f26039edb?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -2743,7 +2793,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7995 + - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999 x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -2763,13 +2813,13 @@ interactions: ParameterSetName: - -g -n --size-gb --max-shares -l User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/571e6944-28f9-4f82-8bfa-812426180add?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/bcb8de75-cfb2-461c-9116-b41f26039edb?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T03:59:30.4552778+00:00\",\r\n \"endTime\": - \"2021-04-09T03:59:30.6252621+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-14T09:28:25.0318277+00:00\",\r\n \"endTime\": + \"2021-04-14T09:28:25.2217821+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"centraluseuap\",\r\n @@ -2778,11 +2828,11 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 256,\r\n \ \"diskIOPSReadWrite\": 1100,\r\n \"diskMBpsReadWrite\": 125,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"maxShares\": - 2,\r\n \"timeCreated\": \"2021-04-09T03:59:30.4602301+00:00\",\r\n \"provisioningState\": + 2,\r\n \"timeCreated\": \"2021-04-14T09:28:25.0418123+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 274877906944,\r\n \"uniqueId\": \"504772fe-2452-49a7-aa91-b82ae639da8a\",\r\n + 274877906944,\r\n \"uniqueId\": \"56eb9a93-2314-44b7-8f0c-0b3aa637a680\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"571e6944-28f9-4f82-8bfa-812426180add\"\r\n}" + \ },\r\n \"name\": \"bcb8de75-cfb2-461c-9116-b41f26039edb\"\r\n}" headers: cache-control: - no-cache @@ -2791,7 +2841,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:59:32 GMT + - Wed, 14 Apr 2021 09:28:27 GMT expires: - '-1' pragma: @@ -2808,7 +2858,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399969 + - Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399999 status: code: 200 message: OK @@ -2826,9 +2876,9 @@ interactions: ParameterSetName: - -g -n --size-gb --max-shares -l User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"d6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6\",\r\n @@ -2838,9 +2888,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 256,\r\n \ \"diskIOPSReadWrite\": 1100,\r\n \"diskMBpsReadWrite\": 125,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"maxShares\": - 2,\r\n \"timeCreated\": \"2021-04-09T03:59:30.4602301+00:00\",\r\n \"provisioningState\": + 2,\r\n \"timeCreated\": \"2021-04-14T09:28:25.0418123+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 274877906944,\r\n \"uniqueId\": \"504772fe-2452-49a7-aa91-b82ae639da8a\",\r\n + 274877906944,\r\n \"uniqueId\": \"56eb9a93-2314-44b7-8f0c-0b3aa637a680\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}" headers: cache-control: @@ -2850,7 +2900,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:59:32 GMT + - Wed, 14 Apr 2021 09:28:27 GMT expires: - '-1' pragma: @@ -2867,7 +2917,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14999,Microsoft.Compute/LowCostGet30Min;119948 + - Microsoft.Compute/LowCostGet3Min;14999,Microsoft.Compute/LowCostGet30Min;119999 status: code: 200 message: OK @@ -2885,9 +2935,9 @@ interactions: ParameterSetName: - -g -n --max-shares User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"d6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6\",\r\n @@ -2897,9 +2947,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 256,\r\n \ \"diskIOPSReadWrite\": 1100,\r\n \"diskMBpsReadWrite\": 125,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"maxShares\": - 2,\r\n \"timeCreated\": \"2021-04-09T03:59:30.4602301+00:00\",\r\n \"provisioningState\": + 2,\r\n \"timeCreated\": \"2021-04-14T09:28:25.0418123+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 274877906944,\r\n \"uniqueId\": \"504772fe-2452-49a7-aa91-b82ae639da8a\",\r\n + 274877906944,\r\n \"uniqueId\": \"56eb9a93-2314-44b7-8f0c-0b3aa637a680\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}" headers: cache-control: @@ -2909,7 +2959,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:59:34 GMT + - Wed, 14 Apr 2021 09:28:29 GMT expires: - '-1' pragma: @@ -2926,7 +2976,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14998,Microsoft.Compute/LowCostGet30Min;119947 + - Microsoft.Compute/LowCostGet3Min;14998,Microsoft.Compute/LowCostGet30Min;119998 status: code: 200 message: OK @@ -2952,9 +3002,9 @@ interactions: ParameterSetName: - -g -n --max-shares User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"d6\",\r\n \"location\": \"centraluseuap\",\r\n @@ -2966,7 +3016,7 @@ interactions: \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/2b26585e-bb9d-464e-9b01-048d7363cc2b?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/71058790-8c98-49ed-a217-71c269cb27a6?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -2974,11 +3024,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:59:36 GMT + - Wed, 14 Apr 2021 09:28:31 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/2b26585e-bb9d-464e-9b01-048d7363cc2b?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/71058790-8c98-49ed-a217-71c269cb27a6?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -2989,9 +3039,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7994 + - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7998 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 202 message: Accepted @@ -3009,13 +3059,13 @@ interactions: ParameterSetName: - -g -n --max-shares User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/2b26585e-bb9d-464e-9b01-048d7363cc2b?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/71058790-8c98-49ed-a217-71c269cb27a6?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-09T03:59:36.7929741+00:00\",\r\n \"endTime\": - \"2021-04-09T03:59:36.9829742+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-14T09:28:31.0372217+00:00\",\r\n \"endTime\": + \"2021-04-14T09:28:31.207213+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"centraluseuap\",\r\n @@ -3024,20 +3074,20 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 256,\r\n \ \"diskIOPSReadWrite\": 1100,\r\n \"diskMBpsReadWrite\": 125,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"maxShares\": - 1,\r\n \"timeCreated\": \"2021-04-09T03:59:30.4602301+00:00\",\r\n \"provisioningState\": + 1,\r\n \"timeCreated\": \"2021-04-14T09:28:25.0418123+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 274877906944,\r\n \"uniqueId\": \"504772fe-2452-49a7-aa91-b82ae639da8a\",\r\n + 274877906944,\r\n \"uniqueId\": \"56eb9a93-2314-44b7-8f0c-0b3aa637a680\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"2b26585e-bb9d-464e-9b01-048d7363cc2b\"\r\n}" + \ },\r\n \"name\": \"71058790-8c98-49ed-a217-71c269cb27a6\"\r\n}" headers: cache-control: - no-cache content-length: - - '1144' + - '1143' content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:59:38 GMT + - Wed, 14 Apr 2021 09:28:33 GMT expires: - '-1' pragma: @@ -3054,7 +3104,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399967 + - Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399997 status: code: 200 message: OK @@ -3072,9 +3122,9 @@ interactions: ParameterSetName: - -g -n --max-shares User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"d6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6\",\r\n @@ -3084,9 +3134,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 256,\r\n \ \"diskIOPSReadWrite\": 1100,\r\n \"diskMBpsReadWrite\": 125,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"maxShares\": - 1,\r\n \"timeCreated\": \"2021-04-09T03:59:30.4602301+00:00\",\r\n \"provisioningState\": + 1,\r\n \"timeCreated\": \"2021-04-14T09:28:25.0418123+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 274877906944,\r\n \"uniqueId\": \"504772fe-2452-49a7-aa91-b82ae639da8a\",\r\n + 274877906944,\r\n \"uniqueId\": \"56eb9a93-2314-44b7-8f0c-0b3aa637a680\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}" headers: cache-control: @@ -3096,7 +3146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 09 Apr 2021 03:59:39 GMT + - Wed, 14 Apr 2021 09:28:33 GMT expires: - '-1' pragma: @@ -3113,7 +3163,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14996,Microsoft.Compute/LowCostGet30Min;119945 + - Microsoft.Compute/LowCostGet3Min;14996,Microsoft.Compute/LowCostGet30Min;119996 status: code: 200 message: OK From d348a7f361df73a89f549fefb001c94814a0df90 Mon Sep 17 00:00:00 2001 From: Feiyue Yu Date: Thu, 15 Apr 2021 14:04:10 +0800 Subject: [PATCH 16/18] rename --- src/azure-cli/azure/cli/command_modules/vm/_params.py | 2 +- src/azure-cli/azure/cli/command_modules/vm/custom.py | 10 +++++----- .../vm/tests/latest/test_vm_commands.py | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/_params.py b/src/azure-cli/azure/cli/command_modules/vm/_params.py index 71a37fc968e..b78c4d0f190 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/_params.py +++ b/src/azure-cli/azure/cli/command_modules/vm/_params.py @@ -936,7 +936,7 @@ def load_arguments(self, _): arg_type=get_enum_type(["Standard_LRS", "Standard_ZRS", "Premium_LRS"]), min_api='2019-03-01') c.argument('target_region_encryption', nargs='+', help='Space-separated list of customer managed keys for encrypting the OS and data disks in the gallery artifact for each region. Format for each region: `,,,,`. Use "null" as a placeholder.') - c.argument('os_vhd', help='Source VHD URI of OS disk') + c.argument('os_vhd_uri', help='Source VHD URI of OS disk') c.argument('os_vhd_storage_account', help='Name or ID of storage account of source VHD URI of OS disk') with self.argument_context('sig image-version show') as c: diff --git a/src/azure-cli/azure/cli/command_modules/vm/custom.py b/src/azure-cli/azure/cli/command_modules/vm/custom.py index 5b9be0d5566..0705b99bb4f 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/custom.py +++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py @@ -3384,7 +3384,7 @@ def create_image_version(cmd, resource_group_name, gallery_name, gallery_image_n location=None, target_regions=None, storage_account_type=None, end_of_life_date=None, exclude_from_latest=None, replica_count=None, tags=None, os_snapshot=None, data_snapshots=None, managed_image=None, data_snapshot_luns=None, - target_region_encryption=None, os_vhd=None, os_vhd_storage_account=None): + target_region_encryption=None, os_vhd_uri=None, os_vhd_storage_account=None): # print(target_regions) from msrestazure.tools import resource_id, is_valid_resource_id from azure.cli.core.commands.client_factory import get_subscription_id @@ -3415,7 +3415,7 @@ def create_image_version(cmd, resource_group_name, gallery_name, gallery_image_n source=source, replica_count=replica_count, storage_account_type=storage_account_type) if cmd.supported_api_version(min_api='2019-07-01', operation_group='gallery_image_versions'): - if managed_image is None and os_snapshot is None and os_vhd is None: + if managed_image is None and os_snapshot is None and os_vhd_uri is None: raise CLIError('usage error: Please provide --managed-image or --os-snapshot or --vhd') GalleryImageVersionStorageProfile = cmd.get_models('GalleryImageVersionStorageProfile') GalleryArtifactVersionSource = cmd.get_models('GalleryArtifactVersionSource') @@ -3439,15 +3439,15 @@ def create_image_version(cmd, resource_group_name, gallery_name, gallery_image_n lun=data_snapshot_luns[i])) # from vhd, only support os image now if cmd.supported_api_version(min_api='2020-09-30', operation_group='gallery_image_versions'): - if os_vhd and os_vhd_storage_account is None or os_vhd is None and os_vhd_storage_account: + if os_vhd_uri and os_vhd_storage_account is None or os_vhd_uri is None and os_vhd_storage_account: raise ValidationError('--vhd and --vhd-storage-account should be used together.') - if os_vhd and os_vhd_storage_account: + if os_vhd_uri and os_vhd_storage_account: if not is_valid_resource_id(os_vhd_storage_account): os_vhd_storage_account = resource_id( subscription=get_subscription_id(cmd.cli_ctx), resource_group=resource_group_name, namespace='Microsoft.Storage', type='storageAccounts', name=os_vhd_storage_account) os_disk_image = GalleryOSDiskImage(source=GalleryArtifactVersionSource( - id=os_vhd_storage_account, uri=os_vhd)) + id=os_vhd_storage_account, uri=os_vhd_uri)) storage_profile = GalleryImageVersionStorageProfile(source=source, os_disk_image=os_disk_image, data_disk_images=data_disk_images) diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py index a82e3869796..51eda4b1b21 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py @@ -3836,7 +3836,7 @@ def test_gallery_image_version_vhd(self, resource_group): }) self.cmd('sig create -g {rg} --gallery-name {gallery}') self.cmd('sig image-definition create -g {rg} --gallery-name {gallery} --gallery-image-definition image1 --os-type linux -p publisher1 -f offer1 -s sku1') - self.cmd('sig image-version create -g {rg} --gallery-name {gallery} --gallery-image-definition image1 --gallery-image-version 1.0.0 --os-vhd {vhd} --os-vhd-storage-account {stac} --replica-count 1', checks=[ + self.cmd('sig image-version create -g {rg} --gallery-name {gallery} --gallery-image-definition image1 --gallery-image-version 1.0.0 --os-vhd-uri {vhd} --os-vhd-storage-account {stac} --replica-count 1', checks=[ self.check('storageProfile.osDiskImage.source.uri', vhd_uri) ]) From 48e2a845cb94ee133519168c427a2b85d34ff900 Mon Sep 17 00:00:00 2001 From: Feiyue Yu Date: Thu, 15 Apr 2021 14:26:23 +0800 Subject: [PATCH 17/18] test --- .../recordings/test_gallery_specialized.yaml | 475 +++++++--------- .../recordings/test_specialized_image.yaml | 537 ++++++++++-------- .../test_vm_disk_max_shares_etc.yaml | 491 ++++++++-------- 3 files changed, 750 insertions(+), 753 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_specialized.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_specialized.yaml index 1fb2769fa8c..a656d1a52da 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_specialized.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_specialized.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:18:58 GMT + - Thu, 15 Apr 2021 06:08:44 GMT expires: - '-1' pragma: @@ -70,11 +70,11 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_OZFPNNWS3RGM\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_BFZJM7WCTZ36\"\r\n },\r\n \ \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/3d127725-6899-4e84-b45c-2cc24ba4e8f1?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/20593719-5ea3-422c-a4c2-939c0870f32e?api-version=2019-12-01 cache-control: - no-cache content-length: @@ -82,7 +82,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:19:06 GMT + - Thu, 15 Apr 2021 06:08:53 GMT expires: - '-1' pragma: @@ -95,9 +95,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGallery3Min;48,Microsoft.Compute/CreateUpdateGallery30Min;298 + - Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1195' status: code: 201 message: Created @@ -117,21 +117,21 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/3d127725-6899-4e84-b45c-2cc24ba4e8f1?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/20593719-5ea3-422c-a4c2-939c0870f32e?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-14T09:19:04.3852372+00:00\",\r\n \"endTime\": - \"2021-04-14T09:19:04.4789947+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"3d127725-6899-4e84-b45c-2cc24ba4e8f1\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:08:51.4988018+00:00\",\r\n \"endTime\": + \"2021-04-15T06:08:52.264514+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"20593719-5ea3-422c-a4c2-939c0870f32e\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:19:36 GMT + - Thu, 15 Apr 2021 06:09:23 GMT expires: - '-1' pragma: @@ -148,7 +148,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4196 + - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4198 status: code: 200 message: OK @@ -174,7 +174,7 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_OZFPNNWS3RGM\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_BFZJM7WCTZ36\"\r\n },\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -184,7 +184,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:19:36 GMT + - Thu, 15 Apr 2021 06:09:23 GMT expires: - '-1' pragma: @@ -201,7 +201,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGallery3Min;342,Microsoft.Compute/GetGallery30Min;2492 + - Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2496 status: code: 200 message: OK @@ -228,7 +228,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -237,7 +237,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:19:37 GMT + - Thu, 15 Apr 2021 06:09:24 GMT expires: - '-1' pragma: @@ -286,7 +286,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c060ef8a-587b-4473-b1fa-3e6012f9a436?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/973a7f90-f6ff-44ef-9082-99f21cd0448c?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -294,7 +294,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:19:46 GMT + - Thu, 15 Apr 2021 06:09:34 GMT expires: - '-1' pragma: @@ -307,9 +307,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImage3Min;148,Microsoft.Compute/CreateUpdateGalleryImage30Min;748 + - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;749 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 201 message: Created @@ -330,21 +330,21 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c060ef8a-587b-4473-b1fa-3e6012f9a436?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/973a7f90-f6ff-44ef-9082-99f21cd0448c?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-14T09:19:45.0898667+00:00\",\r\n \"endTime\": - \"2021-04-14T09:19:45.183616+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"c060ef8a-587b-4473-b1fa-3e6012f9a436\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:09:33.1254138+00:00\",\r\n \"endTime\": + \"2021-04-15T06:09:33.3285479+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"973a7f90-f6ff-44ef-9082-99f21cd0448c\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:20:16 GMT + - Thu, 15 Apr 2021 06:10:04 GMT expires: - '-1' pragma: @@ -361,7 +361,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4193 + - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4196 status: code: 200 message: OK @@ -400,7 +400,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:20:17 GMT + - Thu, 15 Apr 2021 06:10:04 GMT expires: - '-1' pragma: @@ -417,7 +417,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;593,Microsoft.Compute/GetGalleryImage30Min;2993 + - Microsoft.Compute/GetGalleryImage3Min;596,Microsoft.Compute/GetGalleryImage30Min;2996 status: code: 200 message: OK @@ -443,7 +443,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -452,7 +452,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:20:17 GMT + - Thu, 15 Apr 2021 06:10:05 GMT expires: - '-1' pragma: @@ -497,7 +497,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/0094d88f-084b-435b-be78-661d751f8f12?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/d8cf5420-35cf-42e3-a28d-194f23519d4a?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -505,11 +505,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:20:22 GMT + - Thu, 15 Apr 2021 06:10:14 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/0094d88f-084b-435b-be78-661d751f8f12?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/d8cf5420-35cf-42e3-a28d-194f23519d4a?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -522,7 +522,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1194' status: code: 202 message: Accepted @@ -542,11 +542,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/0094d88f-084b-435b-be78-661d751f8f12?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/d8cf5420-35cf-42e3-a28d-194f23519d4a?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-14T09:20:22.7325396+00:00\",\r\n \"endTime\": - \"2021-04-14T09:20:22.8419314+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-15T06:10:15.4628389+00:00\",\r\n \"endTime\": + \"2021-04-15T06:10:15.6034725+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus2\",\r\n @@ -555,10 +555,10 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-04-14T09:20:22.7325396+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-15T06:10:15.4628389+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"9bf668f6-4220-447e-81ef-d7ebafac29da\",\r\n \"networkAccessPolicy\": - \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"0094d88f-084b-435b-be78-661d751f8f12\"\r\n}" + \ \"uniqueId\": \"e889427e-8091-45be-b1ae-38a39e9076f5\",\r\n \"networkAccessPolicy\": + \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"d8cf5420-35cf-42e3-a28d-194f23519d4a\"\r\n}" headers: cache-control: - no-cache @@ -567,7 +567,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:20:24 GMT + - Thu, 15 Apr 2021 06:10:17 GMT expires: - '-1' pragma: @@ -614,9 +614,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-04-14T09:20:22.7325396+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-15T06:10:15.4628389+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"9bf668f6-4220-447e-81ef-d7ebafac29da\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"e889427e-8091-45be-b1ae-38a39e9076f5\",\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: @@ -626,7 +626,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:20:24 GMT + - Thu, 15 Apr 2021 06:10:17 GMT expires: - '-1' pragma: @@ -669,7 +669,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -678,7 +678,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:20:25 GMT + - Thu, 15 Apr 2021 06:10:18 GMT expires: - '-1' pragma: @@ -723,7 +723,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/08f6a80d-4f40-4abf-9a34-ae579cd2d0e8?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/e9c0b716-4356-427b-abff-6d7c8db48db1?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -731,11 +731,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:20:32 GMT + - Thu, 15 Apr 2021 06:10:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/08f6a80d-4f40-4abf-9a34-ae579cd2d0e8?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/e9c0b716-4356-427b-abff-6d7c8db48db1?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -748,7 +748,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7998 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted @@ -768,11 +768,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/08f6a80d-4f40-4abf-9a34-ae579cd2d0e8?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/e9c0b716-4356-427b-abff-6d7c8db48db1?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-14T09:20:32.514106+00:00\",\r\n \"endTime\": - \"2021-04-14T09:20:32.6078586+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-15T06:10:23.1193843+00:00\",\r\n \"endTime\": + \"2021-04-15T06:10:23.2600449+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus2\",\r\n @@ -781,19 +781,19 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-04-14T09:20:32.514106+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-15T06:10:23.1193843+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"1e8c8576-1162-4d5a-8f08-3e1c4f1f8404\",\r\n \"networkAccessPolicy\": - \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"08f6a80d-4f40-4abf-9a34-ae579cd2d0e8\"\r\n}" + \ \"uniqueId\": \"4e354b26-9a12-48d0-810e-78b62c8a1fbe\",\r\n \"networkAccessPolicy\": + \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"e9c0b716-4356-427b-abff-6d7c8db48db1\"\r\n}" headers: cache-control: - no-cache content-length: - - '1110' + - '1112' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:20:34 GMT + - Thu, 15 Apr 2021 06:10:25 GMT expires: - '-1' pragma: @@ -840,19 +840,19 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-04-14T09:20:32.514106+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-15T06:10:23.1193843+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"1e8c8576-1162-4d5a-8f08-3e1c4f1f8404\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"4e354b26-9a12-48d0-810e-78b62c8a1fbe\",\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '886' + - '887' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:20:35 GMT + - Thu, 15 Apr 2021 06:10:25 GMT expires: - '-1' pragma: @@ -869,7 +869,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14996,Microsoft.Compute/LowCostGet30Min;119996 + - Microsoft.Compute/LowCostGet3Min;14997,Microsoft.Compute/LowCostGet30Min;119997 status: code: 200 message: OK @@ -895,7 +895,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -904,7 +904,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:20:35 GMT + - Thu, 15 Apr 2021 06:10:26 GMT expires: - '-1' pragma: @@ -949,7 +949,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/a0191969-89e8-4de3-b3c6-db1e7de901e3?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/3c2fcd16-809c-4c4b-812b-dc4fb8dfe108?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -957,11 +957,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:20:41 GMT + - Thu, 15 Apr 2021 06:10:34 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/a0191969-89e8-4de3-b3c6-db1e7de901e3?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/3c2fcd16-809c-4c4b-812b-dc4fb8dfe108?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -974,7 +974,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7997 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 202 message: Accepted @@ -994,11 +994,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/a0191969-89e8-4de3-b3c6-db1e7de901e3?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/3c2fcd16-809c-4c4b-812b-dc4fb8dfe108?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-14T09:20:42.1550225+00:00\",\r\n \"endTime\": - \"2021-04-14T09:20:42.2487767+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-15T06:10:34.651055+00:00\",\r\n \"endTime\": + \"2021-04-15T06:10:34.7916835+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus2\",\r\n @@ -1007,19 +1007,19 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-04-14T09:20:42.1550225+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-15T06:10:34.651055+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"ef5785f5-f708-48f0-bd2e-cbd8453c9d24\",\r\n \"networkAccessPolicy\": - \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"a0191969-89e8-4de3-b3c6-db1e7de901e3\"\r\n}" + \ \"uniqueId\": \"c2034da4-d9df-43f0-8bd4-43830e55c4c5\",\r\n \"networkAccessPolicy\": + \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"3c2fcd16-809c-4c4b-812b-dc4fb8dfe108\"\r\n}" headers: cache-control: - no-cache content-length: - - '1112' + - '1110' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:20:44 GMT + - Thu, 15 Apr 2021 06:10:36 GMT expires: - '-1' pragma: @@ -1066,19 +1066,19 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-04-14T09:20:42.1550225+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-15T06:10:34.651055+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"ef5785f5-f708-48f0-bd2e-cbd8453c9d24\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"c2034da4-d9df-43f0-8bd4-43830e55c4c5\",\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '887' + - '886' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:20:44 GMT + - Thu, 15 Apr 2021 06:10:37 GMT expires: - '-1' pragma: @@ -1115,7 +1115,7 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/d1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/d1?api-version=2020-12-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/d1'' @@ -1129,7 +1129,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:20:45 GMT + - Thu, 15 Apr 2021 06:10:37 GMT expires: - '-1' pragma: @@ -1169,9 +1169,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-04-14T09:20:22.7325396+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-15T06:10:15.4628389+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"9bf668f6-4220-447e-81ef-d7ebafac29da\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"e889427e-8091-45be-b1ae-38a39e9076f5\",\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: @@ -1181,7 +1181,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:20:45 GMT + - Thu, 15 Apr 2021 06:10:38 GMT expires: - '-1' pragma: @@ -1224,7 +1224,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1233,7 +1233,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:20:46 GMT + - Thu, 15 Apr 2021 06:10:39 GMT expires: - '-1' pragma: @@ -1268,18 +1268,18 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01 response: body: string: "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1\",\r\n - \ \"sourceUniqueId\": \"9bf668f6-4220-447e-81ef-d7ebafac29da\"\r\n },\r\n + \ \"sourceUniqueId\": \"e889427e-8091-45be-b1ae-38a39e9076f5\"\r\n },\r\n \ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/192ecbc3-5ce7-4efb-b6f8-71ae6f381b1a?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/41d1b1c7-4a2e-4fe5-9e53-0432effeccb0?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -1287,11 +1287,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:20:51 GMT + - Thu, 15 Apr 2021 06:10:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/192ecbc3-5ce7-4efb-b6f8-71ae6f381b1a?monitor=true&api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/41d1b1c7-4a2e-4fe5-9e53-0432effeccb0?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -1304,7 +1304,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7999 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1194' status: code: 202 message: Accepted @@ -1324,24 +1324,24 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/192ecbc3-5ce7-4efb-b6f8-71ae6f381b1a?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/41d1b1c7-4a2e-4fe5-9e53-0432effeccb0?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-14T09:20:51.9365814+00:00\",\r\n \"endTime\": - \"2021-04-14T09:20:53.1242028+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-15T06:10:44.6045708+00:00\",\r\n \"endTime\": + \"2021-04-15T06:10:45.6514905+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s1\",\r\n \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1\",\r\n - \ \"sourceUniqueId\": \"9bf668f6-4220-447e-81ef-d7ebafac29da\"\r\n },\r\n + \ \"sourceUniqueId\": \"e889427e-8091-45be-b1ae-38a39e9076f5\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-14T09:20:51.9522089+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-15T06:10:44.6201998+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"81710171-fec1-4ea4-b582-655ba96b063c\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"2ec4ecc1-bfd7-4511-956c-1b6c1f04bf84\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"192ecbc3-5ce7-4efb-b6f8-71ae6f381b1a\"\r\n}" + \"41d1b1c7-4a2e-4fe5-9e53-0432effeccb0\"\r\n}" headers: cache-control: - no-cache @@ -1350,7 +1350,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:20:53 GMT + - Thu, 15 Apr 2021 06:10:47 GMT expires: - '-1' pragma: @@ -1387,7 +1387,7 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s1\",\r\n @@ -1395,11 +1395,11 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1\",\r\n - \ \"sourceUniqueId\": \"9bf668f6-4220-447e-81ef-d7ebafac29da\"\r\n },\r\n + \ \"sourceUniqueId\": \"e889427e-8091-45be-b1ae-38a39e9076f5\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-14T09:20:51.9522089+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-15T06:10:44.6201998+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"81710171-fec1-4ea4-b582-655ba96b063c\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"2ec4ecc1-bfd7-4511-956c-1b6c1f04bf84\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -1409,7 +1409,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:20:53 GMT + - Thu, 15 Apr 2021 06:10:47 GMT expires: - '-1' pragma: @@ -1426,7 +1426,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14988,Microsoft.Compute/LowCostGet30Min;119988 + - Microsoft.Compute/LowCostGet3Min;14990,Microsoft.Compute/LowCostGet30Min;119990 status: code: 200 message: OK @@ -1446,7 +1446,7 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/d2?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/d2?api-version=2020-12-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/d2'' @@ -1460,7 +1460,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:20:55 GMT + - Thu, 15 Apr 2021 06:10:48 GMT expires: - '-1' pragma: @@ -1500,19 +1500,19 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-04-14T09:20:32.514106+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-15T06:10:23.1193843+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"1e8c8576-1162-4d5a-8f08-3e1c4f1f8404\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"4e354b26-9a12-48d0-810e-78b62c8a1fbe\",\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '886' + - '887' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:20:55 GMT + - Thu, 15 Apr 2021 06:10:48 GMT expires: - '-1' pragma: @@ -1529,7 +1529,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14986,Microsoft.Compute/LowCostGet30Min;119986 + - Microsoft.Compute/LowCostGet3Min;14989,Microsoft.Compute/LowCostGet30Min;119989 status: code: 200 message: OK @@ -1555,7 +1555,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1564,7 +1564,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:20:56 GMT + - Thu, 15 Apr 2021 06:10:48 GMT expires: - '-1' pragma: @@ -1599,18 +1599,18 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s2?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s2?api-version=2020-12-01 response: body: string: "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2\",\r\n - \ \"sourceUniqueId\": \"1e8c8576-1162-4d5a-8f08-3e1c4f1f8404\"\r\n },\r\n + \ \"sourceUniqueId\": \"4e354b26-9a12-48d0-810e-78b62c8a1fbe\"\r\n },\r\n \ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/be39f9b5-64ce-42fe-b51b-7483a414b433?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/3ec45b0f-5457-4376-966f-8abff8ade1cf?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -1618,11 +1618,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:21:01 GMT + - Thu, 15 Apr 2021 06:10:57 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/be39f9b5-64ce-42fe-b51b-7483a414b433?monitor=true&api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/3ec45b0f-5457-4376-966f-8abff8ade1cf?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -1635,7 +1635,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;998,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7998 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 202 message: Accepted @@ -1655,24 +1655,24 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/be39f9b5-64ce-42fe-b51b-7483a414b433?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/3ec45b0f-5457-4376-966f-8abff8ade1cf?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-14T09:21:01.6244687+00:00\",\r\n \"endTime\": - \"2021-04-14T09:21:02.3744885+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-15T06:10:57.3550577+00:00\",\r\n \"endTime\": + \"2021-04-15T06:10:58.0425843+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"s2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s2\",\r\n \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2\",\r\n - \ \"sourceUniqueId\": \"1e8c8576-1162-4d5a-8f08-3e1c4f1f8404\"\r\n },\r\n + \ \"sourceUniqueId\": \"4e354b26-9a12-48d0-810e-78b62c8a1fbe\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-14T09:21:01.6400932+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-15T06:10:57.3550577+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"93f6475e-6ef9-4298-b53f-aa86243bc80f\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"a2bfa89c-f5d1-475e-b4d7-eb8f5038501e\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"be39f9b5-64ce-42fe-b51b-7483a414b433\"\r\n}" + \"3ec45b0f-5457-4376-966f-8abff8ade1cf\"\r\n}" headers: cache-control: - no-cache @@ -1681,7 +1681,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:21:04 GMT + - Thu, 15 Apr 2021 06:10:59 GMT expires: - '-1' pragma: @@ -1718,7 +1718,7 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s2?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s2?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"s2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s2\",\r\n @@ -1726,11 +1726,11 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2\",\r\n - \ \"sourceUniqueId\": \"1e8c8576-1162-4d5a-8f08-3e1c4f1f8404\"\r\n },\r\n + \ \"sourceUniqueId\": \"4e354b26-9a12-48d0-810e-78b62c8a1fbe\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-14T09:21:01.6400932+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-15T06:10:57.3550577+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"93f6475e-6ef9-4298-b53f-aa86243bc80f\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"a2bfa89c-f5d1-475e-b4d7-eb8f5038501e\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -1740,7 +1740,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:21:04 GMT + - Thu, 15 Apr 2021 06:10:59 GMT expires: - '-1' pragma: @@ -1757,7 +1757,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14983,Microsoft.Compute/LowCostGet30Min;119983 + - Microsoft.Compute/LowCostGet3Min;14985,Microsoft.Compute/LowCostGet30Min;119985 status: code: 200 message: OK @@ -1777,7 +1777,7 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/d3?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/d3?api-version=2020-12-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/d3'' @@ -1791,7 +1791,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:21:05 GMT + - Thu, 15 Apr 2021 06:11:00 GMT expires: - '-1' pragma: @@ -1831,19 +1831,19 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-04-14T09:20:42.1550225+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-15T06:10:34.651055+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"ef5785f5-f708-48f0-bd2e-cbd8453c9d24\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"c2034da4-d9df-43f0-8bd4-43830e55c4c5\",\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '887' + - '886' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:21:06 GMT + - Thu, 15 Apr 2021 06:11:00 GMT expires: - '-1' pragma: @@ -1860,7 +1860,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14982,Microsoft.Compute/LowCostGet30Min;119982 + - Microsoft.Compute/LowCostGet3Min;14984,Microsoft.Compute/LowCostGet30Min;119984 status: code: 200 message: OK @@ -1886,7 +1886,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1895,7 +1895,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:21:06 GMT + - Thu, 15 Apr 2021 06:11:01 GMT expires: - '-1' pragma: @@ -1930,18 +1930,18 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s3?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s3?api-version=2020-12-01 response: body: string: "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3\",\r\n - \ \"sourceUniqueId\": \"ef5785f5-f708-48f0-bd2e-cbd8453c9d24\"\r\n },\r\n + \ \"sourceUniqueId\": \"c2034da4-d9df-43f0-8bd4-43830e55c4c5\"\r\n },\r\n \ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/82f7f5ca-a006-4338-92d8-f731da91ce84?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/c6da64f8-0b11-4ef8-818e-330fcbb353da?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -1949,11 +1949,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:21:11 GMT + - Thu, 15 Apr 2021 06:11:08 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/82f7f5ca-a006-4338-92d8-f731da91ce84?monitor=true&api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/c6da64f8-0b11-4ef8-818e-330fcbb353da?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -1966,7 +1966,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;997,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7997 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -1986,33 +1986,33 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/82f7f5ca-a006-4338-92d8-f731da91ce84?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/c6da64f8-0b11-4ef8-818e-330fcbb353da?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-14T09:21:11.6717254+00:00\",\r\n \"endTime\": - \"2021-04-14T09:21:12.4069036+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-15T06:11:08.371103+00:00\",\r\n \"endTime\": + \"2021-04-15T06:11:09.0117454+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"s3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s3\",\r\n \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3\",\r\n - \ \"sourceUniqueId\": \"ef5785f5-f708-48f0-bd2e-cbd8453c9d24\"\r\n },\r\n + \ \"sourceUniqueId\": \"c2034da4-d9df-43f0-8bd4-43830e55c4c5\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-14T09:21:11.6873536+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-15T06:11:08.3867209+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"d6c9b97f-91af-466f-bcd9-475dcb538a03\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"f128dcbc-7c38-4c0c-bb92-ea94238c76f4\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"82f7f5ca-a006-4338-92d8-f731da91ce84\"\r\n}" + \"c6da64f8-0b11-4ef8-818e-330fcbb353da\"\r\n}" headers: cache-control: - no-cache content-length: - - '1343' + - '1342' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:21:13 GMT + - Thu, 15 Apr 2021 06:11:10 GMT expires: - '-1' pragma: @@ -2049,7 +2049,7 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s3?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s3?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"s3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s3\",\r\n @@ -2057,11 +2057,11 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3\",\r\n - \ \"sourceUniqueId\": \"ef5785f5-f708-48f0-bd2e-cbd8453c9d24\"\r\n },\r\n + \ \"sourceUniqueId\": \"c2034da4-d9df-43f0-8bd4-43830e55c4c5\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-14T09:21:11.6873536+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-15T06:11:08.3867209+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"d6c9b97f-91af-466f-bcd9-475dcb538a03\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"f128dcbc-7c38-4c0c-bb92-ea94238c76f4\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -2071,7 +2071,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:21:14 GMT + - Thu, 15 Apr 2021 06:11:10 GMT expires: - '-1' pragma: @@ -2088,7 +2088,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14979,Microsoft.Compute/LowCostGet30Min;119979 + - Microsoft.Compute/LowCostGet3Min;14981,Microsoft.Compute/LowCostGet30Min;119981 status: code: 200 message: OK @@ -2115,7 +2115,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2124,7 +2124,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:21:15 GMT + - Thu, 15 Apr 2021 06:11:11 GMT expires: - '-1' pragma: @@ -2173,7 +2173,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-14T09:21:21.2157256+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-15T06:11:20.8014564+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"hostCaching\": \"ReadWrite\",\r\n \ \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2186,7 +2186,7 @@ interactions: \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/72c02e88-b5a4-4fcc-858c-e9dd3f30d6b3?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/92fec6a6-0d8a-45d9-99f0-494b442fd458?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -2194,7 +2194,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:21:22 GMT + - Thu, 15 Apr 2021 06:11:22 GMT expires: - '-1' pragma: @@ -2209,7 +2209,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1199 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -2230,62 +2230,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/72c02e88-b5a4-4fcc-858c-e9dd3f30d6b3?api-version=2020-09-30 - response: - body: - string: "{\r\n \"startTime\": \"2021-04-14T09:21:21.2000988+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"72c02e88-b5a4-4fcc-858c-e9dd3f30d6b3\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 14 Apr 2021 09:22:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4191 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version create - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot - --data-snapshots --data-snapshot-luns - User-Agent: - - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/72c02e88-b5a4-4fcc-858c-e9dd3f30d6b3?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/92fec6a6-0d8a-45d9-99f0-494b442fd458?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-14T09:21:21.2000988+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"72c02e88-b5a4-4fcc-858c-e9dd3f30d6b3\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:11:20.7858293+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"92fec6a6-0d8a-45d9-99f0-494b442fd458\"\r\n}" headers: cache-control: - no-cache @@ -2294,7 +2243,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:23:24 GMT + - Thu, 15 Apr 2021 06:12:22 GMT expires: - '-1' pragma: @@ -2311,7 +2260,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4189 + - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4194 status: code: 200 message: OK @@ -2332,11 +2281,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/72c02e88-b5a4-4fcc-858c-e9dd3f30d6b3?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/92fec6a6-0d8a-45d9-99f0-494b442fd458?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-14T09:21:21.2000988+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"72c02e88-b5a4-4fcc-858c-e9dd3f30d6b3\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:11:20.7858293+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"92fec6a6-0d8a-45d9-99f0-494b442fd458\"\r\n}" headers: cache-control: - no-cache @@ -2345,7 +2294,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:24:25 GMT + - Thu, 15 Apr 2021 06:13:23 GMT expires: - '-1' pragma: @@ -2362,7 +2311,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4187 + - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4192 status: code: 200 message: OK @@ -2383,11 +2332,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/72c02e88-b5a4-4fcc-858c-e9dd3f30d6b3?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/92fec6a6-0d8a-45d9-99f0-494b442fd458?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-14T09:21:21.2000988+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"72c02e88-b5a4-4fcc-858c-e9dd3f30d6b3\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:11:20.7858293+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"92fec6a6-0d8a-45d9-99f0-494b442fd458\"\r\n}" headers: cache-control: - no-cache @@ -2396,7 +2345,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:25:25 GMT + - Thu, 15 Apr 2021 06:14:24 GMT expires: - '-1' pragma: @@ -2413,7 +2362,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4185 + - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4190 status: code: 200 message: OK @@ -2434,11 +2383,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/72c02e88-b5a4-4fcc-858c-e9dd3f30d6b3?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/92fec6a6-0d8a-45d9-99f0-494b442fd458?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-14T09:21:21.2000988+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"72c02e88-b5a4-4fcc-858c-e9dd3f30d6b3\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:11:20.7858293+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"92fec6a6-0d8a-45d9-99f0-494b442fd458\"\r\n}" headers: cache-control: - no-cache @@ -2447,7 +2396,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:26:26 GMT + - Thu, 15 Apr 2021 06:15:24 GMT expires: - '-1' pragma: @@ -2464,7 +2413,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4181 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4189 status: code: 200 message: OK @@ -2485,11 +2434,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/72c02e88-b5a4-4fcc-858c-e9dd3f30d6b3?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/92fec6a6-0d8a-45d9-99f0-494b442fd458?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-14T09:21:21.2000988+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"72c02e88-b5a4-4fcc-858c-e9dd3f30d6b3\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:11:20.7858293+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"92fec6a6-0d8a-45d9-99f0-494b442fd458\"\r\n}" headers: cache-control: - no-cache @@ -2498,7 +2447,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:27:27 GMT + - Thu, 15 Apr 2021 06:16:24 GMT expires: - '-1' pragma: @@ -2515,7 +2464,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4177 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4187 status: code: 200 message: OK @@ -2536,21 +2485,21 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/72c02e88-b5a4-4fcc-858c-e9dd3f30d6b3?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/92fec6a6-0d8a-45d9-99f0-494b442fd458?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-14T09:21:21.2000988+00:00\",\r\n \"endTime\": - \"2021-04-14T09:27:44.5774545+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"72c02e88-b5a4-4fcc-858c-e9dd3f30d6b3\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:11:20.7858293+00:00\",\r\n \"endTime\": + \"2021-04-15T06:17:22.331107+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"92fec6a6-0d8a-45d9-99f0-494b442fd458\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:28:27 GMT + - Thu, 15 Apr 2021 06:17:25 GMT expires: - '-1' pragma: @@ -2567,7 +2516,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4173 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4185 status: code: 200 message: OK @@ -2597,7 +2546,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-14T09:21:21.2157256+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-15T06:11:20.8014564+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 10,\r\n \"hostCaching\": \"ReadWrite\",\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2617,7 +2566,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:28:27 GMT + - Thu, 15 Apr 2021 06:17:26 GMT expires: - '-1' pragma: @@ -2634,7 +2583,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1998,Microsoft.Compute/GetGalleryImageVersion30Min;9995 + - Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9997 status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_specialized_image.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_specialized_image.yaml index 24ed26097f4..a9cf2721173 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_specialized_image.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_specialized_image.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:18:57 GMT + - Thu, 15 Apr 2021 06:08:43 GMT expires: - '-1' pragma: @@ -70,11 +70,11 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_7XSGIDPGYYCS\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_OMEP44CCSUXQ\"\r\n },\r\n \ \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/2a6edd07-dc0b-4d74-b9b2-c1c76204c8cf?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/611edd72-0539-4e8a-aaf6-784e02c248e9?api-version=2019-12-01 cache-control: - no-cache content-length: @@ -82,7 +82,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:19:03 GMT + - Thu, 15 Apr 2021 06:08:49 GMT expires: - '-1' pragma: @@ -117,12 +117,12 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/2a6edd07-dc0b-4d74-b9b2-c1c76204c8cf?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/611edd72-0539-4e8a-aaf6-784e02c248e9?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-14T09:19:03.4479592+00:00\",\r\n \"endTime\": - \"2021-04-14T09:19:05.4166918+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"2a6edd07-dc0b-4d74-b9b2-c1c76204c8cf\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:08:49.0456211+00:00\",\r\n \"endTime\": + \"2021-04-15T06:08:49.3268906+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"611edd72-0539-4e8a-aaf6-784e02c248e9\"\r\n}" headers: cache-control: - no-cache @@ -131,7 +131,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:19:34 GMT + - Thu, 15 Apr 2021 06:09:20 GMT expires: - '-1' pragma: @@ -174,7 +174,7 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_7XSGIDPGYYCS\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_OMEP44CCSUXQ\"\r\n },\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -184,7 +184,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:19:34 GMT + - Thu, 15 Apr 2021 06:09:20 GMT expires: - '-1' pragma: @@ -201,7 +201,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2496 + - Microsoft.Compute/GetGallery3Min;345,Microsoft.Compute/GetGallery30Min;2495 status: code: 200 message: OK @@ -227,7 +227,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -236,7 +236,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:19:35 GMT + - Thu, 15 Apr 2021 06:09:20 GMT expires: - '-1' pragma: @@ -284,7 +284,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/cad4b80f-caaf-4972-b132-1a2fa63f79bc?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/55ce39ac-998f-4029-8c28-e4096bfaf038?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -292,7 +292,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:19:39 GMT + - Thu, 15 Apr 2021 06:09:26 GMT expires: - '-1' pragma: @@ -307,7 +307,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;749 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1194' status: code: 201 message: Created @@ -327,12 +327,12 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/cad4b80f-caaf-4972-b132-1a2fa63f79bc?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/55ce39ac-998f-4029-8c28-e4096bfaf038?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-14T09:19:38.8854501+00:00\",\r\n \"endTime\": - \"2021-04-14T09:19:39.1042039+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"cad4b80f-caaf-4972-b132-1a2fa63f79bc\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:09:25.4831205+00:00\",\r\n \"endTime\": + \"2021-04-15T06:09:25.5925133+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"55ce39ac-998f-4029-8c28-e4096bfaf038\"\r\n}" headers: cache-control: - no-cache @@ -341,7 +341,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:20:09 GMT + - Thu, 15 Apr 2021 06:09:56 GMT expires: - '-1' pragma: @@ -396,7 +396,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:20:10 GMT + - Thu, 15 Apr 2021 06:09:56 GMT expires: - '-1' pragma: @@ -413,7 +413,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;595,Microsoft.Compute/GetGalleryImage30Min;2995 + - Microsoft.Compute/GetGalleryImage3Min;596,Microsoft.Compute/GetGalleryImage30Min;2996 status: code: 200 message: OK @@ -439,7 +439,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -448,7 +448,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:20:11 GMT + - Thu, 15 Apr 2021 06:09:58 GMT expires: - '-1' pragma: @@ -527,13 +527,13 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Wed, 14 Apr 2021 09:20:11 GMT + - Thu, 15 Apr 2021 06:09:58 GMT etag: - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" expires: - - Wed, 14 Apr 2021 09:25:11 GMT + - Thu, 15 Apr 2021 06:14:58 GMT source-age: - - '62' + - '39' strict-transport-security: - max-age=31536000 vary: @@ -547,15 +547,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 8c6992ed499770a85d665e6773aa09dd899e0179 + - 1dfab3f58ea52b988e7b345369d04386d9572716 x-frame-options: - deny x-github-request-id: - - B82A:0EF1:2D6432:361BB8:60763DA4 + - 6736:0EE9:DD86D:11B8EF:6077A1F9 x-served-by: - - cache-qpg1221-QPG + - cache-qpg1234-QPG x-timer: - - S1618392012.753437,VS0,VE1 + - S1618466999.835566,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -589,7 +589,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:20:11 GMT + - Thu, 15 Apr 2021 06:09:58 GMT expires: - '-1' pragma: @@ -656,18 +656,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_G5wwJVrMtP6WUz1r6aJPaVgMsbZ0qXyi","name":"vm_deploy_G5wwJVrMtP6WUz1r6aJPaVgMsbZ0qXyi","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16249800001152442868","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-14T09:20:16.2255487Z","duration":"PT2.3204889S","correlationId":"794f2724-516a-40f1-8ca3-a331abe76a9d","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_eHbmjuPxVov0MCO9KziHZOLn1uhkmqVJ","name":"vm_deploy_eHbmjuPxVov0MCO9KziHZOLn1uhkmqVJ","type":"Microsoft.Resources/deployments","properties":{"templateHash":"2530473385198409913","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-15T06:10:02.1715652Z","duration":"PT1.9299113S","correlationId":"08c6ae5a-ae01-4995-a429-15264755a232","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_G5wwJVrMtP6WUz1r6aJPaVgMsbZ0qXyi/operationStatuses/08585832148715725719?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_eHbmjuPxVov0MCO9KziHZOLn1uhkmqVJ/operationStatuses/08585831398852359805?api-version=2020-10-01 cache-control: - no-cache content-length: - - '2782' + - '2781' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:20:16 GMT + - Thu, 15 Apr 2021 06:10:03 GMT expires: - '-1' pragma: @@ -698,7 +698,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585832148715725719?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585831398852359805?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -710,7 +710,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:20:47 GMT + - Thu, 15 Apr 2021 06:10:34 GMT expires: - '-1' pragma: @@ -741,7 +741,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585832148715725719?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585831398852359805?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -753,7 +753,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:21:18 GMT + - Thu, 15 Apr 2021 06:11:04 GMT expires: - '-1' pragma: @@ -787,16 +787,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_G5wwJVrMtP6WUz1r6aJPaVgMsbZ0qXyi","name":"vm_deploy_G5wwJVrMtP6WUz1r6aJPaVgMsbZ0qXyi","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16249800001152442868","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-14T09:20:50.0242739Z","duration":"PT36.1192141S","correlationId":"794f2724-516a-40f1-8ca3-a331abe76a9d","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_eHbmjuPxVov0MCO9KziHZOLn1uhkmqVJ","name":"vm_deploy_eHbmjuPxVov0MCO9KziHZOLn1uhkmqVJ","type":"Microsoft.Resources/deployments","properties":{"templateHash":"2530473385198409913","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-15T06:10:48.9810638Z","duration":"PT48.7394099S","correlationId":"08c6ae5a-ae01-4995-a429-15264755a232","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}' headers: cache-control: - no-cache content-length: - - '3847' + - '3846' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:21:18 GMT + - Thu, 15 Apr 2021 06:11:04 GMT expires: - '-1' pragma: @@ -831,16 +831,16 @@ interactions: body: string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"ebeb0936-01e5-43ed-bbec-a11a62fbfe42\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"8adb537f-1336-4411-9221-07b30b7fc3a2\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202103250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"vm1_disk1_f0bc08d7708e47299ae8095afc69ecff\",\r\n + \"Linux\",\r\n \"name\": \"vm1_disk1_ab7179a1f5a74d9ebea7b85f403bebea\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_f0bc08d7708e47299ae8095afc69ecff\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_ab7179a1f5a74d9ebea7b85f403bebea\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n \ \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": {\r\n @@ -855,15 +855,15 @@ interactions: [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \ \"message\": \"Guest Agent is running\",\r\n \"time\": - \"2021-04-14T09:21:14+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_disk1_f0bc08d7708e47299ae8095afc69ecff\",\r\n + \"2021-04-15T06:10:58+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_disk1_ab7179a1f5a74d9ebea7b85f403bebea\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-14T09:20:35.7855812+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-15T06:10:32.2782935+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-14T09:20:46.8017045+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-15T06:10:48.262756+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n \ }\r\n ]\r\n }\r\n }\r\n}" @@ -871,11 +871,11 @@ interactions: cache-control: - no-cache content-length: - - '3253' + - '3252' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:21:19 GMT + - Thu, 15 Apr 2021 06:11:06 GMT expires: - '-1' pragma: @@ -892,7 +892,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31977 + - Microsoft.Compute/LowCostGet3Min;3983,Microsoft.Compute/LowCostGet30Min;31938 status: code: 200 message: OK @@ -916,12 +916,12 @@ interactions: response: body: string: "{\r\n \"name\": \"vm1VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\r\n - \ \"etag\": \"W/\\\"212471c5-e5df-4fdb-8ad5-393f738fc5cc\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"0fca75fb-b14c-414e-bbc5-5f20a76f08f2\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"bc76fc27-6cdf-47ea-ba79-0710a91a8cab\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"7bb0d027-efdf-4fc9-9cac-185a7a7017c6\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm1\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\r\n - \ \"etag\": \"W/\\\"212471c5-e5df-4fdb-8ad5-393f738fc5cc\\\"\",\r\n + \ \"etag\": \"W/\\\"0fca75fb-b14c-414e-bbc5-5f20a76f08f2\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -930,8 +930,8 @@ interactions: \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": - \"pgcbhvylntkubk5plkyqmitthd.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-22-48-03-A6-8A\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"n3fjot0qn0dejfrnhzzduo0wfg.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-3A-CC-F9\",\r\n \"enableAcceleratedNetworking\": false,\r\n \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -945,9 +945,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:21:20 GMT + - Thu, 15 Apr 2021 06:11:06 GMT etag: - - W/"212471c5-e5df-4fdb-8ad5-393f738fc5cc" + - W/"0fca75fb-b14c-414e-bbc5-5f20a76f08f2" expires: - '-1' pragma: @@ -964,7 +964,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 75283a2a-0356-433f-b629-e4e661c4c42a + - 6d18593b-8981-4574-877f-b1db7dcde616 status: code: 200 message: OK @@ -988,11 +988,11 @@ interactions: response: body: string: "{\r\n \"name\": \"vm1PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\r\n - \ \"etag\": \"W/\\\"e228f436-989e-4d0d-bad7-2364705afc19\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"69f795e1-10c3-40b5-bdaf-88405ad5b64f\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"101facf8-564e-43b4-8788-1a418660008b\",\r\n - \ \"ipAddress\": \"137.135.59.164\",\r\n \"publicIPAddressVersion\": - \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + \"Succeeded\",\r\n \"resourceGuid\": \"fc166731-640c-4a81-9a05-0bda4964528a\",\r\n + \ \"ipAddress\": \"13.64.225.134\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" @@ -1000,13 +1000,13 @@ interactions: cache-control: - no-cache content-length: - - '998' + - '997' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:21:20 GMT + - Thu, 15 Apr 2021 06:11:06 GMT etag: - - W/"e228f436-989e-4d0d-bad7-2364705afc19" + - W/"69f795e1-10c3-40b5-bdaf-88405ad5b64f" expires: - '-1' pragma: @@ -1023,7 +1023,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ef0a0ca9-8ed0-4547-870e-bf53228c678a + - 038a75c8-9219-49f2-8086-785ebd6f8ae3 status: code: 200 message: OK @@ -1048,16 +1048,16 @@ interactions: body: string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"ebeb0936-01e5-43ed-bbec-a11a62fbfe42\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"8adb537f-1336-4411-9221-07b30b7fc3a2\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202103250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"vm1_disk1_f0bc08d7708e47299ae8095afc69ecff\",\r\n + \"Linux\",\r\n \"name\": \"vm1_disk1_ab7179a1f5a74d9ebea7b85f403bebea\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_f0bc08d7708e47299ae8095afc69ecff\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_ab7179a1f5a74d9ebea7b85f403bebea\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n \ \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": {\r\n @@ -1075,7 +1075,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:21:20 GMT + - Thu, 15 Apr 2021 06:11:07 GMT expires: - '-1' pragma: @@ -1092,7 +1092,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31976 + - Microsoft.Compute/LowCostGet3Min;3982,Microsoft.Compute/LowCostGet30Min;31937 status: code: 200 message: OK @@ -1112,10 +1112,10 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/vm1_disk1_f0bc08d7708e47299ae8095afc69ecff?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/vm1_disk1_ab7179a1f5a74d9ebea7b85f403bebea?api-version=2020-12-01 response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/vm1_disk1_f0bc08d7708e47299ae8095afc69ecff'' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/vm1_disk1_ab7179a1f5a74d9ebea7b85f403bebea'' under resource group ''cli_test_test_specialized_image_000001'' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: @@ -1126,7 +1126,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:21:21 GMT + - Thu, 15 Apr 2021 06:11:08 GMT expires: - '-1' pragma: @@ -1156,11 +1156,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_f0bc08d7708e47299ae8095afc69ecff?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_ab7179a1f5a74d9ebea7b85f403bebea?api-version=2020-12-01 response: body: - string: "{\r\n \"name\": \"vm1_disk1_f0bc08d7708e47299ae8095afc69ecff\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_f0bc08d7708e47299ae8095afc69ecff\",\r\n + string: "{\r\n \"name\": \"vm1_disk1_ab7179a1f5a74d9ebea7b85f403bebea\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_ab7179a1f5a74d9ebea7b85f403bebea\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n @@ -1169,19 +1169,19 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/canonical/ArtifactTypes/VMImage/Offers/ubuntuserver/Skus/18.04-lts/Versions/18.04.202103250\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-14T09:20:34.74053+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-15T06:10:31.2529896+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"f0bc08d7-708e-4729-9ae8-095afc69ecff\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"ab7179a1-f5a7-4d9e-bea7-b85f403bebea\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1435' + - '1437' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:21:22 GMT + - Thu, 15 Apr 2021 06:11:08 GMT expires: - '-1' pragma: @@ -1198,7 +1198,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4975,Microsoft.Compute/LowCostGet30Min;39966 + - Microsoft.Compute/LowCostGet3Min;4966,Microsoft.Compute/LowCostGet30Min;39940 status: code: 200 message: OK @@ -1224,7 +1224,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1233,7 +1233,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:21:22 GMT + - Thu, 15 Apr 2021 06:11:09 GMT expires: - '-1' pragma: @@ -1249,7 +1249,7 @@ interactions: message: OK - request: body: '{"location": "westus", "tags": {}, "sku": {"name": "Standard_LRS"}, "properties": - {"creationData": {"createOption": "Copy", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_f0bc08d7708e47299ae8095afc69ecff"}}}' + {"creationData": {"createOption": "Copy", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_ab7179a1f5a74d9ebea7b85f403bebea"}}}' headers: Accept: - application/json @@ -1268,19 +1268,19 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01 response: body: string: "{\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \ \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n - \ \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_f0bc08d7708e47299ae8095afc69ecff\",\r\n - \ \"sourceUniqueId\": \"f0bc08d7-708e-4729-9ae8-095afc69ecff\"\r\n },\r\n + \ \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_ab7179a1f5a74d9ebea7b85f403bebea\",\r\n + \ \"sourceUniqueId\": \"ab7179a1-f5a7-4d9e-bea7-b85f403bebea\"\r\n },\r\n \ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f5b63a26-bcfe-4d0d-a2f1-0741c113329f?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/6ad4c34c-a484-450a-8f8d-2cdc1aba7dcc?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -1288,11 +1288,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:21:24 GMT + - Thu, 15 Apr 2021 06:11:11 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f5b63a26-bcfe-4d0d-a2f1-0741c113329f?monitor=true&api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/6ad4c34c-a484-450a-8f8d-2cdc1aba7dcc?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -1305,7 +1305,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;998,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7998 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' status: code: 202 message: Accepted @@ -1325,34 +1325,34 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f5b63a26-bcfe-4d0d-a2f1-0741c113329f?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/6ad4c34c-a484-450a-8f8d-2cdc1aba7dcc?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-14T09:21:24.8670324+00:00\",\r\n \"endTime\": - \"2021-04-14T09:21:25.6639054+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-15T06:11:12.4092054+00:00\",\r\n \"endTime\": + \"2021-04-15T06:11:13.190462+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\",\r\n \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \ \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_f0bc08d7708e47299ae8095afc69ecff\",\r\n - \ \"sourceUniqueId\": \"f0bc08d7-708e-4729-9ae8-095afc69ecff\"\r\n },\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_ab7179a1f5a74d9ebea7b85f403bebea\",\r\n + \ \"sourceUniqueId\": \"ab7179a1-f5a7-4d9e-bea7-b85f403bebea\"\r\n },\r\n \ \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-14T09:21:24.8826371+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-15T06:11:12.4092054+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"4daeca81-df26-455c-9f15-9a6adb21795a\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"95904701-c258-4f21-b788-eaea47224ab0\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"f5b63a26-bcfe-4d0d-a2f1-0741c113329f\"\r\n}" + \"6ad4c34c-a484-450a-8f8d-2cdc1aba7dcc\"\r\n}" headers: cache-control: - no-cache content-length: - - '1406' + - '1405' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:21:26 GMT + - Thu, 15 Apr 2021 06:11:13 GMT expires: - '-1' pragma: @@ -1369,7 +1369,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49985,Microsoft.Compute/GetOperation30Min;399985 + - Microsoft.Compute/GetOperation3Min;49972,Microsoft.Compute/GetOperation30Min;399955 status: code: 200 message: OK @@ -1389,7 +1389,7 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\",\r\n @@ -1397,12 +1397,12 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \ \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_f0bc08d7708e47299ae8095afc69ecff\",\r\n - \ \"sourceUniqueId\": \"f0bc08d7-708e-4729-9ae8-095afc69ecff\"\r\n },\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_ab7179a1f5a74d9ebea7b85f403bebea\",\r\n + \ \"sourceUniqueId\": \"ab7179a1-f5a7-4d9e-bea7-b85f403bebea\"\r\n },\r\n \ \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-14T09:21:24.8826371+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-15T06:11:12.4092054+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"4daeca81-df26-455c-9f15-9a6adb21795a\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"95904701-c258-4f21-b788-eaea47224ab0\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -1412,7 +1412,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:21:27 GMT + - Thu, 15 Apr 2021 06:11:14 GMT expires: - '-1' pragma: @@ -1429,7 +1429,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4974,Microsoft.Compute/LowCostGet30Min;39965 + - Microsoft.Compute/LowCostGet3Min;4959,Microsoft.Compute/LowCostGet30Min;39933 status: code: 200 message: OK @@ -1455,7 +1455,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1464,7 +1464,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:21:27 GMT + - Thu, 15 Apr 2021 06:11:15 GMT expires: - '-1' pragma: @@ -1509,7 +1509,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-14T09:21:33.229228+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-15T06:11:21.2957399+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"hostCaching\": \"ReadWrite\",\r\n \ \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -1517,15 +1517,15 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/14d014c1-917d-44dd-a502-9879acd4302a?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/bcb32610-2192-40df-aa56-95ff681b398b?api-version=2020-09-30 cache-control: - no-cache content-length: - - '1139' + - '1140' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:21:33 GMT + - Thu, 15 Apr 2021 06:11:22 GMT expires: - '-1' pragma: @@ -1540,7 +1540,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;373,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1198 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1195' status: code: 201 message: Created @@ -1560,11 +1560,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/14d014c1-917d-44dd-a502-9879acd4302a?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/bcb32610-2192-40df-aa56-95ff681b398b?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-14T09:21:33.2136043+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"14d014c1-917d-44dd-a502-9879acd4302a\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:11:21.2800963+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"bcb32610-2192-40df-aa56-95ff681b398b\"\r\n}" headers: cache-control: - no-cache @@ -1573,7 +1573,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:22:34 GMT + - Thu, 15 Apr 2021 06:12:22 GMT expires: - '-1' pragma: @@ -1590,7 +1590,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4189 + - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4189 status: code: 200 message: OK @@ -1610,11 +1610,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/14d014c1-917d-44dd-a502-9879acd4302a?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/bcb32610-2192-40df-aa56-95ff681b398b?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-14T09:21:33.2136043+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"14d014c1-917d-44dd-a502-9879acd4302a\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:11:21.2800963+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"bcb32610-2192-40df-aa56-95ff681b398b\"\r\n}" headers: cache-control: - no-cache @@ -1623,7 +1623,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:23:35 GMT + - Thu, 15 Apr 2021 06:13:23 GMT expires: - '-1' pragma: @@ -1660,11 +1660,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/14d014c1-917d-44dd-a502-9879acd4302a?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/bcb32610-2192-40df-aa56-95ff681b398b?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-14T09:21:33.2136043+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"14d014c1-917d-44dd-a502-9879acd4302a\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:11:21.2800963+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"bcb32610-2192-40df-aa56-95ff681b398b\"\r\n}" headers: cache-control: - no-cache @@ -1673,7 +1673,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:24:36 GMT + - Thu, 15 Apr 2021 06:14:24 GMT expires: - '-1' pragma: @@ -1710,11 +1710,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/14d014c1-917d-44dd-a502-9879acd4302a?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/bcb32610-2192-40df-aa56-95ff681b398b?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-14T09:21:33.2136043+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"14d014c1-917d-44dd-a502-9879acd4302a\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:11:21.2800963+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"bcb32610-2192-40df-aa56-95ff681b398b\"\r\n}" headers: cache-control: - no-cache @@ -1723,7 +1723,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:25:36 GMT + - Thu, 15 Apr 2021 06:15:24 GMT expires: - '-1' pragma: @@ -1760,11 +1760,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/14d014c1-917d-44dd-a502-9879acd4302a?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/bcb32610-2192-40df-aa56-95ff681b398b?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-14T09:21:33.2136043+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"14d014c1-917d-44dd-a502-9879acd4302a\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:11:21.2800963+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"bcb32610-2192-40df-aa56-95ff681b398b\"\r\n}" headers: cache-control: - no-cache @@ -1773,7 +1773,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:26:37 GMT + - Thu, 15 Apr 2021 06:16:25 GMT expires: - '-1' pragma: @@ -1810,11 +1810,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/14d014c1-917d-44dd-a502-9879acd4302a?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/bcb32610-2192-40df-aa56-95ff681b398b?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-14T09:21:33.2136043+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"14d014c1-917d-44dd-a502-9879acd4302a\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:11:21.2800963+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"bcb32610-2192-40df-aa56-95ff681b398b\"\r\n}" headers: cache-control: - no-cache @@ -1823,7 +1823,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:27:38 GMT + - Thu, 15 Apr 2021 06:17:26 GMT expires: - '-1' pragma: @@ -1860,11 +1860,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/14d014c1-917d-44dd-a502-9879acd4302a?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/bcb32610-2192-40df-aa56-95ff681b398b?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-14T09:21:33.2136043+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"14d014c1-917d-44dd-a502-9879acd4302a\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:11:21.2800963+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"bcb32610-2192-40df-aa56-95ff681b398b\"\r\n}" headers: cache-control: - no-cache @@ -1873,7 +1873,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:28:38 GMT + - Thu, 15 Apr 2021 06:18:27 GMT expires: - '-1' pragma: @@ -1910,11 +1910,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/14d014c1-917d-44dd-a502-9879acd4302a?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/bcb32610-2192-40df-aa56-95ff681b398b?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-14T09:21:33.2136043+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"14d014c1-917d-44dd-a502-9879acd4302a\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:11:21.2800963+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"bcb32610-2192-40df-aa56-95ff681b398b\"\r\n}" headers: cache-control: - no-cache @@ -1923,7 +1923,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:29:39 GMT + - Thu, 15 Apr 2021 06:19:27 GMT expires: - '-1' pragma: @@ -1940,7 +1940,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4163 + - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4163 status: code: 200 message: OK @@ -1960,11 +1960,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/14d014c1-917d-44dd-a502-9879acd4302a?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/bcb32610-2192-40df-aa56-95ff681b398b?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-14T09:21:33.2136043+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"14d014c1-917d-44dd-a502-9879acd4302a\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:11:21.2800963+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"bcb32610-2192-40df-aa56-95ff681b398b\"\r\n}" headers: cache-control: - no-cache @@ -1973,7 +1973,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:30:40 GMT + - Thu, 15 Apr 2021 06:20:28 GMT expires: - '-1' pragma: @@ -1990,7 +1990,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4160 + - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4160 status: code: 200 message: OK @@ -2010,12 +2010,12 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/14d014c1-917d-44dd-a502-9879acd4302a?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/bcb32610-2192-40df-aa56-95ff681b398b?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-14T09:21:33.2136043+00:00\",\r\n \"endTime\": - \"2021-04-14T09:31:41.0419379+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"14d014c1-917d-44dd-a502-9879acd4302a\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:11:21.2800963+00:00\",\r\n \"endTime\": + \"2021-04-15T06:20:44.6087613+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"bcb32610-2192-40df-aa56-95ff681b398b\"\r\n}" headers: cache-control: - no-cache @@ -2024,7 +2024,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:31:40 GMT + - Thu, 15 Apr 2021 06:21:29 GMT expires: - '-1' pragma: @@ -2041,7 +2041,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4157 + - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4157 status: code: 200 message: OK @@ -2070,7 +2070,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-14T09:21:33.229228+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-15T06:11:21.2957399+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": \"ReadWrite\",\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2080,11 +2080,11 @@ interactions: cache-control: - no-cache content-length: - - '1165' + - '1166' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:31:40 GMT + - Thu, 15 Apr 2021 06:21:29 GMT expires: - '-1' pragma: @@ -2127,7 +2127,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2136,7 +2136,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:31:42 GMT + - Thu, 15 Apr 2021 06:21:30 GMT expires: - '-1' pragma: @@ -2184,7 +2184,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:31:42 GMT + - Thu, 15 Apr 2021 06:21:31 GMT expires: - '-1' pragma: @@ -2201,7 +2201,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;592,Microsoft.Compute/GetGalleryImage30Min;2980 + - Microsoft.Compute/GetGalleryImage3Min;591,Microsoft.Compute/GetGalleryImage30Min;2981 status: code: 200 message: OK @@ -2230,7 +2230,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-14T09:21:33.229228+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-15T06:11:21.2957399+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": \"ReadWrite\",\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2240,11 +2240,11 @@ interactions: cache-control: - no-cache content-length: - - '1165' + - '1166' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:31:42 GMT + - Thu, 15 Apr 2021 06:21:31 GMT expires: - '-1' pragma: @@ -2286,14 +2286,14 @@ interactions: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vm1VNET\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\r\n - \ \"etag\": \"W/\\\"e31d441e-e86d-4cf4-9f12-a7874ced3268\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"095dd961-4865-46ce-abd3-f6d68fb12ca9\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"d7138479-6c0b-40d5-abef-5ab10622733b\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"4f974a6f-6e50-4486-962d-3e723a3b562e\",\r\n \ \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n \ ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"vm1Subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\r\n - \ \"etag\": \"W/\\\"e31d441e-e86d-4cf4-9f12-a7874ced3268\\\"\",\r\n + \ \"etag\": \"W/\\\"095dd961-4865-46ce-abd3-f6d68fb12ca9\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n @@ -2309,7 +2309,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:31:43 GMT + - Thu, 15 Apr 2021 06:21:31 GMT expires: - '-1' pragma: @@ -2326,7 +2326,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4536062a-7a1b-4891-b98c-46baa47dcb66 + - 9789923a-ed10-45ee-9d1b-e1b2e8b1fa14 status: code: 200 message: OK @@ -2378,18 +2378,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_5X8rLmmWK7UaA3NC8NiGdrP8Es77wemi","name":"vm_deploy_5X8rLmmWK7UaA3NC8NiGdrP8Es77wemi","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17322333019619755427","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-14T09:31:45.9893889Z","duration":"PT1.2178427S","correlationId":"fa7fe497-17ec-4164-a268-cc25484d9652","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_qmXPCIBFCB9RHN1ovxgofPHRpUqzPCTD","name":"vm_deploy_qmXPCIBFCB9RHN1ovxgofPHRpUqzPCTD","type":"Microsoft.Resources/deployments","properties":{"templateHash":"48601262867817595","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-15T06:21:36.4092441Z","duration":"PT2.2874293S","correlationId":"51d42868-0531-410c-a7e8-fb9b5bb4cade","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_5X8rLmmWK7UaA3NC8NiGdrP8Es77wemi/operationStatuses/08585832141807060953?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_qmXPCIBFCB9RHN1ovxgofPHRpUqzPCTD/operationStatuses/08585831391913558231?api-version=2020-10-01 cache-control: - no-cache content-length: - - '2444' + - '2441' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:31:46 GMT + - Thu, 15 Apr 2021 06:21:37 GMT expires: - '-1' pragma: @@ -2399,7 +2399,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -2420,7 +2420,50 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585832141807060953?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585831391913558231?api-version=2020-10-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Apr 2021 06:22:07 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585831391913558231?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -2432,7 +2475,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:32:17 GMT + - Thu, 15 Apr 2021 06:22:38 GMT expires: - '-1' pragma: @@ -2466,16 +2509,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_5X8rLmmWK7UaA3NC8NiGdrP8Es77wemi","name":"vm_deploy_5X8rLmmWK7UaA3NC8NiGdrP8Es77wemi","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17322333019619755427","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-14T09:32:16.0813416Z","duration":"PT31.3097954S","correlationId":"fa7fe497-17ec-4164-a268-cc25484d9652","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_qmXPCIBFCB9RHN1ovxgofPHRpUqzPCTD","name":"vm_deploy_qmXPCIBFCB9RHN1ovxgofPHRpUqzPCTD","type":"Microsoft.Resources/deployments","properties":{"templateHash":"48601262867817595","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-15T06:22:19.0969325Z","duration":"PT44.9751177S","correlationId":"51d42868-0531-410c-a7e8-fb9b5bb4cade","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"}]}}' headers: cache-control: - no-cache content-length: - - '3305' + - '3302' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:32:17 GMT + - Thu, 15 Apr 2021 06:22:39 GMT expires: - '-1' pragma: @@ -2510,15 +2553,15 @@ interactions: body: string: "{\r\n \"name\": \"vm2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"c39ba4f1-e0af-48d2-b294-d05d463c7f85\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"69a3ea5c-7ae3-40f1-a078-1354d0fbcbce\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0\",\r\n \ \"exactVersion\": \"1.0.0\"\r\n },\r\n \"osDisk\": {\r\n - \ \"osType\": \"Linux\",\r\n \"name\": \"vm2_OsDisk_1_224cb12d96f24c5e9ad267f4ebd07826\",\r\n + \ \"osType\": \"Linux\",\r\n \"name\": \"vm2_OsDisk_1_ff1af6febad84fd48d24233f02f6ada6\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm2_OsDisk_1_224cb12d96f24c5e9ad267f4ebd07826\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm2_OsDisk_1_ff1af6febad84fd48d24233f02f6ada6\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\"}]},\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": @@ -2526,18 +2569,18 @@ interactions: \ {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \ \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet - populated.\",\r\n \"time\": \"2021-04-14T09:32:19+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2021-04-15T06:22:40+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"vm2_OsDisk_1_224cb12d96f24c5e9ad267f4ebd07826\",\r\n \"statuses\": + \"vm2_OsDisk_1_ff1af6febad84fd48d24233f02f6ada6\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-14T09:32:04.8636808+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-15T06:21:56.248575+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"OSState/specialized\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM specialized\"\r\n \ },\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-14T09:32:12.7547238+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-15T06:22:15.9674472+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n \ }\r\n ]\r\n }\r\n }\r\n}" @@ -2545,11 +2588,11 @@ interactions: cache-control: - no-cache content-length: - - '3019' + - '3018' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:32:18 GMT + - Thu, 15 Apr 2021 06:22:40 GMT expires: - '-1' pragma: @@ -2566,7 +2609,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31974 + - Microsoft.Compute/LowCostGet3Min;3978,Microsoft.Compute/LowCostGet30Min;31809 status: code: 200 message: OK @@ -2590,12 +2633,12 @@ interactions: response: body: string: "{\r\n \"name\": \"vm2VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\",\r\n - \ \"etag\": \"W/\\\"fbf00fcc-9144-4088-a231-63fa8273915b\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"239f0b3d-22b5-4720-8c0b-c90c824c310f\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"b81795a4-629f-47da-9e04-cdeb687882a3\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"9943591b-1276-46c6-b492-80a6b7dce5be\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm2\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2\",\r\n - \ \"etag\": \"W/\\\"fbf00fcc-9144-4088-a231-63fa8273915b\\\"\",\r\n + \ \"etag\": \"W/\\\"239f0b3d-22b5-4720-8c0b-c90c824c310f\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": @@ -2604,8 +2647,8 @@ interactions: \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": - \"pgcbhvylntkubk5plkyqmitthd.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-31-20-BD\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"n3fjot0qn0dejfrnhzzduo0wfg.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-38-2D-94\",\r\n \"enableAcceleratedNetworking\": false,\r\n \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -2619,9 +2662,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:32:19 GMT + - Thu, 15 Apr 2021 06:22:40 GMT etag: - - W/"fbf00fcc-9144-4088-a231-63fa8273915b" + - W/"239f0b3d-22b5-4720-8c0b-c90c824c310f" expires: - '-1' pragma: @@ -2638,7 +2681,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 15e01164-b351-466f-88cf-bd125939ef56 + - 0cd30b69-b789-4bd0-9230-3add08951a0e status: code: 200 message: OK @@ -2662,10 +2705,10 @@ interactions: response: body: string: "{\r\n \"name\": \"vm2PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\",\r\n - \ \"etag\": \"W/\\\"a19d52be-7aeb-4168-9dd2-7106129b0ab1\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"d3704b5c-3a8e-4df2-ba0e-241ff7cd8044\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"97820ae1-c2f3-4eb6-a48a-522b34129ad1\",\r\n - \ \"ipAddress\": \"137.135.57.99\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"23adfe40-f624-42f2-9010-f21dac353065\",\r\n + \ \"ipAddress\": \"13.91.121.33\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n @@ -2674,13 +2717,13 @@ interactions: cache-control: - no-cache content-length: - - '997' + - '996' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:32:19 GMT + - Thu, 15 Apr 2021 06:22:40 GMT etag: - - W/"a19d52be-7aeb-4168-9dd2-7106129b0ab1" + - W/"d3704b5c-3a8e-4df2-ba0e-241ff7cd8044" expires: - '-1' pragma: @@ -2697,7 +2740,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 488d0e7d-e3f1-405b-8d26-e85d6ef46f07 + - 67fefde1-7d8d-4ec1-b5aa-07be047a67db status: code: 200 message: OK @@ -2723,7 +2766,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2732,7 +2775,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:32:20 GMT + - Thu, 15 Apr 2021 06:22:41 GMT expires: - '-1' pragma: @@ -2780,7 +2823,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:32:20 GMT + - Thu, 15 Apr 2021 06:22:42 GMT expires: - '-1' pragma: @@ -2797,7 +2840,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;589,Microsoft.Compute/GetGalleryImage30Min;2977 + - Microsoft.Compute/GetGalleryImage3Min;595,Microsoft.Compute/GetGalleryImage30Min;2978 status: code: 200 message: OK @@ -2826,7 +2869,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-14T09:21:33.229228+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-15T06:11:21.2957399+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": \"ReadWrite\",\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2836,11 +2879,11 @@ interactions: cache-control: - no-cache content-length: - - '1165' + - '1166' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:32:20 GMT + - Thu, 15 Apr 2021 06:22:43 GMT expires: - '-1' pragma: @@ -2882,14 +2925,14 @@ interactions: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vm1VNET\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\r\n - \ \"etag\": \"W/\\\"e1098bcf-f426-47fa-af4a-054c749d5ad0\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"16f20838-a024-4f01-a1fa-cb10538c5574\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"d7138479-6c0b-40d5-abef-5ab10622733b\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"4f974a6f-6e50-4486-962d-3e723a3b562e\",\r\n \ \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n \ ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"vm1Subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\r\n - \ \"etag\": \"W/\\\"e1098bcf-f426-47fa-af4a-054c749d5ad0\\\"\",\r\n + \ \"etag\": \"W/\\\"16f20838-a024-4f01-a1fa-cb10538c5574\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n @@ -2906,7 +2949,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:32:22 GMT + - Thu, 15 Apr 2021 06:22:43 GMT expires: - '-1' pragma: @@ -2923,7 +2966,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1fbebadf-c8cc-4df2-b3d2-b44d663d418d + - 8b0edb7c-ec1b-4da3-ad2f-af48a61371c8 status: code: 200 message: OK @@ -2951,8 +2994,8 @@ interactions: null}}, "virtualMachineProfile": {"storageProfile": {"osDisk": {"createOption": "FromImage", "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0"}}, - "networkProfile": {"networkInterfaceConfigurations": [{"name": "vmss1817cNic", - "properties": {"primary": "true", "ipConfigurations": [{"name": "vmss1817cIPConfig", + "networkProfile": {"networkInterfaceConfigurations": [{"name": "vmss1508eNic", + "properties": {"primary": "true", "ipConfigurations": [{"name": "vmss1508eIPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"}, "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}], "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}}, @@ -2984,18 +3027,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_uP02kfrC6GWb3hAEKlfprWHMdWWR4mMB","name":"vmss_deploy_uP02kfrC6GWb3hAEKlfprWHMdWWR4mMB","type":"Microsoft.Resources/deployments","properties":{"templateHash":"18003282430716128804","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-14T09:32:26.4982685Z","duration":"PT1.5913391S","correlationId":"3fc7375f-1ee1-457b-8a63-ae9e463187bd","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_CGGHclDxXciNrkneNi0ahrUlNCo9cONy","name":"vmss_deploy_CGGHclDxXciNrkneNi0ahrUlNCo9cONy","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5302804673372156977","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-15T06:22:49.1500286Z","duration":"PT2.3861105S","correlationId":"3ca7fa41-31b6-4290-892e-a8a5a7222c31","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_uP02kfrC6GWb3hAEKlfprWHMdWWR4mMB/operationStatuses/08585832141405707003?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_CGGHclDxXciNrkneNi0ahrUlNCo9cONy/operationStatuses/08585831391187137126?api-version=2020-10-01 cache-control: - no-cache content-length: - - '2106' + - '2105' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:32:28 GMT + - Thu, 15 Apr 2021 06:22:50 GMT expires: - '-1' pragma: @@ -3026,7 +3069,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585832141405707003?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585831391187137126?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -3038,7 +3081,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:32:58 GMT + - Thu, 15 Apr 2021 06:23:22 GMT expires: - '-1' pragma: @@ -3069,7 +3112,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585832141405707003?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585831391187137126?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -3081,7 +3124,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:33:29 GMT + - Thu, 15 Apr 2021 06:23:52 GMT expires: - '-1' pragma: @@ -3115,16 +3158,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_uP02kfrC6GWb3hAEKlfprWHMdWWR4mMB","name":"vmss_deploy_uP02kfrC6GWb3hAEKlfprWHMdWWR4mMB","type":"Microsoft.Resources/deployments","properties":{"templateHash":"18003282430716128804","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-14T09:33:03.6834872Z","duration":"PT38.7765578S","correlationId":"3fc7375f-1ee1-457b-8a63-ae9e463187bd","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual","rollingUpgradePolicy":{"maxBatchInstancePercent":20,"maxUnhealthyInstancePercent":20,"maxUnhealthyUpgradedInstancePercent":20,"pauseTimeBetweenBatches":"PT0S"}},"virtualMachineProfile":{"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss1817cNic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss1817cIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"07188822-2d2d-4d5b-9d05-b233be15fba6"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_CGGHclDxXciNrkneNi0ahrUlNCo9cONy","name":"vmss_deploy_CGGHclDxXciNrkneNi0ahrUlNCo9cONy","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5302804673372156977","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-15T06:23:34.5892659Z","duration":"PT47.8253478S","correlationId":"3ca7fa41-31b6-4290-892e-a8a5a7222c31","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual","rollingUpgradePolicy":{"maxBatchInstancePercent":20,"maxUnhealthyInstancePercent":20,"maxUnhealthyUpgradedInstancePercent":20,"pauseTimeBetweenBatches":"PT0S"}},"virtualMachineProfile":{"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss1508eNic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss1508eIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"5016855a-c1b5-4244-9d35-3d3c090745e0"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"}]}}' headers: cache-control: - no-cache content-length: - - '4689' + - '4688' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:33:30 GMT + - Thu, 15 Apr 2021 06:23:53 GMT expires: - '-1' pragma: @@ -3160,7 +3203,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3169,7 +3212,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:33:31 GMT + - Thu, 15 Apr 2021 06:23:54 GMT expires: - '-1' pragma: @@ -3205,7 +3248,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3214,7 +3257,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:33:31 GMT + - Thu, 15 Apr 2021 06:23:55 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_disk_max_shares_etc.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_disk_max_shares_etc.yaml index 97feda36c76..73b47218501 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_disk_max_shares_etc.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_disk_max_shares_etc.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:18:57 GMT + - Thu, 15 Apr 2021 06:08:44 GMT expires: - '-1' pragma: @@ -78,7 +78,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/44835d65-bb8c-45b8-9efe-c228052f6d1d?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/842f8748-2929-4e15-b751-d6aaabf20aa9?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -86,11 +86,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:19:02 GMT + - Thu, 15 Apr 2021 06:08:49 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/44835d65-bb8c-45b8-9efe-c228052f6d1d?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/842f8748-2929-4e15-b751-d6aaabf20aa9?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -103,7 +103,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 202 message: Accepted @@ -123,11 +123,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/44835d65-bb8c-45b8-9efe-c228052f6d1d?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/842f8748-2929-4e15-b751-d6aaabf20aa9?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-14T09:19:02.5374391+00:00\",\r\n \"endTime\": - \"2021-04-14T09:19:03.5374434+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-15T06:08:49.5479752+00:00\",\r\n \"endTime\": + \"2021-04-15T06:08:50.6104827+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n @@ -137,11 +137,11 @@ interactions: 10,\r\n \"diskIOPSReadWrite\": 100,\r\n \"diskMBpsReadWrite\": 13,\r\n \ \"readOnly\": false,\r\n \"diskIOPSReadOnly\": 200,\r\n \"diskMBpsReadOnly\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-14T09:19:02.5374391+00:00\",\r\n + \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-15T06:08:49.5636487+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"5aaea554-9d16-453e-a7d2-f94700b25cb3\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"8bca0cac-9408-4ae6-afaa-6447dee6fecc\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"44835d65-bb8c-45b8-9efe-c228052f6d1d\"\r\n}" + \"842f8748-2929-4e15-b751-d6aaabf20aa9\"\r\n}" headers: cache-control: - no-cache @@ -150,7 +150,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:19:04 GMT + - Thu, 15 Apr 2021 06:08:51 GMT expires: - '-1' pragma: @@ -167,7 +167,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399999 + - Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399982 status: code: 200 message: OK @@ -198,9 +198,9 @@ interactions: 10,\r\n \"diskIOPSReadWrite\": 100,\r\n \"diskMBpsReadWrite\": 13,\r\n \ \"readOnly\": false,\r\n \"diskIOPSReadOnly\": 200,\r\n \"diskMBpsReadOnly\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-14T09:19:02.5374391+00:00\",\r\n + \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-15T06:08:49.5636487+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"5aaea554-9d16-453e-a7d2-f94700b25cb3\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"8bca0cac-9408-4ae6-afaa-6447dee6fecc\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -210,7 +210,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:19:04 GMT + - Thu, 15 Apr 2021 06:08:52 GMT expires: - '-1' pragma: @@ -227,7 +227,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4992,Microsoft.Compute/LowCostGet30Min;39990 + - Microsoft.Compute/LowCostGet3Min;4985,Microsoft.Compute/LowCostGet30Min;39973 status: code: 200 message: OK @@ -258,9 +258,9 @@ interactions: 10,\r\n \"diskIOPSReadWrite\": 100,\r\n \"diskMBpsReadWrite\": 13,\r\n \ \"readOnly\": false,\r\n \"diskIOPSReadOnly\": 200,\r\n \"diskMBpsReadOnly\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-14T09:19:02.5374391+00:00\",\r\n + \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-15T06:08:49.5636487+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"5aaea554-9d16-453e-a7d2-f94700b25cb3\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"8bca0cac-9408-4ae6-afaa-6447dee6fecc\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -270,7 +270,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:19:05 GMT + - Thu, 15 Apr 2021 06:08:52 GMT expires: - '-1' pragma: @@ -287,7 +287,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4991,Microsoft.Compute/LowCostGet30Min;39989 + - Microsoft.Compute/LowCostGet3Min;4984,Microsoft.Compute/LowCostGet30Min;39972 status: code: 200 message: OK @@ -329,7 +329,7 @@ interactions: \ \"faultDomain\": 0,\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/e7dd0666-1534-47ae-ad70-2a27e8522b49?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/42def184-64a6-42e5-9842-5a395b0ad989?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -337,11 +337,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:19:06 GMT + - Thu, 15 Apr 2021 06:08:54 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/e7dd0666-1534-47ae-ad70-2a27e8522b49?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/42def184-64a6-42e5-9842-5a395b0ad989?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -354,7 +354,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7998 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 202 message: Accepted @@ -374,11 +374,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/e7dd0666-1534-47ae-ad70-2a27e8522b49?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/42def184-64a6-42e5-9842-5a395b0ad989?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-14T09:19:07.1624273+00:00\",\r\n \"endTime\": - \"2021-04-14T09:19:07.3186674+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-15T06:08:54.6104909+00:00\",\r\n \"endTime\": + \"2021-04-15T06:08:54.7511222+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n @@ -388,11 +388,11 @@ interactions: 10,\r\n \"diskIOPSReadWrite\": 100,\r\n \"diskMBpsReadWrite\": 13,\r\n \ \"readOnly\": false,\r\n \"diskIOPSReadOnly\": 250,\r\n \"diskMBpsReadOnly\": 40,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-14T09:19:02.5374391+00:00\",\r\n + \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-15T06:08:49.5636487+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"5aaea554-9d16-453e-a7d2-f94700b25cb3\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"8bca0cac-9408-4ae6-afaa-6447dee6fecc\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"e7dd0666-1534-47ae-ad70-2a27e8522b49\"\r\n}" + \"42def184-64a6-42e5-9842-5a395b0ad989\"\r\n}" headers: cache-control: - no-cache @@ -401,7 +401,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:19:09 GMT + - Thu, 15 Apr 2021 06:08:56 GMT expires: - '-1' pragma: @@ -418,7 +418,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399997 + - Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399980 status: code: 200 message: OK @@ -449,9 +449,9 @@ interactions: 10,\r\n \"diskIOPSReadWrite\": 100,\r\n \"diskMBpsReadWrite\": 13,\r\n \ \"readOnly\": false,\r\n \"diskIOPSReadOnly\": 250,\r\n \"diskMBpsReadOnly\": 40,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-14T09:19:02.5374391+00:00\",\r\n + \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-15T06:08:49.5636487+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"5aaea554-9d16-453e-a7d2-f94700b25cb3\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"8bca0cac-9408-4ae6-afaa-6447dee6fecc\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -461,7 +461,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:19:09 GMT + - Thu, 15 Apr 2021 06:08:57 GMT expires: - '-1' pragma: @@ -478,7 +478,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4989,Microsoft.Compute/LowCostGet30Min;39987 + - Microsoft.Compute/LowCostGet3Min;4982,Microsoft.Compute/LowCostGet30Min;39970 status: code: 200 message: OK @@ -504,7 +504,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -513,7 +513,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:19:09 GMT + - Thu, 15 Apr 2021 06:08:57 GMT expires: - '-1' pragma: @@ -560,7 +560,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/e12b2c32-1784-414e-83d5-9c100a52d089?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/66bd34b0-78df-43af-b656-2cddb3ccfea2?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -568,11 +568,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:19:15 GMT + - Thu, 15 Apr 2021 06:09:02 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/e12b2c32-1784-414e-83d5-9c100a52d089?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/66bd34b0-78df-43af-b656-2cddb3ccfea2?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -605,11 +605,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/e12b2c32-1784-414e-83d5-9c100a52d089?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/66bd34b0-78df-43af-b656-2cddb3ccfea2?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-14T09:19:15.0687122+00:00\",\r\n \"endTime\": - \"2021-04-14T09:19:15.8968175+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-15T06:09:02.9073308+00:00\",\r\n \"endTime\": + \"2021-04-15T06:09:03.7823252+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d2\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n @@ -619,11 +619,11 @@ interactions: \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202002180\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-14T09:19:15.0999485+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-15T06:09:02.9385827+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"5b4bf4e4-c621-4ce5-8660-33060158b4df\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"194c8d43-b2e8-4108-9ab5-d3219c9ef412\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"e12b2c32-1784-414e-83d5-9c100a52d089\"\r\n}" + \ },\r\n \"name\": \"66bd34b0-78df-43af-b656-2cddb3ccfea2\"\r\n}" headers: cache-control: - no-cache @@ -632,7 +632,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:19:17 GMT + - Thu, 15 Apr 2021 06:09:04 GMT expires: - '-1' pragma: @@ -649,7 +649,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49995,Microsoft.Compute/GetOperation30Min;399995 + - Microsoft.Compute/GetOperation3Min;49995,Microsoft.Compute/GetOperation30Min;399978 status: code: 200 message: OK @@ -680,9 +680,9 @@ interactions: \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202002180\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-14T09:19:15.0999485+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-15T06:09:02.9385827+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"5b4bf4e4-c621-4ce5-8660-33060158b4df\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"194c8d43-b2e8-4108-9ab5-d3219c9ef412\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}" headers: cache-control: @@ -692,7 +692,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:19:17 GMT + - Thu, 15 Apr 2021 06:09:05 GMT expires: - '-1' pragma: @@ -709,7 +709,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4985,Microsoft.Compute/LowCostGet30Min;39983 + - Microsoft.Compute/LowCostGet3Min;4993,Microsoft.Compute/LowCostGet30Min;39967 status: code: 200 message: OK @@ -735,7 +735,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -744,7 +744,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:19:18 GMT + - Thu, 15 Apr 2021 06:09:05 GMT expires: - '-1' pragma: @@ -792,7 +792,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:19:19 GMT + - Thu, 15 Apr 2021 06:09:07 GMT expires: - '-1' pragma: @@ -809,7 +809,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73998 + - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73997 status: code: 200 message: OK @@ -846,7 +846,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4389f8e2-1fd8-4cfb-a1d3-99088d9b028f?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/58d8984e-e6f8-4314-9785-24a8dcfa453c?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -854,11 +854,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:19:23 GMT + - Thu, 15 Apr 2021 06:09:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4389f8e2-1fd8-4cfb-a1d3-99088d9b028f?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/58d8984e-e6f8-4314-9785-24a8dcfa453c?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -871,7 +871,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateDisks3Min;996,Microsoft.Compute/CreateUpdateDisks30Min;7996 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted @@ -891,11 +891,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4389f8e2-1fd8-4cfb-a1d3-99088d9b028f?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/58d8984e-e6f8-4314-9785-24a8dcfa453c?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-14T09:19:24.7249321+00:00\",\r\n \"endTime\": - \"2021-04-14T09:19:25.3655392+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-15T06:09:09.3291924+00:00\",\r\n \"endTime\": + \"2021-04-15T06:09:09.891717+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d3\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n @@ -905,20 +905,20 @@ interactions: \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202002180\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-14T09:19:24.7405363+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-15T06:09:09.3291924+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"1f96c928-6ec5-4ec2-b6b1-373e6449cd31\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"5da1725c-7884-47eb-a622-ecaa72b16521\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"4389f8e2-1fd8-4cfb-a1d3-99088d9b028f\"\r\n}" + \ },\r\n \"name\": \"58d8984e-e6f8-4314-9785-24a8dcfa453c\"\r\n}" headers: cache-control: - no-cache content-length: - - '1424' + - '1423' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:19:26 GMT + - Thu, 15 Apr 2021 06:09:11 GMT expires: - '-1' pragma: @@ -935,7 +935,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49993,Microsoft.Compute/GetOperation30Min;399993 + - Microsoft.Compute/GetOperation3Min;49993,Microsoft.Compute/GetOperation30Min;399976 status: code: 200 message: OK @@ -966,9 +966,9 @@ interactions: \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202002180\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-14T09:19:24.7405363+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-15T06:09:09.3291924+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"1f96c928-6ec5-4ec2-b6b1-373e6449cd31\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"5da1725c-7884-47eb-a622-ecaa72b16521\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}" headers: cache-control: @@ -978,7 +978,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:19:26 GMT + - Thu, 15 Apr 2021 06:09:11 GMT expires: - '-1' pragma: @@ -995,7 +995,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4982,Microsoft.Compute/LowCostGet30Min;39980 + - Microsoft.Compute/LowCostGet3Min;4990,Microsoft.Compute/LowCostGet30Min;39964 status: code: 200 message: OK @@ -1021,7 +1021,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1030,7 +1030,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:19:28 GMT + - Thu, 15 Apr 2021 06:09:11 GMT expires: - '-1' pragma: @@ -1070,11 +1070,11 @@ interactions: string: "{\r\n \"name\": \"g1000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-G1J5TXJMLJA466XI2WUW\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-G1RHN5KHX6TJ4B6H6TLQ\"\r\n },\r\n \ \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/254eea48-ef90-41d3-bcec-d0501b346f6b?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/e5835521-5e59-4c5f-bed6-2d53a2b35e76?api-version=2019-12-01 cache-control: - no-cache content-length: @@ -1082,7 +1082,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:19:34 GMT + - Thu, 15 Apr 2021 06:09:19 GMT expires: - '-1' pragma: @@ -1097,7 +1097,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateGallery3Min;48,Microsoft.Compute/CreateUpdateGallery30Min;298 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -1117,12 +1117,12 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/254eea48-ef90-41d3-bcec-d0501b346f6b?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/e5835521-5e59-4c5f-bed6-2d53a2b35e76?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-14T09:19:33.1979338+00:00\",\r\n \"endTime\": - \"2021-04-14T09:19:33.3073089+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"254eea48-ef90-41d3-bcec-d0501b346f6b\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:09:17.8112721+00:00\",\r\n \"endTime\": + \"2021-04-15T06:09:17.9519111+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"e5835521-5e59-4c5f-bed6-2d53a2b35e76\"\r\n}" headers: cache-control: - no-cache @@ -1131,7 +1131,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:20:04 GMT + - Thu, 15 Apr 2021 06:09:49 GMT expires: - '-1' pragma: @@ -1174,7 +1174,7 @@ interactions: string: "{\r\n \"name\": \"g1000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-G1J5TXJMLJA466XI2WUW\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-G1RHN5KHX6TJ4B6H6TLQ\"\r\n },\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -1184,7 +1184,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:20:04 GMT + - Thu, 15 Apr 2021 06:09:49 GMT expires: - '-1' pragma: @@ -1228,7 +1228,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1237,7 +1237,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:20:04 GMT + - Thu, 15 Apr 2021 06:09:50 GMT expires: - '-1' pragma: @@ -1288,7 +1288,7 @@ interactions: \ },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/dcfd0f8e-ebdf-41e4-9861-cf3fb85d572c?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/13589bad-e3bd-4478-8833-dad5bcb7db6f?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -1296,7 +1296,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:20:11 GMT + - Thu, 15 Apr 2021 06:09:56 GMT expires: - '-1' pragma: @@ -1311,7 +1311,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateGalleryImage3Min;148,Microsoft.Compute/CreateUpdateGalleryImage30Min;748 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1195' status: code: 201 message: Created @@ -1332,12 +1332,12 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/dcfd0f8e-ebdf-41e4-9861-cf3fb85d572c?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/13589bad-e3bd-4478-8833-dad5bcb7db6f?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-14T09:20:10.7604229+00:00\",\r\n \"endTime\": - \"2021-04-14T09:20:10.9635306+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"dcfd0f8e-ebdf-41e4-9861-cf3fb85d572c\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:09:56.2019353+00:00\",\r\n \"endTime\": + \"2021-04-15T06:09:56.3113089+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"13589bad-e3bd-4478-8833-dad5bcb7db6f\"\r\n}" headers: cache-control: - no-cache @@ -1346,7 +1346,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:20:42 GMT + - Thu, 15 Apr 2021 06:10:26 GMT expires: - '-1' pragma: @@ -1403,7 +1403,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:20:43 GMT + - Thu, 15 Apr 2021 06:10:27 GMT expires: - '-1' pragma: @@ -1420,7 +1420,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;590,Microsoft.Compute/GetGalleryImage30Min;2990 + - Microsoft.Compute/GetGalleryImage3Min;592,Microsoft.Compute/GetGalleryImage30Min;2992 status: code: 200 message: OK @@ -1446,7 +1446,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1455,7 +1455,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:20:43 GMT + - Thu, 15 Apr 2021 06:10:28 GMT expires: - '-1' pragma: @@ -1500,7 +1500,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/49538a73-e779-4292-b82e-f5475e163cda?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/e352699a-db38-4b53-a417-9673d87bb855?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -1508,11 +1508,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:20:47 GMT + - Thu, 15 Apr 2021 06:10:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/49538a73-e779-4292-b82e-f5475e163cda?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/e352699a-db38-4b53-a417-9673d87bb855?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -1525,7 +1525,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateDisks3Min;995,Microsoft.Compute/CreateUpdateDisks30Min;7995 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' status: code: 202 message: Accepted @@ -1545,11 +1545,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/49538a73-e779-4292-b82e-f5475e163cda?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/e352699a-db38-4b53-a417-9673d87bb855?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-14T09:20:48.4436673+00:00\",\r\n \"endTime\": - \"2021-04-14T09:20:48.5374208+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-15T06:10:32.8936159+00:00\",\r\n \"endTime\": + \"2021-04-15T06:10:33.0342454+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"disk\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n @@ -1558,10 +1558,10 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-04-14T09:20:48.4436673+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-15T06:10:32.8936159+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"133eab51-ec89-44d6-9a71-20d47486bd8e\",\r\n \"networkAccessPolicy\": - \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"49538a73-e779-4292-b82e-f5475e163cda\"\r\n}" + \ \"uniqueId\": \"791abf49-d37d-4545-b30e-f08932aeafe2\",\r\n \"networkAccessPolicy\": + \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"e352699a-db38-4b53-a417-9673d87bb855\"\r\n}" headers: cache-control: - no-cache @@ -1570,7 +1570,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:20:49 GMT + - Thu, 15 Apr 2021 06:10:35 GMT expires: - '-1' pragma: @@ -1587,7 +1587,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49991,Microsoft.Compute/GetOperation30Min;399991 + - Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399972 status: code: 200 message: OK @@ -1617,9 +1617,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-04-14T09:20:48.4436673+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-15T06:10:32.8936159+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"133eab51-ec89-44d6-9a71-20d47486bd8e\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"791abf49-d37d-4545-b30e-f08932aeafe2\",\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: @@ -1629,7 +1629,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:20:50 GMT + - Thu, 15 Apr 2021 06:10:35 GMT expires: - '-1' pragma: @@ -1646,7 +1646,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4980,Microsoft.Compute/LowCostGet30Min;39975 + - Microsoft.Compute/LowCostGet3Min;4982,Microsoft.Compute/LowCostGet30Min;39956 status: code: 200 message: OK @@ -1666,7 +1666,7 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/disk?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/disk?api-version=2020-12-01 response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/disk'' @@ -1680,7 +1680,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:20:51 GMT + - Thu, 15 Apr 2021 06:10:36 GMT expires: - '-1' pragma: @@ -1720,9 +1720,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-04-14T09:20:48.4436673+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-15T06:10:32.8936159+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"133eab51-ec89-44d6-9a71-20d47486bd8e\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"791abf49-d37d-4545-b30e-f08932aeafe2\",\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: @@ -1732,7 +1732,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:20:52 GMT + - Thu, 15 Apr 2021 06:10:37 GMT expires: - '-1' pragma: @@ -1749,7 +1749,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4979,Microsoft.Compute/LowCostGet30Min;39974 + - Microsoft.Compute/LowCostGet3Min;4981,Microsoft.Compute/LowCostGet30Min;39955 status: code: 200 message: OK @@ -1775,7 +1775,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1784,7 +1784,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:20:53 GMT + - Thu, 15 Apr 2021 06:10:38 GMT expires: - '-1' pragma: @@ -1819,18 +1819,18 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01 response: body: string: "{\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \ \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk\",\r\n - \ \"sourceUniqueId\": \"133eab51-ec89-44d6-9a71-20d47486bd8e\"\r\n },\r\n + \ \"sourceUniqueId\": \"791abf49-d37d-4545-b30e-f08932aeafe2\"\r\n },\r\n \ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/c0785906-d65e-4985-adce-5e82a96d3b3c?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f0ad3f27-a3b5-4768-b1ef-d200a6956c76?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -1838,11 +1838,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:20:57 GMT + - Thu, 15 Apr 2021 06:10:42 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/c0785906-d65e-4985-adce-5e82a96d3b3c?monitor=true&api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f0ad3f27-a3b5-4768-b1ef-d200a6956c76?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -1855,7 +1855,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7999 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 202 message: Accepted @@ -1875,24 +1875,24 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/c0785906-d65e-4985-adce-5e82a96d3b3c?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f0ad3f27-a3b5-4768-b1ef-d200a6956c76?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-14T09:20:58.4436368+00:00\",\r\n \"endTime\": - \"2021-04-14T09:20:59.2248818+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-15T06:10:42.9873721+00:00\",\r\n \"endTime\": + \"2021-04-15T06:10:43.7998424+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1\",\r\n \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk\",\r\n - \ \"sourceUniqueId\": \"133eab51-ec89-44d6-9a71-20d47486bd8e\"\r\n },\r\n + \ \"sourceUniqueId\": \"791abf49-d37d-4545-b30e-f08932aeafe2\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-14T09:20:58.4436368+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-15T06:10:43.0186383+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"c656dbdf-cb32-408c-8c41-33874674abcc\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"5d243a27-a51d-45cc-a4cd-fe3469a10f28\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"c0785906-d65e-4985-adce-5e82a96d3b3c\"\r\n}" + \"f0ad3f27-a3b5-4768-b1ef-d200a6956c76\"\r\n}" headers: cache-control: - no-cache @@ -1901,7 +1901,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:20:59 GMT + - Thu, 15 Apr 2021 06:10:44 GMT expires: - '-1' pragma: @@ -1918,7 +1918,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399989 + - Microsoft.Compute/GetOperation3Min;49984,Microsoft.Compute/GetOperation30Min;399967 status: code: 200 message: OK @@ -1938,7 +1938,7 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1\",\r\n @@ -1946,11 +1946,11 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk\",\r\n - \ \"sourceUniqueId\": \"133eab51-ec89-44d6-9a71-20d47486bd8e\"\r\n },\r\n + \ \"sourceUniqueId\": \"791abf49-d37d-4545-b30e-f08932aeafe2\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-14T09:20:58.4436368+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-15T06:10:43.0186383+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"c656dbdf-cb32-408c-8c41-33874674abcc\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"5d243a27-a51d-45cc-a4cd-fe3469a10f28\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -1960,7 +1960,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:21:00 GMT + - Thu, 15 Apr 2021 06:10:44 GMT expires: - '-1' pragma: @@ -1977,7 +1977,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4979,Microsoft.Compute/LowCostGet30Min;39970 + - Microsoft.Compute/LowCostGet3Min;4975,Microsoft.Compute/LowCostGet30Min;39949 status: code: 200 message: OK @@ -2003,7 +2003,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2012,7 +2012,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:21:01 GMT + - Thu, 15 Apr 2021 06:10:45 GMT expires: - '-1' pragma: @@ -2057,7 +2057,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-14T09:21:06.1042517+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-15T06:10:50.8269555+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"hostCaching\": \"ReadWrite\",\r\n \ \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2065,7 +2065,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d0259c47-8596-48d4-afe6-a5278de6c4cf?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/81528a3f-34eb-4cfa-9706-75b5c226c37a?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -2073,7 +2073,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:21:07 GMT + - Thu, 15 Apr 2021 06:10:51 GMT expires: - '-1' pragma: @@ -2088,7 +2088,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1199 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -2108,11 +2108,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d0259c47-8596-48d4-afe6-a5278de6c4cf?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/81528a3f-34eb-4cfa-9706-75b5c226c37a?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-14T09:21:06.0886287+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"d0259c47-8596-48d4-afe6-a5278de6c4cf\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:10:50.8113322+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"81528a3f-34eb-4cfa-9706-75b5c226c37a\"\r\n}" headers: cache-control: - no-cache @@ -2121,7 +2121,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:22:07 GMT + - Thu, 15 Apr 2021 06:11:52 GMT expires: - '-1' pragma: @@ -2138,7 +2138,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4190 + - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4190 status: code: 200 message: OK @@ -2158,11 +2158,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d0259c47-8596-48d4-afe6-a5278de6c4cf?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/81528a3f-34eb-4cfa-9706-75b5c226c37a?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-14T09:21:06.0886287+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"d0259c47-8596-48d4-afe6-a5278de6c4cf\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:10:50.8113322+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"81528a3f-34eb-4cfa-9706-75b5c226c37a\"\r\n}" headers: cache-control: - no-cache @@ -2171,7 +2171,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:23:08 GMT + - Thu, 15 Apr 2021 06:12:52 GMT expires: - '-1' pragma: @@ -2188,7 +2188,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4187 + - Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4187 status: code: 200 message: OK @@ -2208,11 +2208,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d0259c47-8596-48d4-afe6-a5278de6c4cf?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/81528a3f-34eb-4cfa-9706-75b5c226c37a?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-14T09:21:06.0886287+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"d0259c47-8596-48d4-afe6-a5278de6c4cf\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:10:50.8113322+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"81528a3f-34eb-4cfa-9706-75b5c226c37a\"\r\n}" headers: cache-control: - no-cache @@ -2221,7 +2221,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:24:08 GMT + - Thu, 15 Apr 2021 06:13:53 GMT expires: - '-1' pragma: @@ -2258,11 +2258,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d0259c47-8596-48d4-afe6-a5278de6c4cf?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/81528a3f-34eb-4cfa-9706-75b5c226c37a?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-14T09:21:06.0886287+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"d0259c47-8596-48d4-afe6-a5278de6c4cf\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:10:50.8113322+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"81528a3f-34eb-4cfa-9706-75b5c226c37a\"\r\n}" headers: cache-control: - no-cache @@ -2271,7 +2271,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:25:08 GMT + - Thu, 15 Apr 2021 06:14:54 GMT expires: - '-1' pragma: @@ -2308,11 +2308,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d0259c47-8596-48d4-afe6-a5278de6c4cf?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/81528a3f-34eb-4cfa-9706-75b5c226c37a?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-14T09:21:06.0886287+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"d0259c47-8596-48d4-afe6-a5278de6c4cf\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:10:50.8113322+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"81528a3f-34eb-4cfa-9706-75b5c226c37a\"\r\n}" headers: cache-control: - no-cache @@ -2321,7 +2321,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:26:09 GMT + - Thu, 15 Apr 2021 06:15:54 GMT expires: - '-1' pragma: @@ -2358,11 +2358,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d0259c47-8596-48d4-afe6-a5278de6c4cf?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/81528a3f-34eb-4cfa-9706-75b5c226c37a?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-14T09:21:06.0886287+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"d0259c47-8596-48d4-afe6-a5278de6c4cf\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:10:50.8113322+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"81528a3f-34eb-4cfa-9706-75b5c226c37a\"\r\n}" headers: cache-control: - no-cache @@ -2371,7 +2371,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:27:10 GMT + - Thu, 15 Apr 2021 06:16:55 GMT expires: - '-1' pragma: @@ -2408,12 +2408,12 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/d0259c47-8596-48d4-afe6-a5278de6c4cf?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/81528a3f-34eb-4cfa-9706-75b5c226c37a?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-14T09:21:06.0886287+00:00\",\r\n \"endTime\": - \"2021-04-14T09:28:00.9012246+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"d0259c47-8596-48d4-afe6-a5278de6c4cf\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:10:50.8113322+00:00\",\r\n \"endTime\": + \"2021-04-15T06:17:36.5146146+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"81528a3f-34eb-4cfa-9706-75b5c226c37a\"\r\n}" headers: cache-control: - no-cache @@ -2422,7 +2422,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:28:11 GMT + - Thu, 15 Apr 2021 06:17:56 GMT expires: - '-1' pragma: @@ -2468,7 +2468,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-14T09:21:06.1042517+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-15T06:10:50.8269555+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 10,\r\n \"hostCaching\": \"ReadWrite\",\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2482,7 +2482,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:28:11 GMT + - Thu, 15 Apr 2021 06:17:56 GMT expires: - '-1' pragma: @@ -2525,7 +2525,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2534,7 +2534,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:28:11 GMT + - Thu, 15 Apr 2021 06:17:57 GMT expires: - '-1' pragma: @@ -2575,26 +2575,27 @@ interactions: body: string: "{\r\n \"name\": \"d4\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\"\r\n },\r\n \"properties\": - {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V2\",\r\n \"creationData\": + {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V2\",\r\n \"supportedCapabilities\": + {\r\n \"acceleratedNetwork\": true\r\n },\r\n \"creationData\": {\r\n \"createOption\": \"FromImage\",\r\n \"galleryImageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0\"\r\n \ }\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/ed18dd2a-68df-41c5-a25f-58afa2bd3b85?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/76826ce8-7ae9-4dd6-91c4-81094b4e8105?api-version=2020-12-01 cache-control: - no-cache content-length: - - '607' + - '681' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:28:15 GMT + - Thu, 15 Apr 2021 06:18:00 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/ed18dd2a-68df-41c5-a25f-58afa2bd3b85?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/76826ce8-7ae9-4dd6-91c4-81094b4e8105?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -2605,9 +2606,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7992 + - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7990 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' status: code: 202 message: Accepted @@ -2627,35 +2628,37 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/ed18dd2a-68df-41c5-a25f-58afa2bd3b85?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/76826ce8-7ae9-4dd6-91c4-81094b4e8105?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-14T09:28:16.4698615+00:00\",\r\n \"endTime\": - \"2021-04-14T09:28:17.0167664+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-15T06:18:01.3061264+00:00\",\r\n \"endTime\": + \"2021-04-15T06:18:01.8842451+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d4\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n - \ \"hyperVGeneration\": \"V2\",\r\n \"creationData\": {\r\n \"createOption\": - \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0\"\r\n + \ \"hyperVGeneration\": \"V2\",\r\n \"supportedCapabilities\": {\r\n + \ \"acceleratedNetwork\": true\r\n },\r\n \"creationData\": {\r\n + \ \"createOption\": \"FromImage\",\r\n \"imageReference\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0\"\r\n \ },\r\n \"galleryImageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-14T09:28:16.5167639+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-15T06:18:01.3686204+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"20c245bb-e627-4a5b-ab93-ff88d135e5cc\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"168617c6-4602-4cbe-964f-562a3fb9f245\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"ed18dd2a-68df-41c5-a25f-58afa2bd3b85\"\r\n}" + \ },\r\n \"name\": \"76826ce8-7ae9-4dd6-91c4-81094b4e8105\"\r\n}" headers: cache-control: - no-cache content-length: - - '1745' + - '1819' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:28:18 GMT + - Thu, 15 Apr 2021 06:18:03 GMT expires: - '-1' pragma: @@ -2672,7 +2675,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49991,Microsoft.Compute/GetOperation30Min;399957 + - Microsoft.Compute/GetOperation3Min;49980,Microsoft.Compute/GetOperation30Min;399906 status: code: 200 message: OK @@ -2699,24 +2702,26 @@ interactions: \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n - \ \"hyperVGeneration\": \"V2\",\r\n \"creationData\": {\r\n \"createOption\": - \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0\"\r\n + \ \"hyperVGeneration\": \"V2\",\r\n \"supportedCapabilities\": {\r\n + \ \"acceleratedNetwork\": true\r\n },\r\n \"creationData\": {\r\n + \ \"createOption\": \"FromImage\",\r\n \"imageReference\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0\"\r\n \ },\r\n \"galleryImageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-14T09:28:16.5167639+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-15T06:18:01.3686204+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"20c245bb-e627-4a5b-ab93-ff88d135e5cc\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"168617c6-4602-4cbe-964f-562a3fb9f245\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1520' + - '1594' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:28:18 GMT + - Thu, 15 Apr 2021 06:18:03 GMT expires: - '-1' pragma: @@ -2733,7 +2738,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4999,Microsoft.Compute/LowCostGet30Min;39962 + - Microsoft.Compute/LowCostGet3Min;4990,Microsoft.Compute/LowCostGet30Min;39909 status: code: 200 message: OK @@ -2770,7 +2775,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/bcb8de75-cfb2-461c-9116-b41f26039edb?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/e8d5e079-067f-49a7-9d88-5088f452725f?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -2778,11 +2783,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:28:25 GMT + - Thu, 15 Apr 2021 06:18:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/bcb8de75-cfb2-461c-9116-b41f26039edb?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/e8d5e079-067f-49a7-9d88-5088f452725f?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -2815,11 +2820,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/bcb8de75-cfb2-461c-9116-b41f26039edb?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/e8d5e079-067f-49a7-9d88-5088f452725f?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-14T09:28:25.0318277+00:00\",\r\n \"endTime\": - \"2021-04-14T09:28:25.2217821+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-15T06:18:09.7525196+00:00\",\r\n \"endTime\": + \"2021-04-15T06:18:09.9347978+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"centraluseuap\",\r\n @@ -2828,11 +2833,11 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 256,\r\n \ \"diskIOPSReadWrite\": 1100,\r\n \"diskMBpsReadWrite\": 125,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"maxShares\": - 2,\r\n \"timeCreated\": \"2021-04-14T09:28:25.0418123+00:00\",\r\n \"provisioningState\": + 2,\r\n \"timeCreated\": \"2021-04-15T06:18:09.7725642+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 274877906944,\r\n \"uniqueId\": \"56eb9a93-2314-44b7-8f0c-0b3aa637a680\",\r\n + 274877906944,\r\n \"uniqueId\": \"bea26756-adf5-4996-99ba-2d6676db485a\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"bcb8de75-cfb2-461c-9116-b41f26039edb\"\r\n}" + \ },\r\n \"name\": \"e8d5e079-067f-49a7-9d88-5088f452725f\"\r\n}" headers: cache-control: - no-cache @@ -2841,7 +2846,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:28:27 GMT + - Thu, 15 Apr 2021 06:18:12 GMT expires: - '-1' pragma: @@ -2888,9 +2893,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 256,\r\n \ \"diskIOPSReadWrite\": 1100,\r\n \"diskMBpsReadWrite\": 125,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"maxShares\": - 2,\r\n \"timeCreated\": \"2021-04-14T09:28:25.0418123+00:00\",\r\n \"provisioningState\": + 2,\r\n \"timeCreated\": \"2021-04-15T06:18:09.7725642+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 274877906944,\r\n \"uniqueId\": \"56eb9a93-2314-44b7-8f0c-0b3aa637a680\",\r\n + 274877906944,\r\n \"uniqueId\": \"bea26756-adf5-4996-99ba-2d6676db485a\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}" headers: cache-control: @@ -2900,7 +2905,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:28:27 GMT + - Thu, 15 Apr 2021 06:18:12 GMT expires: - '-1' pragma: @@ -2947,9 +2952,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 256,\r\n \ \"diskIOPSReadWrite\": 1100,\r\n \"diskMBpsReadWrite\": 125,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"maxShares\": - 2,\r\n \"timeCreated\": \"2021-04-14T09:28:25.0418123+00:00\",\r\n \"provisioningState\": + 2,\r\n \"timeCreated\": \"2021-04-15T06:18:09.7725642+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 274877906944,\r\n \"uniqueId\": \"56eb9a93-2314-44b7-8f0c-0b3aa637a680\",\r\n + 274877906944,\r\n \"uniqueId\": \"bea26756-adf5-4996-99ba-2d6676db485a\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}" headers: cache-control: @@ -2959,7 +2964,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:28:29 GMT + - Thu, 15 Apr 2021 06:18:13 GMT expires: - '-1' pragma: @@ -3016,7 +3021,7 @@ interactions: \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/71058790-8c98-49ed-a217-71c269cb27a6?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/5f41a19e-b96a-4d47-b3f9-46196a99c0b8?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -3024,11 +3029,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:28:31 GMT + - Thu, 15 Apr 2021 06:18:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/71058790-8c98-49ed-a217-71c269cb27a6?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/5f41a19e-b96a-4d47-b3f9-46196a99c0b8?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -3061,11 +3066,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/71058790-8c98-49ed-a217-71c269cb27a6?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/5f41a19e-b96a-4d47-b3f9-46196a99c0b8?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-14T09:28:31.0372217+00:00\",\r\n \"endTime\": - \"2021-04-14T09:28:31.207213+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-15T06:18:16.1706273+00:00\",\r\n \"endTime\": + \"2021-04-15T06:18:16.380632+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"centraluseuap\",\r\n @@ -3074,11 +3079,11 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 256,\r\n \ \"diskIOPSReadWrite\": 1100,\r\n \"diskMBpsReadWrite\": 125,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"maxShares\": - 1,\r\n \"timeCreated\": \"2021-04-14T09:28:25.0418123+00:00\",\r\n \"provisioningState\": + 1,\r\n \"timeCreated\": \"2021-04-15T06:18:09.7725642+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 274877906944,\r\n \"uniqueId\": \"56eb9a93-2314-44b7-8f0c-0b3aa637a680\",\r\n + 274877906944,\r\n \"uniqueId\": \"bea26756-adf5-4996-99ba-2d6676db485a\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"71058790-8c98-49ed-a217-71c269cb27a6\"\r\n}" + \ },\r\n \"name\": \"5f41a19e-b96a-4d47-b3f9-46196a99c0b8\"\r\n}" headers: cache-control: - no-cache @@ -3087,7 +3092,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:28:33 GMT + - Thu, 15 Apr 2021 06:18:18 GMT expires: - '-1' pragma: @@ -3134,9 +3139,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 256,\r\n \ \"diskIOPSReadWrite\": 1100,\r\n \"diskMBpsReadWrite\": 125,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"maxShares\": - 1,\r\n \"timeCreated\": \"2021-04-14T09:28:25.0418123+00:00\",\r\n \"provisioningState\": + 1,\r\n \"timeCreated\": \"2021-04-15T06:18:09.7725642+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 274877906944,\r\n \"uniqueId\": \"56eb9a93-2314-44b7-8f0c-0b3aa637a680\",\r\n + 274877906944,\r\n \"uniqueId\": \"bea26756-adf5-4996-99ba-2d6676db485a\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}" headers: cache-control: @@ -3146,7 +3151,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Apr 2021 09:28:33 GMT + - Thu, 15 Apr 2021 06:18:18 GMT expires: - '-1' pragma: From a067bbe5b8a645510afd23814de573b8581000be Mon Sep 17 00:00:00 2001 From: Feiyue Yu Date: Thu, 15 Apr 2021 14:41:09 +0800 Subject: [PATCH 18/18] style --- src/azure-cli/azure/cli/command_modules/vm/_help.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/_help.py b/src/azure-cli/azure/cli/command_modules/vm/_help.py index 3d6d9860d20..3a0035bee1b 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/_help.py +++ b/src/azure-cli/azure/cli/command_modules/vm/_help.py @@ -681,7 +681,7 @@ az sig image-version create -g MyResourceGroup --gallery-image-version 1.0.0 --target-regions westus=2=standard eastus --target-region-encryption WestUSDiskEncryptionSet1,0,WestUSDiskEncryptionSet2 EastUSDiskEncryptionSet1,0,EastUSDiskEncryptionSet2 --gallery-name MyGallery --gallery-image-definition MyImage --os-snapshot /subscriptions/00000000-0000-0000-0000-00000000xxxx/resourceGroups/imageGroups/providers/Microsoft.Compute/disks/MyOSDisk --data-snapshots /subscriptions/00000000-0000-0000-0000-00000000xxxx/resourceGroups/imageGroups/providers/Microsoft.Compute/disks/MyDataDisk --data-snapshot-luns 0 - name: Add a new image version from a VHD of an OS disk. text: > - az sig image-version create -g MyResourceGroup --gallery-name MyGallery --gallery-image-definition MyImage --gallery-image-version 1.0.0 --os-vhd --os-vhd-storage-account account + az sig image-version create -g MyResourceGroup --gallery-name MyGallery --gallery-image-definition MyImage --gallery-image-version 1.0.0 --os-vhd-uri --os-vhd-storage-account account """ helps['sig image-version update'] = """