From cd8fbda1ae12a5275c7ab7f3bd817a77fb5b9137 Mon Sep 17 00:00:00 2001 From: Feiyue Yu Date: Fri, 25 Sep 2020 13:44:47 +0800 Subject: [PATCH 1/7] [Compute] sig image-definition create: add --features --- scripts/live_test/index.html | 30 +++++++++++++++++++ .../azure/cli/command_modules/vm/_params.py | 1 + 2 files changed, 31 insertions(+) create mode 100644 scripts/live_test/index.html diff --git a/scripts/live_test/index.html b/scripts/live_test/index.html new file mode 100644 index 00000000000..a3859cffdcd --- /dev/null +++ b/scripts/live_test/index.html @@ -0,0 +1,30 @@ + + + + + + + +

Testing results in https://clitestresultstac.blob.core.windows.net/20200919213646live

+ +

acr.report.parallel.html

+ +

acr.report.sequential.html

+ +

appservice.report.parallel.html

+ +

appservice.report.sequential.html

+ +

netappfiles.report.parallel.html

+ +

netappfiles.report.sequential.html

+ + + + \ No newline at end of file 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 29070687751..742baa7cb6d 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/_params.py +++ b/src/azure-cli/azure/cli/command_modules/vm/_params.py @@ -856,6 +856,7 @@ def load_arguments(self, _): c.argument('release_note_uri', help='The release note uri') c.argument('end_of_life_date', help="the end of life date, e.g. '2020-12-31'") c.argument('disallowed_disk_types', nargs='*', help='disk types which would not work with the image, e.g., Standard_LRS') + c.argument('features', help='Features') with self.argument_context('sig create') as c: c.argument('description', help='the description of the gallery') From 0bcd47f305d9af27e2439b4a2ce59183260e3520 Mon Sep 17 00:00:00 2001 From: Feiyue Yu Date: Thu, 15 Oct 2020 14:18:51 +0800 Subject: [PATCH 2/7] --features --- .../azure/cli/core/profiles/_shared.py | 2 +- .../azure/cli/command_modules/vm/_params.py | 2 +- .../azure/cli/command_modules/vm/custom.py | 18 ++++++++++++++---- 3 files changed, 16 insertions(+), 6 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 86d1c1a5723..5cac8f228f9 100644 --- a/src/azure-cli-core/azure/cli/core/profiles/_shared.py +++ b/src/azure-cli-core/azure/cli/core/profiles/_shared.py @@ -143,7 +143,7 @@ def default_api_version(self): 'disk_accesses': '2020-05-01', 'snapshots': '2020-05-01', 'galleries': '2019-12-01', - 'gallery_images': '2019-12-01', + 'gallery_images': '2020-09-30', 'gallery_image_versions': '2019-12-01', 'virtual_machine_scale_sets': '2020-06-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 742baa7cb6d..c7062b4b8bb 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/_params.py +++ b/src/azure-cli/azure/cli/command_modules/vm/_params.py @@ -856,7 +856,7 @@ def load_arguments(self, _): c.argument('release_note_uri', help='The release note uri') c.argument('end_of_life_date', help="the end of life date, e.g. '2020-12-31'") c.argument('disallowed_disk_types', nargs='*', help='disk types which would not work with the image, e.g., Standard_LRS') - c.argument('features', help='Features') + c.argument('features', help='Features', min_api='2020-09-30') with self.argument_context('sig create') as c: c.argument('description', help='the description of the gallery') 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 1692e71f113..56f36db3267 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/custom.py +++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py @@ -3177,10 +3177,12 @@ def create_gallery_image(cmd, resource_group_name, gallery_name, gallery_image_n release_note_uri=None, eula=None, description=None, location=None, minimum_cpu_core=None, maximum_cpu_core=None, minimum_memory=None, maximum_memory=None, disallowed_disk_types=None, plan_name=None, plan_publisher=None, plan_product=None, tags=None, - hyper_v_generation='V1'): + hyper_v_generation='V1', features=None): # pylint: disable=line-too-long - GalleryImage, GalleryImageIdentifier, RecommendedMachineConfiguration, ResourceRange, Disallowed, ImagePurchasePlan = cmd.get_models( - 'GalleryImage', 'GalleryImageIdentifier', 'RecommendedMachineConfiguration', 'ResourceRange', 'Disallowed', 'ImagePurchasePlan') + GalleryImage, GalleryImageIdentifier, RecommendedMachineConfiguration, ResourceRange, Disallowed, \ + ImagePurchasePlan, GalleryImageFeature = cmd.get_models( + 'GalleryImage', 'GalleryImageIdentifier', 'RecommendedMachineConfiguration', 'ResourceRange', 'Disallowed',\ + 'ImagePurchasePlan', 'GalleryImageFeature') client = _compute_client_factory(cmd.cli_ctx) location = location or _get_resource_group_location(cmd.cli_ctx, resource_group_name) @@ -3197,11 +3199,19 @@ def create_gallery_image(cmd, resource_group_name, gallery_name, gallery_image_n if any([plan_name, plan_publisher, plan_product]): purchase_plan = ImagePurchasePlan(name=plan_name, publisher=plan_publisher, product=plan_product) + feature_list = [] + for item in features.split(): + try: + key, value = item.split('=', 1) + feature_list.append(GalleryImageFeature(name=key, value=value)) + except ValueError: + raise CLIError('usage error: --features KEY=VALUE [KEY=VALUE ...]') + image = GalleryImage(identifier=GalleryImageIdentifier(publisher=publisher, offer=offer, sku=sku), os_type=os_type, os_state=os_state, end_of_life_date=end_of_life_date, recommended=recommendation, disallowed=Disallowed(disk_types=disallowed_disk_types), purchase_plan=purchase_plan, location=location, eula=eula, tags=(tags or {}), - hyper_vgeneration=hyper_v_generation) + hyper_vgeneration=hyper_v_generation, features=feature_list) return client.gallery_images.create_or_update(resource_group_name, gallery_name, gallery_image_name, image) From 34f10d8c1dbfe4f695a90d6cbf0a9f44d9bc7c5a Mon Sep 17 00:00:00 2001 From: Feiyue Yu Date: Thu, 15 Oct 2020 17:10:10 +0800 Subject: [PATCH 3/7] api version 2020-09-30 --- .../azure/cli/command_modules/vm/_format.py | 1 + .../azure/cli/command_modules/vm/custom.py | 15 +- .../latest/recordings/test_gallery_e2e.yaml | 3679 ++++++++++------- .../recordings/test_gallery_specialized.yaml | 632 +-- .../test_image_build_shared_image.yaml | 1458 ++++--- .../test_image_builder_basic_sig.yaml | 355 +- .../recordings/test_specialized_image.yaml | 861 ++-- .../test_vm_disk_max_shares_etc.yaml | 772 ++-- 8 files changed, 4184 insertions(+), 3589 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/_format.py b/src/azure-cli/azure/cli/command_modules/vm/_format.py index 3701be1deb5..f411b22dce2 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/_format.py +++ b/src/azure-cli/azure/cli/command_modules/vm/_format.py @@ -84,6 +84,7 @@ def transform_sku_for_table_output(skus): else: order_dict['zones'] = 'None' if k['restrictions']: + # for restriction in k['restrictions']: reasons = [x['reasonCode'] for x in k['restrictions']] order_dict['restrictions'] = str(reasons) if len(reasons) > 1 else reasons[0] else: 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 56f36db3267..d36b210fb26 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/custom.py +++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py @@ -3199,13 +3199,14 @@ def create_gallery_image(cmd, resource_group_name, gallery_name, gallery_image_n if any([plan_name, plan_publisher, plan_product]): purchase_plan = ImagePurchasePlan(name=plan_name, publisher=plan_publisher, product=plan_product) - feature_list = [] - for item in features.split(): - try: - key, value = item.split('=', 1) - feature_list.append(GalleryImageFeature(name=key, value=value)) - except ValueError: - raise CLIError('usage error: --features KEY=VALUE [KEY=VALUE ...]') + feature_list = None + if features: + for item in features.split(): + try: + key, value = item.split('=', 1) + feature_list.append(GalleryImageFeature(name=key, value=value)) + except ValueError: + raise CLIError('usage error: --features KEY=VALUE [KEY=VALUE ...]') image = GalleryImage(identifier=GalleryImageIdentifier(publisher=publisher, offer=offer, sku=sku), os_type=os_type, os_state=os_state, end_of_life_date=end_of_life_date, 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 052413332a2..a8b2854249b 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.7.5 (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.11.1 + - 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 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-09-12T10:57:28Z"},"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":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 10:57:31 GMT + - Thu, 15 Oct 2020 08:08:54 GMT expires: - '-1' pragma: @@ -62,8 +62,8 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 method: PUT @@ -73,11 +73,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_QDBIU7OAX2P4\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_UYJS7HUOGWMO\"\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/49efff4b-8363-42ff-8949-8eec70532b08?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/20e3a2f3-ce37-48ba-8a4e-454a92f7956d?api-version=2019-12-01 cache-control: - no-cache content-length: @@ -85,7 +85,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 10:57:40 GMT + - Thu, 15 Oct 2020 08:09:02 GMT expires: - '-1' pragma: @@ -98,9 +98,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: - - '1196' + - '1198' status: code: 201 message: Created @@ -118,24 +118,24 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/49efff4b-8363-42ff-8949-8eec70532b08?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/20e3a2f3-ce37-48ba-8a4e-454a92f7956d?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T10:57:39.6528589+00:00\",\r\n \"endTime\": - \"2020-09-12T10:57:40.152872+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"49efff4b-8363-42ff-8949-8eec70532b08\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:09:00.9576397+00:00\",\r\n \"endTime\": + \"2020-10-15T08:09:01.0982632+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"20e3a2f3-ce37-48ba-8a4e-454a92f7956d\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 10:58:12 GMT + - Thu, 15 Oct 2020 08:09:33 GMT expires: - '-1' pragma: @@ -152,7 +152,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;2398 + - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4196 status: code: 200 message: OK @@ -170,8 +170,8 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01 response: @@ -179,7 +179,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_QDBIU7OAX2P4\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_UYJS7HUOGWMO\"\r\n },\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -189,7 +189,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 10:58:12 GMT + - Thu, 15 Oct 2020 08:09:34 GMT expires: - '-1' pragma: @@ -206,7 +206,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2496 + - Microsoft.Compute/GetGallery3Min;342,Microsoft.Compute/GetGallery30Min;2492 status: code: 200 message: OK @@ -224,8 +224,8 @@ interactions: ParameterSetName: - -g User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 method: GET @@ -233,10 +233,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.RGXCIFXV4L6BFY3ZCNJKML4MAY4UZCIFF77UCCATWATWYVDDQ3DXWBBW2SBCXANJQP2/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RG2PEPJGQ6QKSCQTR2PJHVL5CZBN6V7WBXKYUE4BYJHWNHQSCMOPIGTRJUWNOEYH4YF/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_QDBIU7OAX2P4\"\r\n + {\r\n \"uniqueName\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_UYJS7HUOGWMO\"\r\n \ },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n \ }\r\n ]\r\n}" headers: @@ -247,7 +247,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 10:58:13 GMT + - Thu, 15 Oct 2020 08:09:36 GMT expires: - '-1' pragma: @@ -282,8 +282,8 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 method: GET @@ -293,7 +293,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_QDBIU7OAX2P4\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_UYJS7HUOGWMO\"\r\n },\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -303,7 +303,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 10:58:14 GMT + - Thu, 15 Oct 2020 08:09:37 GMT expires: - '-1' pragma: @@ -320,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGallery3Min;345,Microsoft.Compute/GetGallery30Min;2495 + - Microsoft.Compute/GetGallery3Min;341,Microsoft.Compute/GetGallery30Min;2491 status: code: 200 message: OK @@ -338,15 +338,15 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - - python/3.7.5 (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.11.1 + - 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 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-09-12T10:57:28Z"},"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":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -355,7 +355,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 10:58:15 GMT + - Thu, 15 Oct 2020 08:09:37 GMT expires: - '-1' pragma: @@ -389,12 +389,12 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 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=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?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 @@ -406,7 +406,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/b41379d2-7213-4360-a0c5-671de3de06c3?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/57318724-ea28-4913-bf36-9195df75f6e6?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -414,7 +414,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 10:58:21 GMT + - Thu, 15 Oct 2020 08:09:42 GMT expires: - '-1' pragma: @@ -427,9 +427,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: - - '1178' + - '1197' status: code: 201 message: Created @@ -447,15 +447,15 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/b41379d2-7213-4360-a0c5-671de3de06c3?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/57318724-ea28-4913-bf36-9195df75f6e6?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T10:58:20.9813793+00:00\",\r\n \"endTime\": - \"2020-09-12T10:58:21.1063812+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"b41379d2-7213-4360-a0c5-671de3de06c3\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:09:42.1762932+00:00\",\r\n \"endTime\": + \"2020-10-15T08:09:42.2700453+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"57318724-ea28-4913-bf36-9195df75f6e6\"\r\n}" headers: cache-control: - no-cache @@ -464,7 +464,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 10:58:53 GMT + - Thu, 15 Oct 2020 08:10:14 GMT expires: - '-1' pragma: @@ -481,7 +481,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;2396 + - Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4193 status: code: 200 message: OK @@ -499,10 +499,10 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?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?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 @@ -520,7 +520,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 10:58:53 GMT + - Thu, 15 Oct 2020 08:10:14 GMT expires: - '-1' pragma: @@ -537,7 +537,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;596,Microsoft.Compute/GetGalleryImage30Min;2996 + - Microsoft.Compute/GetGalleryImage3Min;593,Microsoft.Compute/GetGalleryImage30Min;2993 status: code: 200 message: OK @@ -555,12 +555,12 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 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=2019-12-01 + 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: body: string: '{"value":[{"name":"image1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1","type":"Microsoft.Compute/galleries/images","location":"eastus2","tags":{},"properties":{"hyperVGeneration":"V1","osType":"Linux","osState":"Generalized","identifier":{"publisher":"publisher1","offer":"offer1","sku":"sku1"},"provisioningState":"Succeeded"}}]}' @@ -572,7 +572,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 10:58:56 GMT + - Thu, 15 Oct 2020 08:10:17 GMT expires: - '-1' pragma: @@ -584,41 +584,41 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 9c495bc0-b622-4d63-a5b2-c2cb06d6ff3b - - 78e3a16e-56eb-4db5-834c-a62e0ed3aabd - - 2bc9d2ca-f885-4245-b897-7a574c6a2f1a - - 0b4482af-45ea-4326-b253-eccaeb8d4f08 - - 21d83d74-e841-4b5c-ad51-3e2dd3adc8a2 - - 4ba4b948-13b1-4baf-9e41-0254889ea6e0 - - 688f3026-2d8d-4b20-851b-cec47dedd1ef - - e75c3730-17b2-417f-a909-234a8b55c870 - - 1efad296-c6ee-40fa-bc34-b16b0b663d7e - - b773ae50-7c9a-491e-8812-0cf7b989ae5d - - ee4f9130-93d5-4e42-b382-e33d1f7e0ecd - - b52bffc9-b3f7-460c-bfc9-2319cf8c1bde - - bab6b75f-761a-47d4-a085-e268aaa56a45 - - eec9ffb2-2648-4a61-8492-19de72fd652e - - f0c40d8c-7abe-4270-a616-53998ce55e72 - - fdbff387-9ad7-4f12-95d5-a1b9ad87d7f4 - - 0c91f55f-d039-4918-b3b5-d40da62b2cc7 - - ee0177e9-541b-471d-bb07-273198730ce2 - - b9c79388-6966-49fa-85ff-3e7fc299effc - - 99840076-6da3-44a3-809c-9247a0382e53 - - 290912df-5a09-417a-ba3d-84b565edf111 - - 960e4988-fd57-4abc-8eed-b10465f4a445 - - 3f95a8b5-c371-45e1-9617-b3ba8a023be8 - - 1f1e8b32-4bee-4dac-8ece-6fd028f5fd47 - - 7c1957b7-1f19-432b-bd67-8c9c9702ceae - - 0c9fc57f-affd-48e1-904a-15302d8c5d3e - - b15097c1-09ca-4f22-92d1-12ff47aeb14e - - 083526fa-6494-4c30-be40-0d083cc31259 - - 210040c2-c1ae-4a55-a478-ab33cebebc95 - - e027036f-394b-4daf-bf24-362d74a97734 - - 68bcb519-695f-4e5c-aa5e-d2ea636c672b - - 6cf10a75-3647-4d07-bd6f-efdcf729e68d - - b70df002-479a-43ed-b5c3-6f45b54d8b7a - - 3ddba205-15c4-44e6-b00f-d457b55e8e28 - - 6d3448ac-cd23-4341-969a-911099196161 + - 9a26066b-2b63-4803-8ee1-fa32bd40508a + - 34ed2406-c427-49e8-9d1f-058b8d577230 + - 16cc56c5-b389-4b98-aacb-1d85b4ddcbd7 + - d041d53d-9e1b-4f9e-82b3-4a557dc12c11 + - 8170ec6d-9dd4-4924-b5ec-fb5691bf540d + - 73f70edc-1d59-485f-b2e3-8d7e012fcb87 + - 6d6637f7-4e4a-45cb-b847-c341d8fc24fd + - 9fc685f2-3c7c-45ec-9cda-8cc9d675be2b + - 08b7137d-4b61-4ae4-b57a-5ca1e4b5a2ce + - 3b30c5cf-019d-4945-9f44-6d3bec3ded52 + - d08a5954-bec9-4411-b478-b64b3e537ae9 + - 221abe0d-10ed-49c5-a141-734a76e3c610 + - 6c85fcb3-2561-4541-9bc4-3b534264fe71 + - ead7226b-63ee-46a6-8b09-fa29e85940c5 + - 53fa992d-f225-42f4-a47c-0b4764ba8ee3 + - f9f9c514-7afd-4d3b-a248-d1bfd814b846 + - 2bb6e5c9-423d-4abf-aec0-18ce58728e84 + - d60633ef-4b85-4741-a084-47cdb210fd5d + - cf68cb7f-2022-4156-87ec-5c96cbb88068 + - fa52cafd-fa39-4d7c-920d-ad7bc126e565 + - 18ce0887-cb96-4b8f-beb7-142bbca407c5 + - 888b8381-e282-428e-9fc3-bba6bf750043 + - 6115b00f-39e8-49f6-98bf-bdfb444416b4 + - 8471035c-39d3-4618-b941-d39b321d1743 + - 21183ff0-fe48-4092-9e2c-e255e6ccbac3 + - 88f1eaa2-20d6-4bdc-9fdc-dc795520d3c7 + - 25b7e314-ac9d-48e0-8620-8715c7109764 + - 0ae6d38e-4055-43fc-991a-c9bf67c4f645 + - 59e462d7-1940-437a-a551-b8af0cbd67f9 + - 006160dd-27a7-4976-a0ff-d1fed5502b91 + - 79305568-cbdf-4b1e-960c-795cf7e8f1a0 + - 93809718-9193-4d30-81c3-5719f67f78ef + - 6e5d4844-20eb-46a8-be89-61236b9f9fef + - e4082e11-ab7b-4fb6-806b-63378e391404 + - 09297ef9-b30f-4ffe-be78-5f8c8bd7b189 status: code: 200 message: OK @@ -636,12 +636,12 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 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=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?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 @@ -659,7 +659,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 10:58:57 GMT + - Thu, 15 Oct 2020 08:10:17 GMT expires: - '-1' pragma: @@ -676,7 +676,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;595,Microsoft.Compute/GetGalleryImage30Min;2995 + - Microsoft.Compute/GetGalleryImage3Min;591,Microsoft.Compute/GetGalleryImage30Min;2991 status: code: 200 message: OK @@ -694,15 +694,15 @@ interactions: ParameterSetName: - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule User-Agent: - - python/3.7.5 (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.11.1 + - 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 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-09-12T10:57:28Z"},"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":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -711,7 +711,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 10:58:57 GMT + - Thu, 15 Oct 2020 08:10:18 GMT expires: - '-1' pragma: @@ -790,13 +790,13 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sat, 12 Sep 2020 10:58:58 GMT + - Thu, 15 Oct 2020 08:10:19 GMT etag: - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" expires: - - Sat, 12 Sep 2020 11:03:58 GMT + - Thu, 15 Oct 2020 08:15:19 GMT source-age: - - '262' + - '97' strict-transport-security: - max-age=31536000 vary: @@ -805,21 +805,21 @@ interactions: - 1.1 varnish (Varnish/6.0) - 1.1 varnish x-cache: - - HIT, HIT + - HFM, HIT x-cache-hits: - - 1, 1 + - 0, 1 x-content-type-options: - nosniff x-fastly-request-id: - - cf901e9a8f47556d521a03a60bd4b98e33b02387 + - 0e5d4ba4b0aa4543f2e54cca6396fdb9c25e373a x-frame-options: - deny x-github-request-id: - - 59E2:650C:6AA2E:7571C:5F5C79E7 + - 20FA:0B5E:E063E:EFC97:5F880389 x-served-by: - - cache-sin18041-SIN + - cache-sin18032-SIN x-timer: - - S1599908339.635568,VS0,VE1 + - S1602749419.499821,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -839,8 +839,8 @@ interactions: ParameterSetName: - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule User-Agent: - - python/3.7.5 (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.11.1 + - 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.13.0 accept-language: - en-US method: GET @@ -856,7 +856,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 10:58:58 GMT + - Thu, 15 Oct 2020 08:10:19 GMT expires: - '-1' pragma: @@ -897,8 +897,8 @@ 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 AAAAB3NzaC1yc2EAAAADAQABAAABAQDfx4waEeymqn3yAwr8AUGcVBHKgSIivJTomn+dQRwcq2hDF8DErwzrzRQ4WhQLmKv6A4j/c7zAHARLSAlPMfMEhfh+zEZYAMAyOxst05ZfFFws3WiTjMo5Ahxh49qv5pAsYNDqQk/fB+cmD8VMxF06I/ab+rDJ9ISr59phRJBXB5CZGZkibZLZwFE6cYVcsuaU1xYAV9c2Dc8lbyTjmqM9RDnfqNxzkYsMmr0Pstqx93o/SD+trlRRPkamQDZNDOTox3S+P23F4J9OkXvcywgXLmus2cKpJVZqMpivZW7upotq5glqV/87Mj2z+8weHG1KVDiu0JiNm7NHXftfUsHV - fareast\\bim@DESKTOP-5KK2RC0\n", "path": "/home/clitest1/.ssh/authorized_keys"}]}}}}}], + 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: @@ -910,32 +910,32 @@ interactions: Connection: - keep-alive Content-Length: - - '3531' + - '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.7.5 (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.11.1 + - 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 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-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lOumZ8gBNcMzTC19VHWK56XdyExrsomi","name":"vm_deploy_lOumZ8gBNcMzTC19VHWK56XdyExrsomi","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16757467717306626809","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-09-12T10:59:03.79861Z","duration":"PT2.9215057S","correlationId":"b2b5449c-a73e-429e-9a21-d2b85eefd229","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_wqBb9pWYJHjdlQVqRcHcqGG782ZtgkNI","name":"vm_deploy_wqBb9pWYJHjdlQVqRcHcqGG782ZtgkNI","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5433071010883928405","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-10-15T08:10:24.5685693Z","duration":"PT2.8694453S","correlationId":"3f30e4ac-a9cb-46b4-b79c-a62028da4187","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_lOumZ8gBNcMzTC19VHWK56XdyExrsomi/operationStatuses/08586016985446005280?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_wqBb9pWYJHjdlQVqRcHcqGG782ZtgkNI/operationStatuses/08585988574637785089?api-version=2020-06-01 cache-control: - no-cache content-length: - - '2746' + - '2747' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 10:59:05 GMT + - Thu, 15 Oct 2020 08:10:26 GMT expires: - '-1' pragma: @@ -945,7 +945,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1182' + - '1198' status: code: 201 message: Created @@ -963,10 +963,10 @@ interactions: ParameterSetName: - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule User-Agent: - - python/3.7.5 (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.11.1 + - 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 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586016985446005280?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585988574637785089?api-version=2020-06-01 response: body: string: '{"status":"Running"}' @@ -978,7 +978,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 10:59:36 GMT + - Thu, 15 Oct 2020 08:10:57 GMT expires: - '-1' pragma: @@ -1006,10 +1006,10 @@ interactions: ParameterSetName: - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule User-Agent: - - python/3.7.5 (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.11.1 + - 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 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586016985446005280?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585988574637785089?api-version=2020-06-01 response: body: string: '{"status":"Succeeded"}' @@ -1021,7 +1021,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:00:07 GMT + - Thu, 15 Oct 2020 08:11:27 GMT expires: - '-1' pragma: @@ -1049,22 +1049,22 @@ interactions: ParameterSetName: - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule User-Agent: - - python/3.7.5 (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.11.1 + - 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 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-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lOumZ8gBNcMzTC19VHWK56XdyExrsomi","name":"vm_deploy_lOumZ8gBNcMzTC19VHWK56XdyExrsomi","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16757467717306626809","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-09-12T10:59:46.6972146Z","duration":"PT45.8201103S","correlationId":"b2b5449c-a73e-429e-9a21-d2b85eefd229","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_wqBb9pWYJHjdlQVqRcHcqGG782ZtgkNI","name":"vm_deploy_wqBb9pWYJHjdlQVqRcHcqGG782ZtgkNI","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5433071010883928405","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-10-15T08:11:04.5826558Z","duration":"PT42.8835318S","correlationId":"3f30e4ac-a9cb-46b4-b79c-a62028da4187","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, 12 Sep 2020 11:00:07 GMT + - Thu, 15 Oct 2020 08:11:28 GMT expires: - '-1' pragma: @@ -1092,8 +1092,8 @@ interactions: ParameterSetName: - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 method: GET @@ -1102,53 +1102,53 @@ 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\": \"e6aa5d8f-fea9-40c8-8537-7a69f1b19312\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"9fb47369-3886-4a05-800c-824b3fa25d69\",\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.202009080\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"vm1_disk1_30c0831fadcb4a418ca0e38813257fd8\",\r\n + \"18.04.202010140\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"vm1_disk1_92d93d9aa344493291d0f11950774c43\",\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.RGXCIFXV4L6BFY3ZCNJKML4MAY4UZCIFF77UCCATWATWYVDDQ3DXWBBW2SBCXANJQP2/providers/Microsoft.Compute/disks/vm1_disk1_30c0831fadcb4a418ca0e38813257fd8\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_92d93d9aa344493291d0f11950774c43\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": - [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1_disk2_7fb39d1f093141159267db218595d4c3\",\r\n + [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1_disk2_c3af906c319344c0b2e68499dfeb2aa9\",\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.RGXCIFXV4L6BFY3ZCNJKML4MAY4UZCIFF77UCCATWATWYVDDQ3DXWBBW2SBCXANJQP2/providers/Microsoft.Compute/disks/vm1_disk2_7fb39d1f093141159267db218595d4c3\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_c3af906c319344c0b2e68499dfeb2aa9\"\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 - AAAAB3NzaC1yc2EAAAADAQABAAABAQDfx4waEeymqn3yAwr8AUGcVBHKgSIivJTomn+dQRwcq2hDF8DErwzrzRQ4WhQLmKv6A4j/c7zAHARLSAlPMfMEhfh+zEZYAMAyOxst05ZfFFws3WiTjMo5Ahxh49qv5pAsYNDqQk/fB+cmD8VMxF06I/ab+rDJ9ISr59phRJBXB5CZGZkibZLZwFE6cYVcsuaU1xYAV9c2Dc8lbyTjmqM9RDnfqNxzkYsMmr0Pstqx93o/SD+trlRRPkamQDZNDOTox3S+P23F4J9OkXvcywgXLmus2cKpJVZqMpivZW7upotq5glqV/87Mj2z+8weHG1KVDiu0JiNm7NHXftfUsHV - fareast\\\\bim@DESKTOP-5KK2RC0\\n\"\r\n }\r\n ]\r\n },\r\n + 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\": \"vm1\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n - \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.49.2\",\r\n \"statuses\": + \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.51\",\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-09-12T11:00:03+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_disk1_30c0831fadcb4a418ca0e38813257fd8\",\r\n + \"2020-10-15T08:11:29+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_disk1_92d93d9aa344493291d0f11950774c43\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-09-12T10:59:28.3861923+00:00\"\r\n + succeeded\",\r\n \"time\": \"2020-10-15T08:10:51.0311792+00:00\"\r\n \ }\r\n ]\r\n },\r\n {\r\n \"name\": - \"vm1_disk2_7fb39d1f093141159267db218595d4c3\",\r\n \"statuses\": + \"vm1_disk2_c3af906c319344c0b2e68499dfeb2aa9\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-09-12T10:59:28.3861923+00:00\"\r\n + succeeded\",\r\n \"time\": \"2020-10-15T08:10:51.0311792+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-09-12T10:59:42.9017597+00:00\"\r\n + \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2020-10-15T08:11:03.125315+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}" @@ -1156,11 +1156,11 @@ interactions: cache-control: - no-cache content-length: - - '4820' + - '4778' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:00:08 GMT + - Thu, 15 Oct 2020 08:11:29 GMT expires: - '-1' pragma: @@ -1195,8 +1195,8 @@ interactions: ParameterSetName: - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule User-Agent: - - python/3.7.5 (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.11.1 + - 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.13.0 accept-language: - en-US method: GET @@ -1204,12 +1204,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/\\\"fd9324ec-1c96-421d-8e64-0e82077bb870\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"3eba01f1-0770-4480-8cee-aee3e8e41b49\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"7b3a7ee9-512e-41f6-bbd2-757a8322421a\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"62189cb2-6a89-4766-a031-a8027d536a29\",\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/\\\"fd9324ec-1c96-421d-8e64-0e82077bb870\\\"\",\r\n + \ \"etag\": \"W/\\\"3eba01f1-0770-4480-8cee-aee3e8e41b49\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -1218,8 +1218,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\": - \"md14l0lw4ahufdmj3cmwosmgzf.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-7B-E8-83\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"12iyvf5x3v2udo4kpmtjybsy4g.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-00-D3-25\",\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\": @@ -1233,9 +1233,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:00:09 GMT + - Thu, 15 Oct 2020 08:11:30 GMT etag: - - W/"fd9324ec-1c96-421d-8e64-0e82077bb870" + - W/"3eba01f1-0770-4480-8cee-aee3e8e41b49" expires: - '-1' pragma: @@ -1252,7 +1252,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 42d533e4-a696-41bb-b5c5-8c99836c7372 + - 47c193dc-ec6a-42f7-9693-20f78557c991 status: code: 200 message: OK @@ -1270,8 +1270,8 @@ interactions: ParameterSetName: - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule User-Agent: - - python/3.7.5 (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.11.1 + - 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.13.0 accept-language: - en-US method: GET @@ -1279,10 +1279,10 @@ 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/\\\"f181cc8e-a752-4d5f-b000-7bfd98e3af40\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"d8b2347f-2e38-4c59-8ff2-bd51ec58cb4c\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"cff9e410-91a0-4428-b251-31c6a38c2bf4\",\r\n - \ \"ipAddress\": \"52.247.57.250\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"e31799ee-0f4e-46da-8181-06120ccae1a2\",\r\n + \ \"ipAddress\": \"52.177.193.53\",\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 @@ -1295,9 +1295,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:00:09 GMT + - Thu, 15 Oct 2020 08:11:30 GMT etag: - - W/"f181cc8e-a752-4d5f-b000-7bfd98e3af40" + - W/"d8b2347f-2e38-4c59-8ff2-bd51ec58cb4c" expires: - '-1' pragma: @@ -1314,7 +1314,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bcba5d56-370c-4d20-8746-4c0687f8a3b8 + - 5432a09e-58d3-4b1f-9e0c-e64eec53276a status: code: 200 message: OK @@ -1337,8 +1337,8 @@ interactions: ParameterSetName: - -g -n --command-id --scripts User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 method: POST @@ -1348,17 +1348,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/6b37ca81-0cc0-4e9c-9927-884a60eefb10?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/e8c523e2-468d-4eba-aa7a-aa26a0174d45?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Sat, 12 Sep 2020 11:00:10 GMT + - Thu, 15 Oct 2020 08:11:31 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/6b37ca81-0cc0-4e9c-9927-884a60eefb10?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/e8c523e2-468d-4eba-aa7a-aa26a0174d45?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -1389,18 +1389,18 @@ interactions: ParameterSetName: - -g -n --command-id --scripts User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/operations/6b37ca81-0cc0-4e9c-9927-884a60eefb10?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/e8c523e2-468d-4eba-aa7a-aa26a0174d45?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:00:10.5424124+00:00\",\r\n \"endTime\": - \"2020-09-12T11:00:26.5111969+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2020-10-15T08:11:31.6258558+00:00\",\r\n \"endTime\": + \"2020-10-15T08:11:47.4385821+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 Sat Sep 12 11:01:00 2020\\n\"}]}\r\n - \ },\r\n \"name\": \"6b37ca81-0cc0-4e9c-9927-884a60eefb10\"\r\n}" + commands will be executed using /bin/sh\\njob 1 at Thu Oct 15 08:12:00 2020\\n\"}]}\r\n + \ },\r\n \"name\": \"e8c523e2-468d-4eba-aa7a-aa26a0174d45\"\r\n}" headers: cache-control: - no-cache @@ -1409,7 +1409,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:00:40 GMT + - Thu, 15 Oct 2020 08:12:02 GMT expires: - '-1' pragma: @@ -1444,15 +1444,15 @@ interactions: ParameterSetName: - -g -n --command-id --scripts User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/operations/6b37ca81-0cc0-4e9c-9927-884a60eefb10?monitor=true&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/e8c523e2-468d-4eba-aa7a-aa26a0174d45?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 Sep 12 11:01:00 2020\n"}]}' + will be executed using /bin/sh\njob 1 at Thu Oct 15 08:12:00 2020\n"}]}' headers: cache-control: - no-cache @@ -1461,7 +1461,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:00:41 GMT + - Thu, 15 Oct 2020 08:12:02 GMT expires: - '-1' pragma: @@ -1498,8 +1498,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 method: POST @@ -1509,17 +1509,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/7ecc93b0-1d91-45a6-8ebc-f20d406f6e76?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/5ddb8750-7875-4b12-9e14-9849e5e2e630?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Sat, 12 Sep 2020 11:01:52 GMT + - Thu, 15 Oct 2020 08:13:13 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/7ecc93b0-1d91-45a6-8ebc-f20d406f6e76?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/5ddb8750-7875-4b12-9e14-9849e5e2e630?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -1532,7 +1532,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,23 +1550,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/operations/7ecc93b0-1d91-45a6-8ebc-f20d406f6e76?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/5ddb8750-7875-4b12-9e14-9849e5e2e630?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:01:52.7143592+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"7ecc93b0-1d91-45a6-8ebc-f20d406f6e76\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:13:13.722411+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"5ddb8750-7875-4b12-9e14-9849e5e2e630\"\r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:02:03 GMT + - Thu, 15 Oct 2020 08:13:23 GMT expires: - '-1' pragma: @@ -1601,24 +1601,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/operations/7ecc93b0-1d91-45a6-8ebc-f20d406f6e76?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/5ddb8750-7875-4b12-9e14-9849e5e2e630?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:01:52.7143592+00:00\",\r\n \"endTime\": - \"2020-09-12T11:02:24.1518703+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"7ecc93b0-1d91-45a6-8ebc-f20d406f6e76\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:13:13.722411+00:00\",\r\n \"endTime\": + \"2020-10-15T08:13:53.4579875+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"5ddb8750-7875-4b12-9e14-9849e5e2e630\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:02:39 GMT + - Thu, 15 Oct 2020 08:14:00 GMT expires: - '-1' pragma: @@ -1655,8 +1655,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 method: POST @@ -1670,7 +1670,7 @@ interactions: content-length: - '0' date: - - Sat, 12 Sep 2020 11:02:40 GMT + - Thu, 15 Oct 2020 08:14:01 GMT expires: - '-1' pragma: @@ -1685,7 +1685,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/UpdateVM3Min;238,Microsoft.Compute/UpdateVM30Min;1198 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -1703,8 +1703,8 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 method: GET @@ -1713,26 +1713,26 @@ 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\": \"e6aa5d8f-fea9-40c8-8537-7a69f1b19312\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"9fb47369-3886-4a05-800c-824b3fa25d69\",\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.202009080\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"vm1_disk1_30c0831fadcb4a418ca0e38813257fd8\",\r\n + \"18.04.202010140\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"vm1_disk1_92d93d9aa344493291d0f11950774c43\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n - \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGXCIFXV4L6BFY3ZCNJKML4MAY4UZCIFF77UCCATWATWYVDDQ3DXWBBW2SBCXANJQP2/providers/Microsoft.Compute/disks/vm1_disk1_30c0831fadcb4a418ca0e38813257fd8\"\r\n + \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_92d93d9aa344493291d0f11950774c43\"\r\n \ }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": - 0,\r\n \"name\": \"vm1_disk2_7fb39d1f093141159267db218595d4c3\",\r\n + 0,\r\n \"name\": \"vm1_disk2_c3af906c319344c0b2e68499dfeb2aa9\",\r\n \ \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n - \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGXCIFXV4L6BFY3ZCNJKML4MAY4UZCIFF77UCCATWATWYVDDQ3DXWBBW2SBCXANJQP2/providers/Microsoft.Compute/disks/vm1_disk2_7fb39d1f093141159267db218595d4c3\"\r\n + \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_c3af906c319344c0b2e68499dfeb2aa9\"\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 AAAAB3NzaC1yc2EAAAADAQABAAABAQDfx4waEeymqn3yAwr8AUGcVBHKgSIivJTomn+dQRwcq2hDF8DErwzrzRQ4WhQLmKv6A4j/c7zAHARLSAlPMfMEhfh+zEZYAMAyOxst05ZfFFws3WiTjMo5Ahxh49qv5pAsYNDqQk/fB+cmD8VMxF06I/ab+rDJ9ISr59phRJBXB5CZGZkibZLZwFE6cYVcsuaU1xYAV9c2Dc8lbyTjmqM9RDnfqNxzkYsMmr0Pstqx93o/SD+trlRRPkamQDZNDOTox3S+P23F4J9OkXvcywgXLmus2cKpJVZqMpivZW7upotq5glqV/87Mj2z+8weHG1KVDiu0JiNm7NHXftfUsHV - fareast\\\\bim@DESKTOP-5KK2RC0\\n\"\r\n }\r\n ]\r\n },\r\n + \"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\": @@ -1742,11 +1742,11 @@ interactions: cache-control: - no-cache content-length: - - '2986' + - '2977' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:02:41 GMT + - Thu, 15 Oct 2020 08:14:02 GMT expires: - '-1' pragma: @@ -1763,7 +1763,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31995 + - Microsoft.Compute/LowCostGet3Min;3999,Microsoft.Compute/LowCostGet30Min;31995 status: code: 200 message: OK @@ -1781,15 +1781,15 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - python/3.7.5 (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.11.1 + - 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 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-09-12T10:57:28Z"},"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":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1798,7 +1798,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:02:41 GMT + - Thu, 15 Oct 2020 08:14:02 GMT expires: - '-1' pragma: @@ -1832,8 +1832,8 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 method: PUT @@ -1846,10 +1846,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.RGXCIFXV4L6BFY3ZCNJKML4MAY4UZCIFF77UCCATWATWYVDDQ3DXWBBW2SBCXANJQP2/providers/Microsoft.Compute/disks/vm1_disk1_30c0831fadcb4a418ca0e38813257fd8\"\r\n + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_92d93d9aa344493291d0f11950774c43\"\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.RGXCIFXV4L6BFY3ZCNJKML4MAY4UZCIFF77UCCATWATWYVDDQ3DXWBBW2SBCXANJQP2/providers/Microsoft.Compute/disks/vm1_disk2_7fb39d1f093141159267db218595d4c3\"\r\n + 0,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_c3af906c319344c0b2e68499dfeb2aa9\"\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}" @@ -1857,7 +1857,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/676b007a-f39b-4b76-8269-55576e80ad0c?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/a8e64110-8605-457a-93d4-40209dd145f0?api-version=2020-06-01 cache-control: - no-cache content-length: @@ -1865,7 +1865,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:02:48 GMT + - Thu, 15 Oct 2020 08:14:10 GMT expires: - '-1' pragma: @@ -1880,7 +1880,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateImages3Min;39,Microsoft.Compute/CreateImages30Min;199 x-ms-ratelimit-remaining-subscription-writes: - - '1188' + - '1199' status: code: 201 message: Created @@ -1898,15 +1898,15 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/operations/676b007a-f39b-4b76-8269-55576e80ad0c?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/a8e64110-8605-457a-93d4-40209dd145f0?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:02:48.1206726+00:00\",\r\n \"endTime\": - \"2020-09-12T11:02:53.3706617+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"676b007a-f39b-4b76-8269-55576e80ad0c\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:14:09.4584742+00:00\",\r\n \"endTime\": + \"2020-10-15T08:14:14.6461259+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"a8e64110-8605-457a-93d4-40209dd145f0\"\r\n}" headers: cache-control: - no-cache @@ -1915,7 +1915,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:03:19 GMT + - Thu, 15 Oct 2020 08:14:41 GMT expires: - '-1' pragma: @@ -1950,8 +1950,8 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1?api-version=2020-06-01 response: @@ -1962,11 +1962,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.RGXCIFXV4L6BFY3ZCNJKML4MAY4UZCIFF77UCCATWATWYVDDQ3DXWBBW2SBCXANJQP2/providers/Microsoft.Compute/disks/vm1_disk1_30c0831fadcb4a418ca0e38813257fd8\"\r\n + 30,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_92d93d9aa344493291d0f11950774c43\"\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.RGXCIFXV4L6BFY3ZCNJKML4MAY4UZCIFF77UCCATWATWYVDDQ3DXWBBW2SBCXANJQP2/providers/Microsoft.Compute/disks/vm1_disk2_7fb39d1f093141159267db218595d4c3\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_c3af906c319344c0b2e68499dfeb2aa9\"\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}" @@ -1978,7 +1978,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:03:19 GMT + - Thu, 15 Oct 2020 08:14:41 GMT expires: - '-1' pragma: @@ -2014,15 +2014,15 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - python/3.7.5 (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.11.1 + - 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 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-09-12T10:57:28Z"},"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":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2031,7 +2031,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:03:20 GMT + - Thu, 15 Oct 2020 08:14:42 GMT expires: - '-1' pragma: @@ -2066,8 +2066,8 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 method: PUT @@ -2080,21 +2080,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-09-12T11:03:26.3116105+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-10-15T08:14:48.613043+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/efb1c26a-875f-4705-9da1-004ffa3343d4?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/81539472-7ff0-4fa5-b69d-020e9d1f4bfe?api-version=2019-12-01 cache-control: - no-cache content-length: - - '1075' + - '1074' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:03:26 GMT + - Thu, 15 Oct 2020 08:14:49 GMT expires: - '-1' pragma: @@ -2107,9 +2107,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: - - '1186' + - '1196' status: code: 201 message: Created @@ -2128,66 +2128,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/efb1c26a-875f-4705-9da1-004ffa3343d4?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2020-09-12T11:03:26.2959969+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"efb1c26a-875f-4705-9da1-004ffa3343d4\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Sat, 12 Sep 2020 11:03: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;1198,Microsoft.Compute/GetOperationStatus30Min;2394 - 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 --managed-image - --replica-count - User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/efb1c26a-875f-4705-9da1-004ffa3343d4?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/81539472-7ff0-4fa5-b69d-020e9d1f4bfe?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:03:26.2959969+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"efb1c26a-875f-4705-9da1-004ffa3343d4\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:14:48.5974088+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"81539472-7ff0-4fa5-b69d-020e9d1f4bfe\"\r\n}" headers: cache-control: - no-cache @@ -2196,7 +2144,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:04:28 GMT + - Thu, 15 Oct 2020 08:15:21 GMT expires: - '-1' pragma: @@ -2213,7 +2161,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;2391 + - Microsoft.Compute/GetOperationStatus3Min;1182,Microsoft.Compute/GetOperationStatus30Min;4169 status: code: 200 message: OK @@ -2232,14 +2180,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/efb1c26a-875f-4705-9da1-004ffa3343d4?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/81539472-7ff0-4fa5-b69d-020e9d1f4bfe?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:03:26.2959969+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"efb1c26a-875f-4705-9da1-004ffa3343d4\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:14:48.5974088+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"81539472-7ff0-4fa5-b69d-020e9d1f4bfe\"\r\n}" headers: cache-control: - no-cache @@ -2248,7 +2196,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:04:58 GMT + - Thu, 15 Oct 2020 08:15:51 GMT expires: - '-1' pragma: @@ -2265,7 +2213,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;2388 + - Microsoft.Compute/GetOperationStatus3Min;1180,Microsoft.Compute/GetOperationStatus30Min;4164 status: code: 200 message: OK @@ -2284,14 +2232,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/efb1c26a-875f-4705-9da1-004ffa3343d4?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/81539472-7ff0-4fa5-b69d-020e9d1f4bfe?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:03:26.2959969+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"efb1c26a-875f-4705-9da1-004ffa3343d4\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:14:48.5974088+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"81539472-7ff0-4fa5-b69d-020e9d1f4bfe\"\r\n}" headers: cache-control: - no-cache @@ -2300,7 +2248,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:05:29 GMT + - Thu, 15 Oct 2020 08:16:21 GMT expires: - '-1' pragma: @@ -2317,7 +2265,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;2386 + - Microsoft.Compute/GetOperationStatus3Min;1177,Microsoft.Compute/GetOperationStatus30Min;4158 status: code: 200 message: OK @@ -2336,14 +2284,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/efb1c26a-875f-4705-9da1-004ffa3343d4?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/81539472-7ff0-4fa5-b69d-020e9d1f4bfe?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:03:26.2959969+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"efb1c26a-875f-4705-9da1-004ffa3343d4\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:14:48.5974088+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"81539472-7ff0-4fa5-b69d-020e9d1f4bfe\"\r\n}" headers: cache-control: - no-cache @@ -2352,7 +2300,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:06:00 GMT + - Thu, 15 Oct 2020 08:16:51 GMT expires: - '-1' pragma: @@ -2369,7 +2317,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;2383 + - Microsoft.Compute/GetOperationStatus3Min;1174,Microsoft.Compute/GetOperationStatus30Min;4152 status: code: 200 message: OK @@ -2388,14 +2336,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/efb1c26a-875f-4705-9da1-004ffa3343d4?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/81539472-7ff0-4fa5-b69d-020e9d1f4bfe?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:03:26.2959969+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"efb1c26a-875f-4705-9da1-004ffa3343d4\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:14:48.5974088+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"81539472-7ff0-4fa5-b69d-020e9d1f4bfe\"\r\n}" headers: cache-control: - no-cache @@ -2404,7 +2352,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:06:30 GMT + - Thu, 15 Oct 2020 08:17:23 GMT expires: - '-1' pragma: @@ -2421,7 +2369,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;2380 + - Microsoft.Compute/GetOperationStatus3Min;1171,Microsoft.Compute/GetOperationStatus30Min;4146 status: code: 200 message: OK @@ -2440,14 +2388,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/efb1c26a-875f-4705-9da1-004ffa3343d4?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/81539472-7ff0-4fa5-b69d-020e9d1f4bfe?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:03:26.2959969+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"efb1c26a-875f-4705-9da1-004ffa3343d4\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:14:48.5974088+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"81539472-7ff0-4fa5-b69d-020e9d1f4bfe\"\r\n}" headers: cache-control: - no-cache @@ -2456,7 +2404,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:07:00 GMT + - Thu, 15 Oct 2020 08:17:53 GMT expires: - '-1' pragma: @@ -2473,7 +2421,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;2377 + - Microsoft.Compute/GetOperationStatus3Min;1167,Microsoft.Compute/GetOperationStatus30Min;4140 status: code: 200 message: OK @@ -2492,14 +2440,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/efb1c26a-875f-4705-9da1-004ffa3343d4?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/81539472-7ff0-4fa5-b69d-020e9d1f4bfe?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:03:26.2959969+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"efb1c26a-875f-4705-9da1-004ffa3343d4\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:14:48.5974088+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"81539472-7ff0-4fa5-b69d-020e9d1f4bfe\"\r\n}" headers: cache-control: - no-cache @@ -2508,7 +2456,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:07:31 GMT + - Thu, 15 Oct 2020 08:18:23 GMT expires: - '-1' pragma: @@ -2525,7 +2473,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;2374 + - Microsoft.Compute/GetOperationStatus3Min;1168,Microsoft.Compute/GetOperationStatus30Min;4135 status: code: 200 message: OK @@ -2544,14 +2492,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/efb1c26a-875f-4705-9da1-004ffa3343d4?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/81539472-7ff0-4fa5-b69d-020e9d1f4bfe?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:03:26.2959969+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"efb1c26a-875f-4705-9da1-004ffa3343d4\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:14:48.5974088+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"81539472-7ff0-4fa5-b69d-020e9d1f4bfe\"\r\n}" headers: cache-control: - no-cache @@ -2560,7 +2508,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:08:01 GMT + - Thu, 15 Oct 2020 08:18:53 GMT expires: - '-1' pragma: @@ -2577,7 +2525,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;2372 + - Microsoft.Compute/GetOperationStatus3Min;1168,Microsoft.Compute/GetOperationStatus30Min;4129 status: code: 200 message: OK @@ -2596,14 +2544,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/efb1c26a-875f-4705-9da1-004ffa3343d4?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/81539472-7ff0-4fa5-b69d-020e9d1f4bfe?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:03:26.2959969+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"efb1c26a-875f-4705-9da1-004ffa3343d4\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:14:48.5974088+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"81539472-7ff0-4fa5-b69d-020e9d1f4bfe\"\r\n}" headers: cache-control: - no-cache @@ -2612,7 +2560,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:08:31 GMT + - Thu, 15 Oct 2020 08:19:24 GMT expires: - '-1' pragma: @@ -2629,7 +2577,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;2369 + - Microsoft.Compute/GetOperationStatus3Min;1168,Microsoft.Compute/GetOperationStatus30Min;4124 status: code: 200 message: OK @@ -2648,14 +2596,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/efb1c26a-875f-4705-9da1-004ffa3343d4?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/81539472-7ff0-4fa5-b69d-020e9d1f4bfe?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:03:26.2959969+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"efb1c26a-875f-4705-9da1-004ffa3343d4\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:14:48.5974088+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"81539472-7ff0-4fa5-b69d-020e9d1f4bfe\"\r\n}" headers: cache-control: - no-cache @@ -2664,7 +2612,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:09:01 GMT + - Thu, 15 Oct 2020 08:19:54 GMT expires: - '-1' pragma: @@ -2681,7 +2629,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;2366 + - Microsoft.Compute/GetOperationStatus3Min;1170,Microsoft.Compute/GetOperationStatus30Min;4120 status: code: 200 message: OK @@ -2700,14 +2648,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/efb1c26a-875f-4705-9da1-004ffa3343d4?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/81539472-7ff0-4fa5-b69d-020e9d1f4bfe?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:03:26.2959969+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"efb1c26a-875f-4705-9da1-004ffa3343d4\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:14:48.5974088+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"81539472-7ff0-4fa5-b69d-020e9d1f4bfe\"\r\n}" headers: cache-control: - no-cache @@ -2716,7 +2664,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:09:32 GMT + - Thu, 15 Oct 2020 08:20:24 GMT expires: - '-1' pragma: @@ -2733,7 +2681,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;2364 + - Microsoft.Compute/GetOperationStatus3Min;1172,Microsoft.Compute/GetOperationStatus30Min;4117 status: code: 200 message: OK @@ -2752,14 +2700,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/efb1c26a-875f-4705-9da1-004ffa3343d4?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/81539472-7ff0-4fa5-b69d-020e9d1f4bfe?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:03:26.2959969+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"efb1c26a-875f-4705-9da1-004ffa3343d4\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:14:48.5974088+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"81539472-7ff0-4fa5-b69d-020e9d1f4bfe\"\r\n}" headers: cache-control: - no-cache @@ -2768,7 +2716,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:10:02 GMT + - Thu, 15 Oct 2020 08:20:55 GMT expires: - '-1' pragma: @@ -2785,7 +2733,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;2361 + - Microsoft.Compute/GetOperationStatus3Min;1175,Microsoft.Compute/GetOperationStatus30Min;4114 status: code: 200 message: OK @@ -2804,14 +2752,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/efb1c26a-875f-4705-9da1-004ffa3343d4?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/81539472-7ff0-4fa5-b69d-020e9d1f4bfe?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:03:26.2959969+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"efb1c26a-875f-4705-9da1-004ffa3343d4\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:14:48.5974088+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"81539472-7ff0-4fa5-b69d-020e9d1f4bfe\"\r\n}" headers: cache-control: - no-cache @@ -2820,7 +2768,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:10:33 GMT + - Thu, 15 Oct 2020 08:21:26 GMT expires: - '-1' pragma: @@ -2837,7 +2785,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;2358 + - Microsoft.Compute/GetOperationStatus3Min;1178,Microsoft.Compute/GetOperationStatus30Min;4111 status: code: 200 message: OK @@ -2856,14 +2804,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/efb1c26a-875f-4705-9da1-004ffa3343d4?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/81539472-7ff0-4fa5-b69d-020e9d1f4bfe?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:03:26.2959969+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"efb1c26a-875f-4705-9da1-004ffa3343d4\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:14:48.5974088+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"81539472-7ff0-4fa5-b69d-020e9d1f4bfe\"\r\n}" headers: cache-control: - no-cache @@ -2872,7 +2820,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:11:03 GMT + - Thu, 15 Oct 2020 08:21:56 GMT expires: - '-1' pragma: @@ -2889,7 +2837,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;2355 + - Microsoft.Compute/GetOperationStatus3Min;1178,Microsoft.Compute/GetOperationStatus30Min;4107 status: code: 200 message: OK @@ -2908,14 +2856,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/efb1c26a-875f-4705-9da1-004ffa3343d4?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/81539472-7ff0-4fa5-b69d-020e9d1f4bfe?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:03:26.2959969+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"efb1c26a-875f-4705-9da1-004ffa3343d4\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:14:48.5974088+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"81539472-7ff0-4fa5-b69d-020e9d1f4bfe\"\r\n}" headers: cache-control: - no-cache @@ -2924,7 +2872,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:11:34 GMT + - Thu, 15 Oct 2020 08:22:26 GMT expires: - '-1' pragma: @@ -2941,7 +2889,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;2352 + - Microsoft.Compute/GetOperationStatus3Min;1179,Microsoft.Compute/GetOperationStatus30Min;4103 status: code: 200 message: OK @@ -2960,14 +2908,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/efb1c26a-875f-4705-9da1-004ffa3343d4?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/81539472-7ff0-4fa5-b69d-020e9d1f4bfe?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:03:26.2959969+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"efb1c26a-875f-4705-9da1-004ffa3343d4\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:14:48.5974088+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"81539472-7ff0-4fa5-b69d-020e9d1f4bfe\"\r\n}" headers: cache-control: - no-cache @@ -2976,7 +2924,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:12:04 GMT + - Thu, 15 Oct 2020 08:22:56 GMT expires: - '-1' pragma: @@ -2993,7 +2941,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;2350 + - Microsoft.Compute/GetOperationStatus3Min;1179,Microsoft.Compute/GetOperationStatus30Min;4099 status: code: 200 message: OK @@ -3012,14 +2960,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/efb1c26a-875f-4705-9da1-004ffa3343d4?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/81539472-7ff0-4fa5-b69d-020e9d1f4bfe?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:03:26.2959969+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"efb1c26a-875f-4705-9da1-004ffa3343d4\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:14:48.5974088+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"81539472-7ff0-4fa5-b69d-020e9d1f4bfe\"\r\n}" headers: cache-control: - no-cache @@ -3028,7 +2976,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:12:34 GMT + - Thu, 15 Oct 2020 08:23:28 GMT expires: - '-1' pragma: @@ -3045,7 +2993,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;2347 + - Microsoft.Compute/GetOperationStatus3Min;1178,Microsoft.Compute/GetOperationStatus30Min;4095 status: code: 200 message: OK @@ -3064,14 +3012,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/efb1c26a-875f-4705-9da1-004ffa3343d4?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/81539472-7ff0-4fa5-b69d-020e9d1f4bfe?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:03:26.2959969+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"efb1c26a-875f-4705-9da1-004ffa3343d4\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:14:48.5974088+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"81539472-7ff0-4fa5-b69d-020e9d1f4bfe\"\r\n}" headers: cache-control: - no-cache @@ -3080,7 +3028,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:13:05 GMT + - Thu, 15 Oct 2020 08:23:58 GMT expires: - '-1' pragma: @@ -3097,7 +3045,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;2344 + - Microsoft.Compute/GetOperationStatus3Min;1180,Microsoft.Compute/GetOperationStatus30Min;4093 status: code: 200 message: OK @@ -3116,14 +3064,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/efb1c26a-875f-4705-9da1-004ffa3343d4?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/81539472-7ff0-4fa5-b69d-020e9d1f4bfe?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:03:26.2959969+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"efb1c26a-875f-4705-9da1-004ffa3343d4\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:14:48.5974088+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"81539472-7ff0-4fa5-b69d-020e9d1f4bfe\"\r\n}" headers: cache-control: - no-cache @@ -3132,7 +3080,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:13:37 GMT + - Thu, 15 Oct 2020 08:24:28 GMT expires: - '-1' pragma: @@ -3149,7 +3097,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;2341 + - Microsoft.Compute/GetOperationStatus3Min;1179,Microsoft.Compute/GetOperationStatus30Min;4089 status: code: 200 message: OK @@ -3168,67 +3116,15 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/efb1c26a-875f-4705-9da1-004ffa3343d4?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/81539472-7ff0-4fa5-b69d-020e9d1f4bfe?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:03:26.2959969+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"efb1c26a-875f-4705-9da1-004ffa3343d4\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Sat, 12 Sep 2020 11:14:07 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;1184,Microsoft.Compute/GetOperationStatus30Min;2338 - 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 --managed-image - --replica-count - User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/efb1c26a-875f-4705-9da1-004ffa3343d4?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2020-09-12T11:03:26.2959969+00:00\",\r\n \"endTime\": - \"2020-09-12T11:14:11.8784899+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"efb1c26a-875f-4705-9da1-004ffa3343d4\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:14:48.5974088+00:00\",\r\n \"endTime\": + \"2020-10-15T08:24:49.1584998+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"81539472-7ff0-4fa5-b69d-020e9d1f4bfe\"\r\n}" headers: cache-control: - no-cache @@ -3237,7 +3133,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:14:37 GMT + - Thu, 15 Oct 2020 08:24:58 GMT expires: - '-1' pragma: @@ -3254,7 +3150,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;2336 + - Microsoft.Compute/GetOperationStatus3Min;1178,Microsoft.Compute/GetOperationStatus30Min;4085 status: code: 200 message: OK @@ -3273,8 +3169,8 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2019-12-01 response: @@ -3285,7 +3181,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-09-12T11:03:26.3116105+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-10-15T08:14:48.613043+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\": @@ -3297,11 +3193,11 @@ interactions: cache-control: - no-cache content-length: - - '1334' + - '1333' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:14:37 GMT + - Thu, 15 Oct 2020 08:24:58 GMT expires: - '-1' pragma: @@ -3318,7 +3214,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1997,Microsoft.Compute/GetGalleryImageVersion30Min;9995 + - Microsoft.Compute/GetGalleryImageVersion3Min;1996,Microsoft.Compute/GetGalleryImageVersion30Min;9988 status: code: 200 message: OK @@ -3336,8 +3232,8 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 method: GET @@ -3345,16 +3241,16 @@ interactions: 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-09-12T11:03:26.3116105+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":"2020-10-15T08:14:48.613043+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: - - '1011' + - '1010' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:14:39 GMT + - Thu, 15 Oct 2020 08:25:01 GMT expires: - '-1' pragma: @@ -3366,41 +3262,41 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 0711c3b6-94d3-440d-b676-5dea27fa74cf - - 3a05ff18-ce72-4f0f-aadb-2ea7f050120e - - c183895f-536a-41e6-814f-56cc82405fb8 - - 832322ee-cbcb-4a4c-8e5f-dfe1c244a8c9 - - 83d0ea26-7a90-4f3d-adae-ad52c496a911 - - d51906ba-7080-4ef2-a755-2aaab2b47e33 - - 3a8aa082-d143-457f-9066-05e14cfb3e5a - - eab0ab62-34fd-4e07-9f57-cd5b83b8de38 - - c550a205-a0b6-47b4-9f76-111a001084df - - 68989b6e-b859-4a67-a704-98dc55a8d95c - - 51bc42e2-978c-47ad-954d-26e3cc4474ac - - 95012613-4f8d-404f-9457-d3d468b4e642 - - 1b50bb2c-ebc0-48f9-976d-2b613f7b42b4 - - 77bc716e-c2da-4541-b086-58e048480abf - - 2b19aa3c-6e91-473b-bdcf-6e6c74acbe2d - - 4e55bbb3-affa-4e00-803c-f26f04ab4b36 - - 73ff1a68-141b-40a0-9355-afccf9e4bfa7 - - 38984e9a-096c-43d8-9815-d9727587ed11 - - 38fc1c64-77de-40a7-b361-a7f566af338c - - c2abcda2-2b7b-4442-b8cf-5a54ba04e796 - - 6105fb70-9b75-4605-adc6-7877fe1fbe24 - - 6d3545c7-08cb-4619-9389-42c4527f3197 - - 6c960e93-eb36-4339-9140-3174b2d20242 - - 39e4940a-3170-4363-8e12-bf44f78985b1 - - c2f286ce-f47a-4924-9115-a792be43dd5b - - 73814ad3-abf3-4867-b53f-ca654a8715cf - - e8a27eff-8d5c-42dd-9891-787389056730 - - 131699b4-4d8c-4e02-a203-0cb3b8712a4f - - b6d656ea-0a43-4f8e-bc04-f47e129af22d - - fa398ef4-4569-41a2-aa91-c6c5370d2c92 - - 86bb86b9-5b17-41ab-923b-c0b56887b32b - - 82945a66-0c3b-4594-ae75-57bd9c74900f - - 190047cb-df4e-4a89-8c9c-56a4c1d14385 - - 55e48283-26e1-4dae-afab-97bb951c0957 - - 68d55f81-49a9-4479-9e3c-bb435bfa5b14 + - eda8a56e-5a23-48b3-9fff-ef618c737e70 + - e5133f35-84d3-42dc-b7f0-762b4eb1ce2e + - 0bd71514-2cf9-4489-8db1-78043d55881d + - 09633bac-d621-40f0-a3c9-fa25896d3c6f + - cb1f08b5-eec9-4ed9-a963-fdf50a34c9db + - dcc9c220-fbc0-4b57-b998-61d33238195d + - 8b095d45-80d9-4a6b-a921-3b7c9032177d + - fdb57567-6d32-4e64-8d06-ef6776c7c345 + - c83bd90b-8bff-4dfc-8d63-4f2c1b856a2b + - 706f6292-9844-4dd5-b5db-5621ef0af68e + - b57f9f62-b380-44fe-9369-e7d97194eb59 + - 46d0cc6e-8353-4701-9692-6979b0da4c0e + - 9e76e79e-e3f7-4de8-ae60-45ee2a0eafbc + - 0dd1b568-b4e3-4aec-a696-fe0428e0cfb1 + - d4c9c0e9-c7ec-4d9c-9618-f0f29a5c8b7d + - 6f745904-96a3-413e-8d59-9c4af2635f89 + - b764d880-e4fd-4652-b508-a1722e8d9fe2 + - 81f1fbb8-4531-4f42-878e-571a9954c0a1 + - e8c4b8bf-43a1-4a51-8767-ae909092715f + - 45f0291a-6183-4c44-b216-5773a934fc88 + - 839f2230-1d8f-4a6b-b5fa-079aac2cb6ff + - 39903367-176b-499b-b915-49771c3c20f7 + - aa76ac64-98be-4e81-8faf-70a6091992d9 + - 8f474aec-c408-4a04-af8f-bbd20660cc76 + - 80860a0f-244d-4695-8ab7-dee5d95840ac + - df82e5ac-7461-46f9-9513-96b93ae73c07 + - bc97a754-6cd6-4aae-a9ca-2fb994eb505a + - dd2f34b8-c36c-43e4-8229-5c769f979645 + - 62cb42b6-fdbb-4e01-833c-0f571c682b7a + - f589927a-dea6-4b6b-a5dd-ea9153fcd54e + - f7d27941-ecbb-47b0-ab3d-38eb4d30f13a + - 13a46d88-76da-4534-8037-d0a4a97fef01 + - 01e05de4-917b-4257-b4a0-fb329e89bd38 + - 9138e3c3-ae97-410c-a45a-f30230746be8 + - 645d2114-921c-4542-8a14-a7670089b4a1 status: code: 200 message: OK @@ -3418,8 +3314,8 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 method: GET @@ -3432,7 +3328,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-09-12T11:03:26.3116105+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-10-15T08:14:48.613043+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\": @@ -3444,11 +3340,11 @@ interactions: cache-control: - no-cache content-length: - - '1334' + - '1333' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:14:41 GMT + - Thu, 15 Oct 2020 08:25:02 GMT expires: - '-1' pragma: @@ -3465,7 +3361,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1996,Microsoft.Compute/GetGalleryImageVersion30Min;9994 + - Microsoft.Compute/GetGalleryImageVersion3Min;1996,Microsoft.Compute/GetGalleryImageVersion30Min;9987 status: code: 200 message: OK @@ -3484,8 +3380,8 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 method: GET @@ -3498,7 +3394,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-09-12T11:03:26.3116105+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-10-15T08:14:48.613043+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\": @@ -3510,11 +3406,11 @@ interactions: cache-control: - no-cache content-length: - - '1334' + - '1333' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:14:42 GMT + - Thu, 15 Oct 2020 08:25:03 GMT expires: - '-1' pragma: @@ -3531,7 +3427,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1995,Microsoft.Compute/GetGalleryImageVersion30Min;9993 + - Microsoft.Compute/GetGalleryImageVersion3Min;1995,Microsoft.Compute/GetGalleryImageVersion30Min;9986 status: code: 200 message: OK @@ -3557,8 +3453,8 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 method: PUT @@ -3573,7 +3469,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-09-12T11:03:26.3116105+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-10-15T08:14:48.613043+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\": @@ -3583,15 +3479,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/df09d11c-701d-4dbc-8583-27320650ad1e?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/672533e5-d0bd-408a-8e8b-c4e5256ec28d?api-version=2019-12-01 cache-control: - no-cache content-length: - - '1474' + - '1473' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:14:44 GMT + - Thu, 15 Oct 2020 08:25:05 GMT expires: - '-1' pragma: @@ -3608,9 +3504,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;1197 x-ms-ratelimit-remaining-subscription-writes: - - '1187' + - '1194' status: code: 200 message: OK @@ -3629,14 +3525,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/df09d11c-701d-4dbc-8583-27320650ad1e?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/672533e5-d0bd-408a-8e8b-c4e5256ec28d?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:14:44.4880882+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"df09d11c-701d-4dbc-8583-27320650ad1e\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:25:05.3928033+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"672533e5-d0bd-408a-8e8b-c4e5256ec28d\"\r\n}" headers: cache-control: - no-cache @@ -3645,7 +3541,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:15:14 GMT + - Thu, 15 Oct 2020 08:25:36 GMT expires: - '-1' pragma: @@ -3662,7 +3558,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;2334 + - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4083 status: code: 200 message: OK @@ -3681,14 +3577,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/df09d11c-701d-4dbc-8583-27320650ad1e?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/672533e5-d0bd-408a-8e8b-c4e5256ec28d?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:14:44.4880882+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"df09d11c-701d-4dbc-8583-27320650ad1e\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:25:05.3928033+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"672533e5-d0bd-408a-8e8b-c4e5256ec28d\"\r\n}" headers: cache-control: - no-cache @@ -3697,7 +3593,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:15:45 GMT + - Thu, 15 Oct 2020 08:26:07 GMT expires: - '-1' pragma: @@ -3714,7 +3610,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;2331 + - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;4080 status: code: 200 message: OK @@ -3733,14 +3629,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/df09d11c-701d-4dbc-8583-27320650ad1e?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/672533e5-d0bd-408a-8e8b-c4e5256ec28d?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:14:44.4880882+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"df09d11c-701d-4dbc-8583-27320650ad1e\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:25:05.3928033+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"672533e5-d0bd-408a-8e8b-c4e5256ec28d\"\r\n}" headers: cache-control: - no-cache @@ -3749,7 +3645,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:16:15 GMT + - Thu, 15 Oct 2020 08:26:37 GMT expires: - '-1' pragma: @@ -3766,7 +3662,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;2328 + - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4077 status: code: 200 message: OK @@ -3785,14 +3681,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/df09d11c-701d-4dbc-8583-27320650ad1e?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/672533e5-d0bd-408a-8e8b-c4e5256ec28d?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:14:44.4880882+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"df09d11c-701d-4dbc-8583-27320650ad1e\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:25:05.3928033+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"672533e5-d0bd-408a-8e8b-c4e5256ec28d\"\r\n}" headers: cache-control: - no-cache @@ -3801,7 +3697,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:16:45 GMT + - Thu, 15 Oct 2020 08:27:07 GMT expires: - '-1' pragma: @@ -3818,7 +3714,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;2325 + - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;4074 status: code: 200 message: OK @@ -3837,14 +3733,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/df09d11c-701d-4dbc-8583-27320650ad1e?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/672533e5-d0bd-408a-8e8b-c4e5256ec28d?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:14:44.4880882+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"df09d11c-701d-4dbc-8583-27320650ad1e\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:25:05.3928033+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"672533e5-d0bd-408a-8e8b-c4e5256ec28d\"\r\n}" headers: cache-control: - no-cache @@ -3853,7 +3749,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:17:16 GMT + - Thu, 15 Oct 2020 08:27:37 GMT expires: - '-1' pragma: @@ -3870,7 +3766,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;2323 + - Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;4072 status: code: 200 message: OK @@ -3889,14 +3785,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/df09d11c-701d-4dbc-8583-27320650ad1e?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/672533e5-d0bd-408a-8e8b-c4e5256ec28d?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:14:44.4880882+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"df09d11c-701d-4dbc-8583-27320650ad1e\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:25:05.3928033+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"672533e5-d0bd-408a-8e8b-c4e5256ec28d\"\r\n}" headers: cache-control: - no-cache @@ -3905,7 +3801,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:17:47 GMT + - Thu, 15 Oct 2020 08:28:07 GMT expires: - '-1' pragma: @@ -3922,7 +3818,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2320 + - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;4069 status: code: 200 message: OK @@ -3941,14 +3837,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/df09d11c-701d-4dbc-8583-27320650ad1e?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/672533e5-d0bd-408a-8e8b-c4e5256ec28d?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:14:44.4880882+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"df09d11c-701d-4dbc-8583-27320650ad1e\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:25:05.3928033+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"672533e5-d0bd-408a-8e8b-c4e5256ec28d\"\r\n}" headers: cache-control: - no-cache @@ -3957,7 +3853,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:18:17 GMT + - Thu, 15 Oct 2020 08:28:38 GMT expires: - '-1' pragma: @@ -3974,7 +3870,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2317 + - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;4066 status: code: 200 message: OK @@ -3993,14 +3889,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/df09d11c-701d-4dbc-8583-27320650ad1e?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/672533e5-d0bd-408a-8e8b-c4e5256ec28d?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:14:44.4880882+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"df09d11c-701d-4dbc-8583-27320650ad1e\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:25:05.3928033+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"672533e5-d0bd-408a-8e8b-c4e5256ec28d\"\r\n}" headers: cache-control: - no-cache @@ -4009,7 +3905,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:18:47 GMT + - Thu, 15 Oct 2020 08:29:09 GMT expires: - '-1' pragma: @@ -4026,7 +3922,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2314 + - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4063 status: code: 200 message: OK @@ -4045,14 +3941,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/df09d11c-701d-4dbc-8583-27320650ad1e?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/672533e5-d0bd-408a-8e8b-c4e5256ec28d?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:14:44.4880882+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"df09d11c-701d-4dbc-8583-27320650ad1e\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:25:05.3928033+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"672533e5-d0bd-408a-8e8b-c4e5256ec28d\"\r\n}" headers: cache-control: - no-cache @@ -4061,7 +3957,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:19:17 GMT + - Thu, 15 Oct 2020 08:29:39 GMT expires: - '-1' pragma: @@ -4078,7 +3974,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;2312 + - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4060 status: code: 200 message: OK @@ -4097,14 +3993,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/df09d11c-701d-4dbc-8583-27320650ad1e?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/672533e5-d0bd-408a-8e8b-c4e5256ec28d?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:14:44.4880882+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"df09d11c-701d-4dbc-8583-27320650ad1e\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:25:05.3928033+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"672533e5-d0bd-408a-8e8b-c4e5256ec28d\"\r\n}" headers: cache-control: - no-cache @@ -4113,7 +4009,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:19:48 GMT + - Thu, 15 Oct 2020 08:30:09 GMT expires: - '-1' pragma: @@ -4130,7 +4026,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2309 + - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4057 status: code: 200 message: OK @@ -4149,14 +4045,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/df09d11c-701d-4dbc-8583-27320650ad1e?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/672533e5-d0bd-408a-8e8b-c4e5256ec28d?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:14:44.4880882+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"df09d11c-701d-4dbc-8583-27320650ad1e\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:25:05.3928033+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"672533e5-d0bd-408a-8e8b-c4e5256ec28d\"\r\n}" headers: cache-control: - no-cache @@ -4165,7 +4061,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:20:18 GMT + - Thu, 15 Oct 2020 08:30:39 GMT expires: - '-1' pragma: @@ -4182,7 +4078,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2306 + - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;4055 status: code: 200 message: OK @@ -4201,14 +4097,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/df09d11c-701d-4dbc-8583-27320650ad1e?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/672533e5-d0bd-408a-8e8b-c4e5256ec28d?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:14:44.4880882+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"df09d11c-701d-4dbc-8583-27320650ad1e\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:25:05.3928033+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"672533e5-d0bd-408a-8e8b-c4e5256ec28d\"\r\n}" headers: cache-control: - no-cache @@ -4217,7 +4113,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:20:49 GMT + - Thu, 15 Oct 2020 08:31:10 GMT expires: - '-1' pragma: @@ -4234,7 +4130,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2303 + - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4052 status: code: 200 message: OK @@ -4253,14 +4149,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/df09d11c-701d-4dbc-8583-27320650ad1e?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/672533e5-d0bd-408a-8e8b-c4e5256ec28d?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:14:44.4880882+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"df09d11c-701d-4dbc-8583-27320650ad1e\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:25:05.3928033+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"672533e5-d0bd-408a-8e8b-c4e5256ec28d\"\r\n}" headers: cache-control: - no-cache @@ -4269,7 +4165,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:21:19 GMT + - Thu, 15 Oct 2020 08:31:40 GMT expires: - '-1' pragma: @@ -4286,7 +4182,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2300 + - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4049 status: code: 200 message: OK @@ -4305,14 +4201,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/df09d11c-701d-4dbc-8583-27320650ad1e?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/672533e5-d0bd-408a-8e8b-c4e5256ec28d?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:14:44.4880882+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"df09d11c-701d-4dbc-8583-27320650ad1e\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:25:05.3928033+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"672533e5-d0bd-408a-8e8b-c4e5256ec28d\"\r\n}" headers: cache-control: - no-cache @@ -4321,7 +4217,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:21:50 GMT + - Thu, 15 Oct 2020 08:32:10 GMT expires: - '-1' pragma: @@ -4338,7 +4234,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2298 + - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4046 status: code: 200 message: OK @@ -4357,14 +4253,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/df09d11c-701d-4dbc-8583-27320650ad1e?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/672533e5-d0bd-408a-8e8b-c4e5256ec28d?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:14:44.4880882+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"df09d11c-701d-4dbc-8583-27320650ad1e\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:25:05.3928033+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"672533e5-d0bd-408a-8e8b-c4e5256ec28d\"\r\n}" headers: cache-control: - no-cache @@ -4373,7 +4269,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:22:20 GMT + - Thu, 15 Oct 2020 08:32:41 GMT expires: - '-1' pragma: @@ -4390,7 +4286,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2295 + - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4043 status: code: 200 message: OK @@ -4409,14 +4305,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/df09d11c-701d-4dbc-8583-27320650ad1e?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/672533e5-d0bd-408a-8e8b-c4e5256ec28d?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:14:44.4880882+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"df09d11c-701d-4dbc-8583-27320650ad1e\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:25:05.3928033+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"672533e5-d0bd-408a-8e8b-c4e5256ec28d\"\r\n}" headers: cache-control: - no-cache @@ -4425,7 +4321,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:22:50 GMT + - Thu, 15 Oct 2020 08:33:11 GMT expires: - '-1' pragma: @@ -4442,7 +4338,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2292 + - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4040 status: code: 200 message: OK @@ -4461,14 +4357,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/df09d11c-701d-4dbc-8583-27320650ad1e?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/672533e5-d0bd-408a-8e8b-c4e5256ec28d?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:14:44.4880882+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"df09d11c-701d-4dbc-8583-27320650ad1e\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:25:05.3928033+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"672533e5-d0bd-408a-8e8b-c4e5256ec28d\"\r\n}" headers: cache-control: - no-cache @@ -4477,7 +4373,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:23:21 GMT + - Thu, 15 Oct 2020 08:33:41 GMT expires: - '-1' pragma: @@ -4494,7 +4390,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2289 + - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;4038 status: code: 200 message: OK @@ -4513,14 +4409,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/df09d11c-701d-4dbc-8583-27320650ad1e?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/672533e5-d0bd-408a-8e8b-c4e5256ec28d?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:14:44.4880882+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"df09d11c-701d-4dbc-8583-27320650ad1e\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:25:05.3928033+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"672533e5-d0bd-408a-8e8b-c4e5256ec28d\"\r\n}" headers: cache-control: - no-cache @@ -4529,7 +4425,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:23:52 GMT + - Thu, 15 Oct 2020 08:34:12 GMT expires: - '-1' pragma: @@ -4546,7 +4442,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2287 + - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4035 status: code: 200 message: OK @@ -4565,14 +4461,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/df09d11c-701d-4dbc-8583-27320650ad1e?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/672533e5-d0bd-408a-8e8b-c4e5256ec28d?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:14:44.4880882+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"df09d11c-701d-4dbc-8583-27320650ad1e\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:25:05.3928033+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"672533e5-d0bd-408a-8e8b-c4e5256ec28d\"\r\n}" headers: cache-control: - no-cache @@ -4581,7 +4477,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:24:22 GMT + - Thu, 15 Oct 2020 08:34:42 GMT expires: - '-1' pragma: @@ -4598,7 +4494,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2284 + - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4032 status: code: 200 message: OK @@ -4617,14 +4513,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/df09d11c-701d-4dbc-8583-27320650ad1e?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/672533e5-d0bd-408a-8e8b-c4e5256ec28d?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:14:44.4880882+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"df09d11c-701d-4dbc-8583-27320650ad1e\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:25:05.3928033+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"672533e5-d0bd-408a-8e8b-c4e5256ec28d\"\r\n}" headers: cache-control: - no-cache @@ -4633,7 +4529,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:24:52 GMT + - Thu, 15 Oct 2020 08:35:13 GMT expires: - '-1' pragma: @@ -4650,7 +4546,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2281 + - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;4036 status: code: 200 message: OK @@ -4669,14 +4565,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/df09d11c-701d-4dbc-8583-27320650ad1e?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/672533e5-d0bd-408a-8e8b-c4e5256ec28d?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:14:44.4880882+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"df09d11c-701d-4dbc-8583-27320650ad1e\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:25:05.3928033+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"672533e5-d0bd-408a-8e8b-c4e5256ec28d\"\r\n}" headers: cache-control: - no-cache @@ -4685,7 +4581,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:25:22 GMT + - Thu, 15 Oct 2020 08:35:43 GMT expires: - '-1' pragma: @@ -4702,7 +4598,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2282 + - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;4033 status: code: 200 message: OK @@ -4721,24 +4617,23 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/df09d11c-701d-4dbc-8583-27320650ad1e?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/672533e5-d0bd-408a-8e8b-c4e5256ec28d?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:14:44.4880882+00:00\",\r\n \"endTime\": - \"2020-09-12T11:25:30.0864041+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"df09d11c-701d-4dbc-8583-27320650ad1e\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:25:05.3928033+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"672533e5-d0bd-408a-8e8b-c4e5256ec28d\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '134' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:25:53 GMT + - Thu, 15 Oct 2020 08:36:13 GMT expires: - '-1' pragma: @@ -4755,7 +4650,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2280 + - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;4030 status: code: 200 message: OK @@ -4774,37 +4669,23 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/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/672533e5-d0bd-408a-8e8b-c4e5256ec28d?api-version=2019-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\": \"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\": \"2020-09-12T11:03:26.3116105+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\": \"2020-10-15T08:25:05.3928033+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"672533e5-d0bd-408a-8e8b-c4e5256ec28d\"\r\n}" headers: cache-control: - no-cache content-length: - - '1475' + - '134' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:25:53 GMT + - Thu, 15 Oct 2020 08:36:43 GMT expires: - '-1' pragma: @@ -4821,7 +4702,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1995,Microsoft.Compute/GetGalleryImageVersion30Min;9987 + - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4027 status: code: 200 message: OK @@ -4833,40 +4714,47 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - keyvault create + - sig image-version update Connection: - keep-alive ParameterSetName: - - -g -n --enable-purge-protection --enable-soft-delete + - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions + --replica-count User-Agent: - - python/3.7.5 (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.11.1 - accept-language: - - en-US + - 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/resourcegroups/clitest.rg000001?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/672533e5-d0bd-408a-8e8b-c4e5256ec28d?api-version=2019-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":"2020-09-12T10:57:28Z"},"properties":{"provisioningState":"Succeeded"}}' + string: "{\r\n \"startTime\": \"2020-10-15T08:25:05.3928033+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"672533e5-d0bd-408a-8e8b-c4e5256ec28d\"\r\n}" headers: cache-control: - no-cache content-length: - - '429' + - '134' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:25:54 GMT + - Thu, 15 Oct 2020 08:37: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;1184,Microsoft.Compute/GetOperationStatus30Min;4024 status: code: 200 message: OK @@ -4877,123 +4765,100 @@ interactions: - 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: - - python/3.7.5 (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 + - 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://graph.windows.net/00000000-0000-0000-0000-000000000000/me?api-version=1.6 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/672533e5-d0bd-408a-8e8b-c4e5256ec28d?api-version=2019-12-01 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":"9ac02ab3-5061-4ec6-a3d8-2cdaa5f29efa","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[],"assignedPlans":[],"city":null,"companyName":null,"consentProvidedForMinor":null,"country":null,"createdDateTime":"2019-10-21T06:37:42Z","creationType":"Invitation","department":null,"dirSyncEnabled":null,"displayName":"Bin - Ma","employeeId":null,"facsimileTelephoneNumber":null,"givenName":null,"immutableId":null,"isCompromised":null,"jobTitle":null,"lastDirSyncTime":null,"legalAgeGroupClassification":null,"mail":"bim@microsoft.com","mailNickname":"bim_microsoft.com#EXT#","mobile":null,"onPremisesDistinguishedName":null,"onPremisesSecurityIdentifier":null,"otherMails":["bim@microsoft.com"],"passwordPolicies":null,"passwordProfile":null,"physicalDeliveryOfficeName":null,"postalCode":null,"preferredLanguage":null,"provisionedPlans":[],"provisioningErrors":[],"proxyAddresses":["SMTP:bim@microsoft.com"],"refreshTokensValidFromDateTime":"2019-10-21T06:37:41Z","showInAddressList":false,"signInNames":[],"sipProxyAddress":null,"state":null,"streetAddress":null,"surname":null,"telephoneNumber":null,"thumbnailPhoto@odata.mediaEditLink":"directoryObjects/9ac02ab3-5061-4ec6-a3d8-2cdaa5f29efa/Microsoft.DirectoryServices.User/thumbnailPhoto","usageLocation":null,"userIdentities":[],"userPrincipalName":"bim_microsoft.com#EXT#@AzureSDKTeam.onmicrosoft.com","userState":"Accepted","userStateChangedOn":"2019-10-21T06:39:35Z","userType":"Guest"}' + string: "{\r\n \"startTime\": \"2020-10-15T08:25:05.3928033+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"672533e5-d0bd-408a-8e8b-c4e5256ec28d\"\r\n}" headers: - access-control-allow-origin: - - '*' cache-control: - no-cache content-length: - - '1668' + - '134' content-type: - - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 - dataserviceversion: - - 3.0; + - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:25:54 GMT - duration: - - '2531103' + - Thu, 15 Oct 2020 08:37:45 GMT expires: - '-1' - ocp-aad-diagnostics-server-name: - - enkSqsGkHGLnN/ynAGWJuOrnQptSXTVZUBnKkvkDf8w= - ocp-aad-session-key: - - lPUIm_eiYjBXI84RvGfi31-vh8Q8dzllGlfuI9N1uX9F7L3qHA6luqGybgYDUM3yU8_0L-FxNCWtzqLN4gKjujYBywvHvfEAQtkGVwcgMyWFuOCJYsLWrvzHbtsXBaNn.fFDvYux7ffrSVXEd3U_CK1WRfk3Up08ce_6AUGUQiFM pragma: - no-cache - request-id: - - 3aff1d9f-9230-46a2-8b72-560cb70b65ae + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-ms-dirapi-data-contract-version: - - '1.6' - x-ms-resource-unit: - - '1' - x-powered-by: - - ASP.NET + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;4022 status: code: 200 message: OK - request: - body: '{"location": "eastus2", "properties": {"tenantId": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", - "sku": {"family": "A", "name": "standard"}, "accessPolicies": [{"tenantId": - "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", "objectId": "9ac02ab3-5061-4ec6-a3d8-2cdaa5f29efa", - "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"]}}], - "enableSoftDelete": true, "softDeleteRetentionInDays": 90, "enablePurgeProtection": - true, "networkAcls": {"bypass": "AzureServices", "defaultAction": "Allow", "ipRules": - [], "virtualNetworkRules": []}}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - keyvault create + - sig image-version update Connection: - keep-alive - Content-Length: - - '949' - Content-Type: - - application/json ParameterSetName: - - -g -n --enable-purge-protection --enable-soft-delete + - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions + --replica-count User-Agent: - - AZURECLI/2.11.1 azsdk-python-azure-mgmt-keyvault/7.0.0b3 Python/3.7.5 (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 + - 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/672533e5-d0bd-408a-8e8b-c4e5256ec28d?api-version=2019-12-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":"9ac02ab3-5061-4ec6-a3d8-2cdaa5f29efa","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: "{\r\n \"startTime\": \"2020-10-15T08:25:05.3928033+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"672533e5-d0bd-408a-8e8b-c4e5256ec28d\"\r\n}" headers: cache-control: - no-cache content-length: - - '1179' + - '134' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:26:04 GMT + - Thu, 15 Oct 2020 08:38:15 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-ms-keyvault-service-version: - - 1.1.55.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1184' - x-powered-by: - - ASP.NET + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4019 status: code: 200 message: OK @@ -5001,161 +4866,821 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - keyvault create + - sig image-version update Connection: - keep-alive ParameterSetName: - - -g -n --enable-purge-protection --enable-soft-delete + - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions + --replica-count User-Agent: - - AZURECLI/2.11.1 azsdk-python-azure-mgmt-keyvault/7.0.0b3 Python/3.7.5 (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-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/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003?api-version=2019-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/672533e5-d0bd-408a-8e8b-c4e5256ec28d?api-version=2019-12-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":"9ac02ab3-5061-4ec6-a3d8-2cdaa5f29efa","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: "{\r\n \"startTime\": \"2020-10-15T08:25:05.3928033+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"672533e5-d0bd-408a-8e8b-c4e5256ec28d\"\r\n}" headers: cache-control: - no-cache content-length: - - '1175' + - '134' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:26:34 GMT + - Thu, 15 Oct 2020 08:38:46 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-ms-keyvault-service-version: - - 1.1.55.0 - x-powered-by: - - ASP.NET + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4016 status: code: 200 message: OK - request: - body: '' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate + CommandName: + - sig image-version update Connection: - keep-alive - Content-Length: - - 0 - Content-Type: - - application/json; charset=utf-8 + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions + --replica-count User-Agent: - - python/3.7.5 (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 - method: POST - uri: https://vault-000003.vault.azure.net/keys/key-000004/create?api-version=7.0 + - 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/672533e5-d0bd-408a-8e8b-c4e5256ec28d?api-version=2019-12-01 response: body: - string: '{"error":{"code":"Unauthorized","message":"Request is missing a Bearer - or PoP token."}}' + string: "{\r\n \"startTime\": \"2020-10-15T08:25:05.3928033+00:00\",\r\n \"endTime\": + \"2020-10-15T08:38:51.2030511+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"672533e5-d0bd-408a-8e8b-c4e5256ec28d\"\r\n}" headers: cache-control: - no-cache content-length: - - '87' + - '184' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:26:37 GMT + - Thu, 15 Oct 2020 08:39:16 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - - max-age=31536000;includeSubDomains - www-authenticate: - - Bearer authorization="https://login.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", - resource="https://vault.azure.net" - x-aspnet-version: - - 4.0.30319 + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-keyvault-network-info: - - conn_type=Ipv4;addr=167.220.255.56;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - eastus2 - x-ms-keyvault-service-version: - - 1.1.60.0 + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;4014 + 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: + - 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/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 \"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\": \"2020-10-15T08:14:48.613043+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: + - '1474' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 08:39:16 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;9979 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - keyvault create + Connection: + - keep-alive + ParameterSetName: + - -g -n --enable-purge-protection --enable-soft-delete + 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 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '429' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 08:39:17 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 + Connection: + - keep-alive + 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 + accept-language: + - en-US + method: GET + 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":"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":"2020-10-12T01:57:23Z","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: + - '1567' + content-type: + - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 + dataserviceversion: + - 3.0; + date: + - Thu, 15 Oct 2020 08:39:18 GMT + duration: + - '2349956' + expires: + - '-1' + ocp-aad-diagnostics-server-name: + - +ZQCeST5sqkh8PfRlmTpQsH/+32BWqALmUNV8T7ZW80= + ocp-aad-session-key: + - hq4mNbtcWSvORcEMOvVd0YzS02vunEkSa6tu1Dck48U8t7I7iSOgeWDURprAr28kzWNZ14smMVG-x2Uqj2LV3qJDFibg1whu2sUczEXcKUfVaKzqs4iM89dT8yQWqa9k.nGe-xSpKvy4DEyzTvjTBgmgaVuccGo7LmdY5e0ZJ95k + pragma: + - no-cache + request-id: + - c765650b-bc07-49cc-9bf5-46187b3e267a + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-ms-dirapi-data-contract-version: + - '1.6' + x-ms-resource-unit: + - '1' x-powered-by: - ASP.NET status: - code: 401 - message: Unauthorized + code: 200 + message: OK - request: - body: '{"kty": "RSA", "attributes": {"enabled": true}}' + body: '{"location": "eastus2", "properties": {"tenantId": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", + "sku": {"family": "A", "name": "standard"}, "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"]}}], + "enableSoftDelete": true, "softDeleteRetentionInDays": 90, "enablePurgeProtection": + true, "networkAcls": {"bypass": "AzureServices", "defaultAction": "Allow", "ipRules": + [], "virtualNetworkRules": []}}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate + CommandName: + - keyvault create Connection: - keep-alive Content-Length: - - '47' + - '949' Content-Type: - - application/json; charset=utf-8 + - application/json + ParameterSetName: + - -g -n --enable-purge-protection --enable-soft-delete User-Agent: - - python/3.7.5 (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 - method: POST - uri: https://vault-000003.vault.azure.net/keys/key-000004/create?api-version=7.0 + - AZURECLI/2.13.0 azsdk-python-azure-mgmt-keyvault/7.0.0b3 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: '{"key":{"kid":"https://vault-000003.vault.azure.net/keys/key-000004/79720cc05e1b43188f0222853ea56200","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"qQEsuehZ2tZeIXdfvE4DycknQDhAmByTLfDcUpE7O3BOTTCOmu7vFxuYEeHatfR8VQLwUpidOob6LferLMvJjLy2bBS7ex1m2-hgJfMeX6psIEaSvmggYW6husMFvTd2dTYgNVCNo0PwDYoFJ2QNty3lwxqyzDfVpCATo8i9-BI6nQxsvICB_Yj2gZjQbSCBz8q7gQeuTY3DBjxgb9kqJQ0mwenhmZDtJjItf1kbrRojXR99s2JQt118qUbW6A0xM1yyxFPk84SjETK7_8H6fPeBn8AaTHm54Ki22OW6wPD7NnKSsVjqmjXk__fOtalrsG0WOtbessswC_6LOKLeQw","e":"AQAB"},"attributes":{"enabled":true,"created":1599909999,"updated":1599909999,"recoveryLevel":"Recoverable"}}' + 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 content-length: - - '665' + - '1179' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:26:39 GMT + - Thu, 15 Oct 2020 08:39:30 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - - max-age=31536000;includeSubDomains + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-aspnet-version: - 4.0.30319 x-content-type-options: - nosniff - x-ms-keyvault-network-info: - - conn_type=Ipv4;addr=167.220.255.56;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - eastus2 - x-ms-keyvault-service-version: - - 1.1.60.0 - x-powered-by: - - ASP.NET + x-ms-keyvault-service-version: + - 1.1.98.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1193' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - keyvault create + Connection: + - keep-alive + ParameterSetName: + - -g -n --enable-purge-protection --enable-soft-delete + User-Agent: + - AZURECLI/2.13.0 azsdk-python-azure-mgmt-keyvault/7.0.0b3 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":"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 + content-length: + - '1175' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 08:40:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-service-version: + - 1.1.98.0 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - 0 + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - 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 + method: POST + uri: https://vault-000003.vault.azure.net/keys/key-000004/create?api-version=7.0 + response: + body: + string: '{"error":{"code":"Unauthorized","message":"Request is missing a Bearer + or PoP token."}}' + headers: + cache-control: + - no-cache + content-length: + - '87' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 08:40:03 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000;includeSubDomains + www-authenticate: + - 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=167.220.255.61;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - eastus2 + x-ms-keyvault-service-version: + - 1.2.41.0 + x-powered-by: + - ASP.NET + status: + code: 401 + message: Unauthorized +- request: + body: '{"kty": "RSA", "attributes": {"enabled": true}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '47' + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - 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 + method: POST + 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/4780252710a84d96a92ec084ea2e9eb8","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"8C1oTsUUHpDuaE0iC7HYZVjJ9XqSyDGCBLqBXI3N5DKCbKBtc6p84zbQwBJwAk2-U2IQf6fexbZ56PrteKrueI_RSa8gVAc9fnUECUEIRW20aEBdJ64w4n6XPM17B01mrWMp1At5sV69IuXa4GWlGGhbAg2g4l7aCWzNgmrKgUVx-wVf4He5OVpyb8rX9MW3y7RlnX4Xhey73Mdh5zb22LQIV_aZrbOG1dELQgtAgFv4PRRfW9uWGomMuUL_2Q2oruanywXYzHa43ZXdHkwB2Xn5v1GB5PohXNId7kcRc8EL4TCKCqvxshNeH5yzmS93RrK2F5soSj0hCO_i3uaWDQ","e":"AQAB"},"attributes":{"enabled":true,"created":1602751204,"updated":1602751204,"recoveryLevel":"Recoverable"}}' + headers: + cache-control: + - no-cache + content-length: + - '665' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 08:40:04 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000;includeSubDomains + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - conn_type=Ipv4;addr=167.220.255.61;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - eastus2 + x-ms-keyvault-service-version: + - 1.2.41.0 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - disk-encryption-set create + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-url --source-vault + 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 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '429' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 08:40:04 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": "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/4780252710a84d96a92ec084ea2e9eb8"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - disk-encryption-set create + Connection: + - keep-alive + Content-Length: + - '437' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --key-url --source-vault + 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 + 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: + 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/4780252710a84d96a92ec084ea2e9eb8\"\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/a4712369-bf25-47b0-a47b-20e9bac401df?api-version=2020-06-30 + cache-control: + - no-cache + content-length: + - '546' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 08:40:19 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/a4712369-bf25-47b0-a47b-20e9bac401df?monitor=true&api-version=2020-06-30 + 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/HighCostDiskEncryptionSet3Min;99,Microsoft.Compute/HighCostDiskEncryptionSet30Min;299 + x-ms-ratelimit-remaining-subscription-writes: + - '1196' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - disk-encryption-set create + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-url --source-vault + 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/DiskOperations/a4712369-bf25-47b0-a47b-20e9bac401df?api-version=2020-06-30 + response: + body: + string: "{\r\n \"startTime\": \"2020-10-15T08:40:19.4318338+00:00\",\r\n \"endTime\": + \"2020-10-15T08:40:19.6662105+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\":\"02498c96-63af-4be3-b53a-487587fc94fc\",\"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/4780252710a84d96a92ec084ea2e9eb8\"},\"encryptionType\":\"EncryptionAtRestWithCustomerKey\",\"provisioningState\":\"Succeeded\"}}\r\n + \ },\r\n \"name\": \"a4712369-bf25-47b0-a47b-20e9bac401df\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1131' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 08:40:50 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;49998,Microsoft.Compute/GetOperation30Min;399924 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - disk-encryption-set create + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-url --source-vault + 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/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005?api-version=2020-06-30 + 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\": + \"02498c96-63af-4be3-b53a-487587fc94fc\",\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/4780252710a84d96a92ec084ea2e9eb8\"\r\n + \ },\r\n \"encryptionType\": \"EncryptionAtRestWithCustomerKey\",\r\n + \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1031' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 08:40:50 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;4997,Microsoft.Compute/LowCostGet30Min;39974 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - disk-encryption-set show + Connection: + - keep-alive + 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-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + 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: + 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\": + \"02498c96-63af-4be3-b53a-487587fc94fc\",\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/4780252710a84d96a92ec084ea2e9eb8\"\r\n + \ },\r\n \"encryptionType\": \"EncryptionAtRestWithCustomerKey\",\r\n + \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1031' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 08:40: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/LowCostGet3Min;4996,Microsoft.Compute/LowCostGet30Min;39973 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - keyvault set-policy + Connection: + - keep-alive + ParameterSetName: + - -n --object-id --key-permissions + User-Agent: + - AZURECLI/2.13.0 azsdk-python-azure-mgmt-keyvault/7.0.0b3 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-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/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/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/zuh/providers/Microsoft.KeyVault/vaults/zuhvault","name":"zuhvault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}}]}' + headers: + cache-control: + - no-cache + content-length: + - '3000' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 08:40:51 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 @@ -5167,107 +5692,120 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - disk-encryption-set create + - keyvault set-policy Connection: - keep-alive ParameterSetName: - - -g -n --key-url --source-vault + - -n --object-id --key-permissions User-Agent: - - python/3.7.5 (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.11.1 - accept-language: - - en-US + - AZURECLI/2.13.0 azsdk-python-azure-mgmt-keyvault/7.0.0b3 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-06-01 + 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","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2020-09-12T10:57:28Z"},"properties":{"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 content-length: - - '429' + - '1175' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:26:39 GMT + - Thu, 15 Oct 2020 08:40:53 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding + x-aspnet-version: + - 4.0.30319 x-content-type-options: - nosniff + x-ms-keyvault-service-version: + - 1.1.98.0 + x-powered-by: + - ASP.NET status: code: 200 message: OK - 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/79720cc05e1b43188f0222853ea56200"}}}' + body: '{"location": "eastus2", "tags": {}, "properties": {"tenantId": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", + "sku": {"family": "A", "name": "standard"}, "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": "02498c96-63af-4be3-b53a-487587fc94fc", + "permissions": {"keys": ["get", "unwrapKey", "wrapKey"]}}], "vaultUri": "https://vault-000003.vault.azure.net/", + "enabledForDeployment": false, "enableSoftDelete": true, "softDeleteRetentionInDays": + 90, "enablePurgeProtection": true}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - disk-encryption-set create + - keyvault set-policy Connection: - keep-alive Content-Length: - - '437' + - '1105' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - - -g -n --key-url --source-vault + - -n --object-id --key-permissions User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 - accept-language: - - en-US + - AZURECLI/2.13.0 azsdk-python-azure-mgmt-keyvault/7.0.0b3 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.KeyVault/vaults/vault-000003?api-version=2019-09-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/79720cc05e1b43188f0222853ea56200\"\r\n - \ },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}" + 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":"02498c96-63af-4be3-b53a-487587fc94fc","permissions":{"keys":["get","unwrapKey","wrapKey"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://vault-000003.vault.azure.net/","provisioningState":"Succeeded"}}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/39e538b7-17ed-40e8-a11a-455f8d4110cf?api-version=2020-06-30 cache-control: - no-cache content-length: - - '546' + - '1330' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:26:50 GMT + - Thu, 15 Oct 2020 08:40:54 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/39e538b7-17ed-40e8-a11a-455f8d4110cf?monitor=true&api-version=2020-06-30 pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 x-content-type-options: - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostDiskEncryptionSet3Min;99,Microsoft.Compute/HighCostDiskEncryptionSet30Min;299 + x-ms-keyvault-service-version: + - 1.1.98.0 x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1197' + x-powered-by: + - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -5276,38 +5814,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - disk-encryption-set create + - role assignment create Connection: - keep-alive ParameterSetName: - - -g -n --key-url --source-vault + - --assignee --role --scope User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/39e538b7-17ed-40e8-a11a-455f8d4110cf?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Reader%27&api-version=2018-01-01-preview response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:26:50.799961+00:00\",\r\n \"endTime\": - \"2020-09-12T11:26:50.8780665+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\":\"6c3bdc47-1d92-4257-9e17-3f41ede34dae\",\"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/79720cc05e1b43188f0222853ea56200\"},\"encryptionType\":\"EncryptionAtRestWithCustomerKey\",\"provisioningState\":\"Succeeded\"}}\r\n - \ },\r\n \"name\": \"39e538b7-17ed-40e8-a11a-455f8d4110cf\"\r\n}" + string: '{"value":[{"properties":{"roleName":"Reader","type":"BuiltInRole","description":"View + all resources, but does not allow you to make any changes.","assignableScopes":["/"],"permissions":[{"actions":["*/read"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-02-02T21:55:09.8806423Z","updatedOn":"2020-08-14T20:16:04.3791205Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","type":"Microsoft.Authorization/roleDefinitions","name":"acdd72a7-3385-48ef-bd42-f606fba81ae7"}]}' headers: cache-control: - no-cache content-length: - - '1130' + - '627' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:27:20 GMT + - Thu, 15 Oct 2020 08:41:11 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5316,8 +5853,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49998,Microsoft.Compute/GetOperation30Min;399948 status: code: 200 message: OK @@ -5329,158 +5864,179 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - disk-encryption-set create + - role assignment create Connection: - keep-alive ParameterSetName: - - -g -n --key-url --source-vault + - --assignee --role --scope User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 + accept-language: + - en-US 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://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%2702498c96-63af-4be3-b53a-487587fc94fc%27%29&api-version=1.6 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\": - \"6c3bdc47-1d92-4257-9e17-3f41ede34dae\",\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/79720cc05e1b43188f0222853ea56200\"\r\n - \ },\r\n \"encryptionType\": \"EncryptionAtRestWithCustomerKey\",\r\n - \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[]}' headers: + access-control-allow-origin: + - '*' cache-control: - no-cache content-length: - - '1031' + - '121' content-type: - - application/json; charset=utf-8 + - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 + dataserviceversion: + - 3.0; date: - - Sat, 12 Sep 2020 11:27:21 GMT + - Thu, 15 Oct 2020 08:41:11 GMT + duration: + - '2254756' expires: - '-1' + ocp-aad-diagnostics-server-name: + - HnZc02pZPmGEYnT6EAmkz9tuqpz3FgRLvAUmDEOCB1I= + ocp-aad-session-key: + - dzr11THdXfKJfHV3QlfXQIkzK5-wzKsg_fGQ26RbRgadneg_pWzNJbcWGWNzDvvQyA6zTYT7lzBOKJJqyvdOFtCsG1h-cobMikzcPURCmopPdaiIbqaOLHt6fVSfggtL.5vmDYY68MzniyQ-tPqO_wOV03-wrsBe2ec2u14il85o pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + request-id: + - cb7f9805-324e-4b5b-b98d-11788e4142d7 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;4997,Microsoft.Compute/LowCostGet30Min;39991 + x-aspnet-version: + - 4.0.30319 + x-ms-dirapi-data-contract-version: + - '1.6' + x-ms-resource-unit: + - '1' + x-powered-by: + - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"objectIds": ["02498c96-63af-4be3-b53a-487587fc94fc"], "includeDirectoryObjectReferences": + true}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - disk-encryption-set show + - role assignment create Connection: - keep-alive + Content-Length: + - '97' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -n + - --assignee --role --scope User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 accept-language: - en-US - 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 + method: POST + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/getObjectsByObjectIds?api-version=1.6 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\": - \"6c3bdc47-1d92-4257-9e17-3f41ede34dae\",\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/79720cc05e1b43188f0222853ea56200\"\r\n - \ },\r\n \"encryptionType\": \"EncryptionAtRestWithCustomerKey\",\r\n - \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"02498c96-63af-4be3-b53a-487587fc94fc","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":"2ecca2d5-7c0c-43d2-8a72-fb9de788a13d","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"des1-000005","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"2EECDA771A87154188BAAF9FCD6FD0702A7C45CC","endDate":"2021-01-13T08:35:00Z","keyId":"a8be61c1-b126-4862-92e8-bd6a9eaeebb1","startDate":"2020-10-15T08:35: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":["2ecca2d5-7c0c-43d2-8a72-fb9de788a13d","https://identity.azure.net/V51HRz6HO19k1it6u0Tglb/qvec5Ittp15TvqjuDybg="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null}]}' headers: + access-control-allow-origin: + - '*' cache-control: - no-cache content-length: - - '1031' + - '1645' content-type: - - application/json; charset=utf-8 + - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 + dataserviceversion: + - 3.0; date: - - Sat, 12 Sep 2020 11:27:22 GMT + - Thu, 15 Oct 2020 08:41:12 GMT + duration: + - '2360587' expires: - '-1' + ocp-aad-diagnostics-server-name: + - HYZ3kkTrBJhR5d/BC2iTMlzzEpIXxvJ2XRuwkbaPiz0= + ocp-aad-session-key: + - co6p6HQd9yumlfUVfePRFl_bFT6gu2ewDeUn_1fQJUIukNwC-q31mJi9EI0O9q4xPGqp8EPFzG62T2MVCoo_Drp4laXNO3DMS5lYNfgLeB2ZnbTE61ugBXJUBUAqAmS1.7z7-J9Ke9XYZpf7-FbhwVeRfgQKVo67UxM8xLA5dupA pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + request-id: + - 7b6d2e5f-18ee-4edd-9fab-e31952a9bd24 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;4996,Microsoft.Compute/LowCostGet30Min;39990 + x-aspnet-version: + - 4.0.30319 + x-ms-dirapi-data-contract-version: + - '1.6' + x-ms-resource-unit: + - '3' + x-powered-by: + - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7", + "principalId": "02498c96-63af-4be3-b53a-487587fc94fc"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - keyvault set-policy + - role assignment create Connection: - keep-alive + Content-Length: + - '233' + Content-Type: + - application/json; charset=utf-8 + Cookie: + - x-ms-gateway-slice=Production ParameterSetName: - - -n --object-id --key-permissions + - --assignee --role --scope User-Agent: - - AZURECLI/2.11.1 azsdk-python-azure-mgmt-keyvault/7.0.0b3 Python/3.7.5 (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 + - 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.13.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: '{"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-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/bimkvtest20200513","name":"bimkvtest20200513","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimtestsd1","name":"bimtestsd1","type":"Microsoft.KeyVault/vaults","location":"westus2","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/feng-cli-rg/providers/Microsoft.KeyVault/vaults/fengkv","name":"fengkv","type":"Microsoft.KeyVault/vaults","location":"eastus","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/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv0227","name":"jlkv0227","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv0309","name":"jlkv0309","type":"Microsoft.KeyVault/vaults","location":"southeastasia","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/zhoxing-test/providers/Microsoft.KeyVault/vaults/zhoxingtest9393","name":"zhoxingtest9393","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"6e279161-d008-42b7-90a1-6801fc4bc4ca","CreatedBy":"DevTestLabs"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.KeyVault/vaults/zhoxingtest9ac53638","name":"zhoxingtest9ac53638","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"6e279161-d008-42b7-90a1-6801fc4bc4ca","CreatedBy":"DevTestLabs"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.KeyVault/vaults/zuhvault","name":"zuhvault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}}]}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"02498c96-63af-4be3-b53a-487587fc94fc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003","condition":null,"conditionVersion":null,"createdOn":"2020-10-15T08:41:13.0348590Z","updatedOn":"2020-10-15T08:41:13.0348590Z","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 content-length: - - '4522' + - '1119' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:27:22 GMT + - Thu, 15 Oct 2020 08:41:18 GMT expires: - '-1' pragma: - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -5489,120 +6045,119 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - keyvault set-policy + - sig image-version create Connection: - keep-alive ParameterSetName: - - -n --object-id --key-permissions + - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions + --target-region-encryption --managed-image --replica-count User-Agent: - - AZURECLI/2.11.1 azsdk-python-azure-mgmt-keyvault/7.0.0b3 Python/3.7.5 (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/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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":"9ac02ab3-5061-4ec6-a3d8-2cdaa5f29efa","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","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '1175' + - '429' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:27:24 GMT + - Thu, 15 Oct 2020 08:41:33 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-service-version: - - 1.1.55.0 - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus2", "tags": {}, "properties": {"tenantId": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", - "sku": {"family": "A", "name": "standard"}, "accessPolicies": [{"tenantId": - "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", "objectId": "9ac02ab3-5061-4ec6-a3d8-2cdaa5f29efa", - "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": "6c3bdc47-1d92-4257-9e17-3f41ede34dae", - "permissions": {"keys": ["unwrapKey", "get", "wrapKey"]}}], "vaultUri": "https://vault-000003.vault.azure.net/", - "enabledForDeployment": false, "enableSoftDelete": true, "softDeleteRetentionInDays": - 90, "enablePurgeProtection": true}}' + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "eastus2", "tags": {}, "properties": {"publishingProfile": + {"targetRegions": [{"name": "eastus2", "regionalReplicaCount": 1, "encryption": + {"osDiskImage": {"diskEncryptionSetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005"}, + "dataDiskImages": [{"diskEncryptionSetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005", + "lun": 0}]}}], "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: - - keyvault set-policy + - sig image-version create Connection: - keep-alive Content-Length: - - '1105' + - '932' Content-Type: - - application/json + - application/json; charset=utf-8 ParameterSetName: - - -n --object-id --key-permissions + - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions + --target-region-encryption --managed-image --replica-count User-Agent: - - AZURECLI/2.11.1 azsdk-python-azure-mgmt-keyvault/7.0.0b3 Python/3.7.5 (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-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.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?api-version=2019-09-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=2019-12-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":"9ac02ab3-5061-4ec6-a3d8-2cdaa5f29efa","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":"6c3bdc47-1d92-4257-9e17-3f41ede34dae","permissions":{"keys":["unwrapKey","get","wrapKey"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://vault-000003.vault.azure.net/","provisioningState":"Succeeded"}}' + 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-10-15T08:41:41.5619586+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/b93dd737-8755-43f7-b67d-4800caa02950?api-version=2019-12-01 cache-control: - no-cache content-length: - - '1330' + - '1775' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:27:25 GMT + - Thu, 15 Oct 2020 08:41:43 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-ms-keyvault-service-version: - - 1.1.55.0 + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1198 x-ms-ratelimit-remaining-subscription-writes: - - '1192' - x-powered-by: - - ASP.NET + - '1197' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -5611,37 +6166,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - role assignment create + - sig image-version create Connection: - keep-alive ParameterSetName: - - --assignee --role --scope + - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions + --target-region-encryption --managed-image --replica-count User-Agent: - - python/3.7.5 (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.11.1 - accept-language: - - en-US + - 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/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Reader%27&api-version=2018-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/b93dd737-8755-43f7-b67d-4800caa02950?api-version=2019-12-01 response: body: - string: '{"value":[{"properties":{"roleName":"Reader","type":"BuiltInRole","description":"View - all resources, but does not allow you to make any changes.","assignableScopes":["/"],"permissions":[{"actions":["*/read"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-02-02T21:55:09.8806423Z","updatedOn":"2020-08-14T20:16:04.3791205Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","type":"Microsoft.Authorization/roleDefinitions","name":"acdd72a7-3385-48ef-bd42-f606fba81ae7"}]}' + string: "{\r\n \"startTime\": \"2020-10-15T08:41:41.5463322+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"b93dd737-8755-43f7-b67d-4800caa02950\"\r\n}" headers: cache-control: - no-cache content-length: - - '627' + - '134' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:27:41 GMT + - Thu, 15 Oct 2020 08:42:13 GMT expires: - '-1' pragma: - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5650,6 +6205,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4033 status: code: 200 message: OK @@ -5661,179 +6218,154 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - role assignment create + - sig image-version create Connection: - keep-alive ParameterSetName: - - --assignee --role --scope + - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions + --target-region-encryption --managed-image --replica-count User-Agent: - - python/3.7.5 (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.11.1 - accept-language: - - en-US + - 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://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%276c3bdc47-1d92-4257-9e17-3f41ede34dae%27%29&api-version=1.6 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/b93dd737-8755-43f7-b67d-4800caa02950?api-version=2019-12-01 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[]}' + string: "{\r\n \"startTime\": \"2020-10-15T08:41:41.5463322+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"b93dd737-8755-43f7-b67d-4800caa02950\"\r\n}" headers: - access-control-allow-origin: - - '*' cache-control: - no-cache content-length: - - '121' + - '134' content-type: - - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 - dataserviceversion: - - 3.0; + - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:27:42 GMT - duration: - - '2330429' + - Thu, 15 Oct 2020 08:42:43 GMT expires: - '-1' - ocp-aad-diagnostics-server-name: - - ON3EEhW/20kp2jdRuzcrIB6ISFqSfwR4xZWK1GBfKTM= - ocp-aad-session-key: - - Qii5Cmx0A_ytaPACmdEf22dI1jLA_ZxqPRGoIppJEooHtO6zvqVg_yAn-G9LFvgQ9lrYq7c77UwIas4c9LH15FgOw3EDLa3hKtt8lUxwC9Px6Zj-2abeiZkQEaQccXnK.i6aNAXGkPE8FKksM2wVldAxIQ5-176DFFI8Tha2IIjI pragma: - no-cache - request-id: - - d5a6c417-ed93-40d9-a90f-5e9a2a9b310c + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-ms-dirapi-data-contract-version: - - '1.6' - x-ms-resource-unit: - - '1' - x-powered-by: - - ASP.NET + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4030 status: code: 200 message: OK - request: - body: '{"objectIds": ["6c3bdc47-1d92-4257-9e17-3f41ede34dae"], "includeDirectoryObjectReferences": - true}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - role assignment create + - sig image-version create Connection: - keep-alive - Content-Length: - - '97' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - --assignee --role --scope + - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions + --target-region-encryption --managed-image --replica-count User-Agent: - - python/3.7.5 (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.11.1 - accept-language: - - en-US - method: POST - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/getObjectsByObjectIds?api-version=1.6 + - 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/b93dd737-8755-43f7-b67d-4800caa02950?api-version=2019-12-01 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":"6c3bdc47-1d92-4257-9e17-3f41ede34dae","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":"3fbccb2b-e274-4e4e-aa4d-9b3edd9dad29","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"des1-000005","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"9F67D82E49E94579685EBD3AAD517A61D722ED56","endDate":"2020-12-11T11:21:00Z","keyId":"52351c5f-6c02-403b-8800-8e2e5e051f1c","startDate":"2020-09-12T11:21: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":["3fbccb2b-e274-4e4e-aa4d-9b3edd9dad29","https://identity.azure.net/Bir8UsYeMdhuduBjcTJyKfsmPsPe7dXi+yVgnmjbOL0="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null}]}' + string: "{\r\n \"startTime\": \"2020-10-15T08:41:41.5463322+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"b93dd737-8755-43f7-b67d-4800caa02950\"\r\n}" headers: - access-control-allow-origin: - - '*' cache-control: - no-cache content-length: - - '1645' + - '134' content-type: - - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 - dataserviceversion: - - 3.0; + - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:27:42 GMT - duration: - - '2484679' + - Thu, 15 Oct 2020 08:43:13 GMT expires: - '-1' - ocp-aad-diagnostics-server-name: - - JOtrTlDwJ3XhowMQ01cWC2MJeQiNS/vGFxe78FD3Z6s= - ocp-aad-session-key: - - lTUI7IZ2mKTkb1Ylqr5zseNQlIXu132m6k_Q4OqllKhlV8INpSpHrqTCkxmU3G0nXKcBRZcQKY2dviqTFXkv4ldV1Mtk3TR5z6qtiIYe3kPHV20giF_HpIaVJnGxh4qE.gM3aeFSuAGYXMDkvTbPMf8dQE_2D3PAzOU8jKRgZCqA pragma: - no-cache - request-id: - - 2e1d93fe-cd92-4c8c-8718-543c009ccb26 + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-ms-dirapi-data-contract-version: - - '1.6' - x-ms-resource-unit: - - '3' - x-powered-by: - - ASP.NET + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4027 status: code: 200 message: OK - request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7", - "principalId": "6c3bdc47-1d92-4257-9e17-3f41ede34dae"}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - role assignment create + - sig image-version create Connection: - keep-alive - Content-Length: - - '233' - Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production ParameterSetName: - - --assignee --role --scope + - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions + --target-region-encryption --managed-image --replica-count User-Agent: - - python/3.7.5 (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.11.1 - 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 + - 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/b93dd737-8755-43f7-b67d-4800caa02950?api-version=2019-12-01 response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"6c3bdc47-1d92-4257-9e17-3f41ede34dae","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003","condition":null,"conditionVersion":null,"createdOn":"2020-09-12T11:27:43.0555442Z","updatedOn":"2020-09-12T11:27:43.0555442Z","createdBy":null,"updatedBy":"9ac02ab3-5061-4ec6-a3d8-2cdaa5f29efa","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: "{\r\n \"startTime\": \"2020-10-15T08:41:41.5463322+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"b93dd737-8755-43f7-b67d-4800caa02950\"\r\n}" headers: cache-control: - no-cache content-length: - - '1119' + - '134' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:27:48 GMT + - Thu, 15 Oct 2020 08:43:45 GMT expires: - '-1' pragma: - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + 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-subscription-writes: - - '1192' + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4024 status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -5849,43 +6381,45 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - python/3.7.5 (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.11.1 - accept-language: - - en-US + - 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/resourcegroups/clitest.rg000001?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/b93dd737-8755-43f7-b67d-4800caa02950?api-version=2019-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":"2020-09-12T10:57:28Z"},"properties":{"provisioningState":"Succeeded"}}' + string: "{\r\n \"startTime\": \"2020-10-15T08:41:41.5463322+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"b93dd737-8755-43f7-b67d-4800caa02950\"\r\n}" headers: cache-control: - no-cache content-length: - - '429' + - '134' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:28:04 GMT + - Thu, 15 Oct 2020 08:44: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;1186,Microsoft.Compute/GetOperationStatus30Min;4021 status: code: 200 message: OK - request: - body: '{"location": "eastus2", "tags": {}, "properties": {"publishingProfile": - {"targetRegions": [{"name": "eastus2", "regionalReplicaCount": 1, "encryption": - {"osDiskImage": {"diskEncryptionSetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005"}, - "dataDiskImages": [{"diskEncryptionSetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005", - "lun": 0}]}}], "replicaCount": 1}, "storageProfile": {"source": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1"}}}}' + body: null headers: Accept: - application/json @@ -5895,48 +6429,27 @@ interactions: - sig image-version create Connection: - keep-alive - Content-Length: - - '932' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 - accept-language: - - en-US - 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 + - 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/b93dd737-8755-43f7-b67d-4800caa02950?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-09-12T11:28:11.3219397+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 \"startTime\": \"2020-10-15T08:41:41.5463322+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"b93dd737-8755-43f7-b67d-4800caa02950\"\r\n}" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a790a38a-cc89-4112-9d1f-c06cd013e777?api-version=2019-12-01 cache-control: - no-cache content-length: - - '1775' + - '134' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:28:12 GMT + - Thu, 15 Oct 2020 08:44:45 GMT expires: - '-1' pragma: @@ -5946,15 +6459,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/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1197 - x-ms-ratelimit-remaining-subscription-writes: - - '1189' + - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4018 status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -5970,14 +6485,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/a790a38a-cc89-4112-9d1f-c06cd013e777?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/b93dd737-8755-43f7-b67d-4800caa02950?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:28:11.3063163+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"a790a38a-cc89-4112-9d1f-c06cd013e777\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:41:41.5463322+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"b93dd737-8755-43f7-b67d-4800caa02950\"\r\n}" headers: cache-control: - no-cache @@ -5986,7 +6501,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:28:43 GMT + - Thu, 15 Oct 2020 08:45:15 GMT expires: - '-1' pragma: @@ -6003,7 +6518,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;2278 + - Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4068 status: code: 200 message: OK @@ -6022,14 +6537,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/a790a38a-cc89-4112-9d1f-c06cd013e777?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/b93dd737-8755-43f7-b67d-4800caa02950?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:28:11.3063163+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"a790a38a-cc89-4112-9d1f-c06cd013e777\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:41:41.5463322+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"b93dd737-8755-43f7-b67d-4800caa02950\"\r\n}" headers: cache-control: - no-cache @@ -6038,7 +6553,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:29:13 GMT + - Thu, 15 Oct 2020 08:45:45 GMT expires: - '-1' pragma: @@ -6055,7 +6570,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;2275 + - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4066 status: code: 200 message: OK @@ -6074,14 +6589,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/a790a38a-cc89-4112-9d1f-c06cd013e777?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/b93dd737-8755-43f7-b67d-4800caa02950?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:28:11.3063163+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"a790a38a-cc89-4112-9d1f-c06cd013e777\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:41:41.5463322+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"b93dd737-8755-43f7-b67d-4800caa02950\"\r\n}" headers: cache-control: - no-cache @@ -6090,7 +6605,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:29:43 GMT + - Thu, 15 Oct 2020 08:46:16 GMT expires: - '-1' pragma: @@ -6107,7 +6622,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;2272 + - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4063 status: code: 200 message: OK @@ -6126,14 +6641,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/a790a38a-cc89-4112-9d1f-c06cd013e777?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/b93dd737-8755-43f7-b67d-4800caa02950?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:28:11.3063163+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"a790a38a-cc89-4112-9d1f-c06cd013e777\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:41:41.5463322+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"b93dd737-8755-43f7-b67d-4800caa02950\"\r\n}" headers: cache-control: - no-cache @@ -6142,7 +6657,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:30:15 GMT + - Thu, 15 Oct 2020 08:46:47 GMT expires: - '-1' pragma: @@ -6159,7 +6674,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;2277 + - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4060 status: code: 200 message: OK @@ -6178,14 +6693,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/a790a38a-cc89-4112-9d1f-c06cd013e777?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/b93dd737-8755-43f7-b67d-4800caa02950?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:28:11.3063163+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"a790a38a-cc89-4112-9d1f-c06cd013e777\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:41:41.5463322+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"b93dd737-8755-43f7-b67d-4800caa02950\"\r\n}" headers: cache-control: - no-cache @@ -6194,7 +6709,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:30:45 GMT + - Thu, 15 Oct 2020 08:47:18 GMT expires: - '-1' pragma: @@ -6211,7 +6726,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;2275 + - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4057 status: code: 200 message: OK @@ -6230,14 +6745,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/a790a38a-cc89-4112-9d1f-c06cd013e777?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/b93dd737-8755-43f7-b67d-4800caa02950?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:28:11.3063163+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"a790a38a-cc89-4112-9d1f-c06cd013e777\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:41:41.5463322+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"b93dd737-8755-43f7-b67d-4800caa02950\"\r\n}" headers: cache-control: - no-cache @@ -6246,7 +6761,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:31:15 GMT + - Thu, 15 Oct 2020 08:47:48 GMT expires: - '-1' pragma: @@ -6263,7 +6778,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;2272 + - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4054 status: code: 200 message: OK @@ -6282,14 +6797,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/a790a38a-cc89-4112-9d1f-c06cd013e777?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/b93dd737-8755-43f7-b67d-4800caa02950?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:28:11.3063163+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"a790a38a-cc89-4112-9d1f-c06cd013e777\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:41:41.5463322+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"b93dd737-8755-43f7-b67d-4800caa02950\"\r\n}" headers: cache-control: - no-cache @@ -6298,7 +6813,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:31:45 GMT + - Thu, 15 Oct 2020 08:48:18 GMT expires: - '-1' pragma: @@ -6315,7 +6830,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2269 + - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4052 status: code: 200 message: OK @@ -6334,14 +6849,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/a790a38a-cc89-4112-9d1f-c06cd013e777?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/b93dd737-8755-43f7-b67d-4800caa02950?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:28:11.3063163+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"a790a38a-cc89-4112-9d1f-c06cd013e777\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:41:41.5463322+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"b93dd737-8755-43f7-b67d-4800caa02950\"\r\n}" headers: cache-control: - no-cache @@ -6350,7 +6865,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:32:15 GMT + - Thu, 15 Oct 2020 08:48:48 GMT expires: - '-1' pragma: @@ -6367,7 +6882,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2266 + - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4049 status: code: 200 message: OK @@ -6386,14 +6901,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/a790a38a-cc89-4112-9d1f-c06cd013e777?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/b93dd737-8755-43f7-b67d-4800caa02950?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:28:11.3063163+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"a790a38a-cc89-4112-9d1f-c06cd013e777\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:41:41.5463322+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"b93dd737-8755-43f7-b67d-4800caa02950\"\r\n}" headers: cache-control: - no-cache @@ -6402,7 +6917,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:32:46 GMT + - Thu, 15 Oct 2020 08:49:18 GMT expires: - '-1' pragma: @@ -6419,7 +6934,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2263 + - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4046 status: code: 200 message: OK @@ -6438,14 +6953,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/a790a38a-cc89-4112-9d1f-c06cd013e777?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/b93dd737-8755-43f7-b67d-4800caa02950?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:28:11.3063163+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"a790a38a-cc89-4112-9d1f-c06cd013e777\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:41:41.5463322+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"b93dd737-8755-43f7-b67d-4800caa02950\"\r\n}" headers: cache-control: - no-cache @@ -6454,7 +6969,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:33:17 GMT + - Thu, 15 Oct 2020 08:49:50 GMT expires: - '-1' pragma: @@ -6471,7 +6986,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2261 + - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4043 status: code: 200 message: OK @@ -6490,14 +7005,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/a790a38a-cc89-4112-9d1f-c06cd013e777?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/b93dd737-8755-43f7-b67d-4800caa02950?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:28:11.3063163+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"a790a38a-cc89-4112-9d1f-c06cd013e777\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:41:41.5463322+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"b93dd737-8755-43f7-b67d-4800caa02950\"\r\n}" headers: cache-control: - no-cache @@ -6506,7 +7021,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:33:47 GMT + - Thu, 15 Oct 2020 08:50:20 GMT expires: - '-1' pragma: @@ -6523,7 +7038,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2258 + - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4075 status: code: 200 message: OK @@ -6542,14 +7057,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/a790a38a-cc89-4112-9d1f-c06cd013e777?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/b93dd737-8755-43f7-b67d-4800caa02950?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:28:11.3063163+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"a790a38a-cc89-4112-9d1f-c06cd013e777\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:41:41.5463322+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"b93dd737-8755-43f7-b67d-4800caa02950\"\r\n}" headers: cache-control: - no-cache @@ -6558,7 +7073,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:34:18 GMT + - Thu, 15 Oct 2020 08:50:50 GMT expires: - '-1' pragma: @@ -6575,7 +7090,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2255 + - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4073 status: code: 200 message: OK @@ -6594,14 +7109,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/a790a38a-cc89-4112-9d1f-c06cd013e777?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/b93dd737-8755-43f7-b67d-4800caa02950?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:28:11.3063163+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"a790a38a-cc89-4112-9d1f-c06cd013e777\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:41:41.5463322+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"b93dd737-8755-43f7-b67d-4800caa02950\"\r\n}" headers: cache-control: - no-cache @@ -6610,7 +7125,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:34:49 GMT + - Thu, 15 Oct 2020 08:51:20 GMT expires: - '-1' pragma: @@ -6627,7 +7142,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2252 + - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4070 status: code: 200 message: OK @@ -6646,14 +7161,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/a790a38a-cc89-4112-9d1f-c06cd013e777?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/b93dd737-8755-43f7-b67d-4800caa02950?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:28:11.3063163+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"a790a38a-cc89-4112-9d1f-c06cd013e777\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:41:41.5463322+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"b93dd737-8755-43f7-b67d-4800caa02950\"\r\n}" headers: cache-control: - no-cache @@ -6662,7 +7177,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:35:19 GMT + - Thu, 15 Oct 2020 08:51:51 GMT expires: - '-1' pragma: @@ -6679,7 +7194,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;2276 + - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4067 status: code: 200 message: OK @@ -6698,14 +7213,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/a790a38a-cc89-4112-9d1f-c06cd013e777?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/b93dd737-8755-43f7-b67d-4800caa02950?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:28:11.3063163+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"a790a38a-cc89-4112-9d1f-c06cd013e777\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:41:41.5463322+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"b93dd737-8755-43f7-b67d-4800caa02950\"\r\n}" headers: cache-control: - no-cache @@ -6714,7 +7229,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:35:49 GMT + - Thu, 15 Oct 2020 08:52:21 GMT expires: - '-1' pragma: @@ -6731,7 +7246,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2273 + - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4064 status: code: 200 message: OK @@ -6750,14 +7265,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/a790a38a-cc89-4112-9d1f-c06cd013e777?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/b93dd737-8755-43f7-b67d-4800caa02950?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:28:11.3063163+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"a790a38a-cc89-4112-9d1f-c06cd013e777\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:41:41.5463322+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"b93dd737-8755-43f7-b67d-4800caa02950\"\r\n}" headers: cache-control: - no-cache @@ -6766,7 +7281,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:36:19 GMT + - Thu, 15 Oct 2020 08:52:53 GMT expires: - '-1' pragma: @@ -6783,7 +7298,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2270 + - Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4061 status: code: 200 message: OK @@ -6802,15 +7317,15 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/a790a38a-cc89-4112-9d1f-c06cd013e777?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/b93dd737-8755-43f7-b67d-4800caa02950?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:28:11.3063163+00:00\",\r\n \"endTime\": - \"2020-09-12T11:36:41.7472671+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"a790a38a-cc89-4112-9d1f-c06cd013e777\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:41:41.5463322+00:00\",\r\n \"endTime\": + \"2020-10-15T08:53:12.1230186+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"b93dd737-8755-43f7-b67d-4800caa02950\"\r\n}" headers: cache-control: - no-cache @@ -6819,7 +7334,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:36:50 GMT + - Thu, 15 Oct 2020 08:53:23 GMT expires: - '-1' pragma: @@ -6836,7 +7351,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2267 + - Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4058 status: code: 200 message: OK @@ -6855,8 +7370,8 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3?api-version=2019-12-01 response: @@ -6872,7 +7387,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\": - \"2020-09-12T11:28:11.3219397+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n + \"2020-10-15T08:41:41.5619586+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\": @@ -6888,7 +7403,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:36:51 GMT + - Thu, 15 Oct 2020 08:53:23 GMT expires: - '-1' pragma: @@ -6905,7 +7420,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1995,Microsoft.Compute/GetGalleryImageVersion30Min;9982 + - Microsoft.Compute/GetGalleryImageVersion3Min;1998,Microsoft.Compute/GetGalleryImageVersion30Min;9984 status: code: 200 message: OK @@ -6923,15 +7438,15 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - - python/3.7.5 (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.11.1 + - 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 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-09-12T10:57:28Z"},"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":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -6940,7 +7455,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:36:51 GMT + - Thu, 15 Oct 2020 08:53:24 GMT expires: - '-1' pragma: @@ -6968,12 +7483,12 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 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=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?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 @@ -6991,7 +7506,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:36:52 GMT + - Thu, 15 Oct 2020 08:53:26 GMT expires: - '-1' pragma: @@ -7008,7 +7523,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;599,Microsoft.Compute/GetGalleryImage30Min;2998 + - Microsoft.Compute/GetGalleryImage3Min;599,Microsoft.Compute/GetGalleryImage30Min;2997 status: code: 200 message: OK @@ -7026,8 +7541,8 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 method: GET @@ -7036,17 +7551,17 @@ interactions: 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-09-12T11:03:26.3116105+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-09-12T11:28:11.3219397+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":"2020-10-15T08:14:48.613043+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-10-15T08:41:41.5619586+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: - - Sat, 12 Sep 2020 11:36:52 GMT + - Thu, 15 Oct 2020 08:53:27 GMT expires: - '-1' pragma: @@ -7058,41 +7573,41 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - d38812ce-1c99-4b8c-aa11-50db404383e6 - - 0a0e9c69-82d4-45d5-a590-3dd2daeae678 - - d5c9c45f-ff75-497b-958b-eea171b7dc3b - - 94f5e4a2-3289-4bf6-b1ca-32f3fa1bf7a5 - - 90bfa3e2-d528-4f2c-856d-6ce036d330cb - - 28d50559-7a89-44be-9369-e199cb9be165 - - 1e5e42bc-e043-42c1-9daf-686a7303da37 - - 12dc581f-a955-4404-a871-c3c4843f0d56 - - 9504260a-844c-42ad-9395-42196ebc9387 - - 48d2682c-4659-4516-986b-aef85015990c - - 4c10021f-c19d-4112-91b8-3072370fe1b1 - - bc5f72a6-1b4a-42ad-a442-6969f65bf83d - - b0c5b15a-d7c7-4998-9b5b-4b8b6158e478 - - bc981162-1751-455e-a3c2-085003c68eea - - a1922178-9faf-4ce0-8272-1e540e2442b2 - - 1337199f-4f36-4edf-97c3-51a4f7ce2c96 - - 777d0079-c6c8-4451-8350-f235441ed1d3 - - fd00f193-f24e-49b2-a719-b9cc19299346 - - 90e76d4d-fc5c-4445-9d77-3c8a6d757d98 - - 5eb80787-e544-43af-ad7a-72d292fe7ba9 - - 23a9f8df-2b2a-4e8f-bfe4-a04b5c4647c4 - - 14977988-779d-49c4-a03e-31cf8e42969c - - f92ac755-d85e-4b47-a203-3f0a9cbb5602 - - ff67ea5b-227c-4b48-bc47-2864b3d8f5fc - - 4f6acf55-1ccc-44c0-9330-368af91e3949 - - 03e94521-d5ef-4165-8365-76adf080f0e0 - - d551fd95-54a4-461a-8580-b641705a3dc4 - - 214dc66f-3302-4951-89e0-5748972c312d - - 7e6a6d28-d134-4def-a861-6caced631671 - - f1fdbcc8-dd80-4d22-954a-e9e2d9413878 - - ed0ad7d6-ca43-48d8-a49d-2ca17e454302 - - 25ab668a-4373-47d7-ae37-ae60de51551f - - 567f4ce8-aaa1-41e6-9c12-5506b6de9133 - - 2e7a6e18-285b-4cb4-a580-2bbf044b4de3 - - 07c1c49a-5a38-4ccb-bd2c-fed56875b501 + - 6e965ca3-cf51-4da8-820c-7cce57c9aab5 + - 2a9fe441-dfcc-4b99-bd38-3a81f31ceac4 + - eb6ed706-9e00-4e89-9775-a5b9bd9a28b8 + - e8ea7c5e-ed8d-4810-9535-052341818fd1 + - edcd8c54-7c55-461f-ac90-8ed65ef1d4f3 + - e78dfc24-0ab4-4395-b742-23f7700ed6a0 + - d257b72c-ae60-41c0-a49a-1d00c4b00eb4 + - 47389ee8-706a-445a-987d-adc786b3e83a + - d7f7379d-a39b-439d-832c-39839fab3aaf + - f1b7cadb-e2b4-4266-96c0-1e4b166b6d6b + - 4cff8d7c-2ad2-4d05-8a9b-014bd0b5ad4d + - 9af28996-91c5-47cf-a7ca-168a9a5403cc + - 0c1a5670-961d-434a-bc5e-d069838f7a18 + - b976810a-e848-480b-8669-a55a8fc2952f + - a5283170-3fce-45f4-8dcd-b8e4a791502e + - 2a587254-3e91-4a98-8b71-a6fddbdeed16 + - 2903c038-9217-4239-b645-74592115ef4d + - cf756946-33d5-4769-b50a-3c052525d668 + - a9b4aa17-58b3-4e20-a844-ee28a77b8fdc + - 6f39f57a-f670-4c46-b1cb-3990d4ee5909 + - 86af0083-62ed-4c93-bb05-a673eed105d1 + - 61d6855f-0e88-4104-80f8-4c60011f9b1a + - 5072b1f2-534b-4bc2-8d7a-1895a08fe1a0 + - 70356eca-0ea2-497b-938f-0379440e2b7a + - 5be072c9-8846-45fc-972f-30555d757bc4 + - 82a7406e-3194-47d4-8c0a-049c56cdfd1e + - f498248c-f5ab-41c3-b061-3901ca0202f4 + - 512de62e-65f4-443f-825b-9e95ef9d9db2 + - 481e09b3-6341-4c7f-bff2-0abffc098e95 + - dba994fd-0ebe-4cbf-877e-49339e721879 + - 6fc86a44-bcd4-4d55-8dc6-0de879573041 + - 55e825b3-403e-470c-bc74-55016ed3b2a7 + - c89adea7-0406-4263-a84f-341f67b3e6ec + - 7042ac38-c4f0-406b-a38d-bd95fd1ff5e8 + - 7d170973-61e1-43b0-b6a8-6d49578443ca status: code: 200 message: OK @@ -7110,8 +7625,8 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - - python/3.7.5 (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.11.1 + - 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.13.0 accept-language: - en-US method: GET @@ -7120,30 +7635,30 @@ 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/\\\"802c2733-9693-4b46-872c-da0259c19356\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"5b90b6ec-821b-4953-80a1-0badf4423594\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"e9e5f760-f076-420f-8d89-e899674986cd\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"978a11df-edf7-4179-bbca-7b269c0658f6\",\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/\\\"802c2733-9693-4b46-872c-da0259c19356\\\"\",\r\n + \ \"etag\": \"W/\\\"5b90b6ec-821b-4953-80a1-0badf4423594\\\"\",\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\": + \ }\r\n ],\r\n \"subnetID\": 0\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}" headers: cache-control: - no-cache content-length: - - '1751' + - '1781' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:36:52 GMT + - Thu, 15 Oct 2020 08:53:28 GMT expires: - '-1' pragma: @@ -7160,7 +7675,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f8e8d5ce-a406-4258-b32c-dde6ec5d2cd1 + - ea91d36f-55d4-4e74-bf3a-21d9c34a4ef3 status: code: 200 message: OK @@ -7189,8 +7704,8 @@ interactions: "dataDisks": [{"lun": 0, "managedDisk": {"storageAccountType": null}, "createOption": "fromImage"}]}, "osProfile": {"computerName": "vmFromImage", "adminUsername": "clitest1", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": - {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDfx4waEeymqn3yAwr8AUGcVBHKgSIivJTomn+dQRwcq2hDF8DErwzrzRQ4WhQLmKv6A4j/c7zAHARLSAlPMfMEhfh+zEZYAMAyOxst05ZfFFws3WiTjMo5Ahxh49qv5pAsYNDqQk/fB+cmD8VMxF06I/ab+rDJ9ISr59phRJBXB5CZGZkibZLZwFE6cYVcsuaU1xYAV9c2Dc8lbyTjmqM9RDnfqNxzkYsMmr0Pstqx93o/SD+trlRRPkamQDZNDOTox3S+P23F4J9OkXvcywgXLmus2cKpJVZqMpivZW7upotq5glqV/87Mj2z+8weHG1KVDiu0JiNm7NHXftfUsHV - fareast\\bim@DESKTOP-5KK2RC0\n", "path": "/home/clitest1/.ssh/authorized_keys"}]}}}}}], + {"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: @@ -7202,32 +7717,32 @@ interactions: Connection: - keep-alive Content-Length: - - '3401' + - '3392' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - - python/3.7.5 (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.11.1 + - 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 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-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_oCSDSusIcjpRRqz1ypVmpLt4g634K3Q6","name":"vm_deploy_oCSDSusIcjpRRqz1ypVmpLt4g634K3Q6","type":"Microsoft.Resources/deployments","properties":{"templateHash":"14887673747340426048","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-09-12T11:36:58.0514193Z","duration":"PT2.7214675S","correlationId":"41889652-66cc-461b-adfe-10f9d4381baa","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_HGgACuA92MUrS5HNo6Kbv03SXQFpJon2","name":"vm_deploy_HGgACuA92MUrS5HNo6Kbv03SXQFpJon2","type":"Microsoft.Resources/deployments","properties":{"templateHash":"166972534626355844","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-10-15T08:53:33.3151514Z","duration":"PT2.7770813S","correlationId":"c6c6ed17-0ec2-4fd9-a3c8-90d3eac22089","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_oCSDSusIcjpRRqz1ypVmpLt4g634K3Q6/operationStatuses/08586016962701476706?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_HGgACuA92MUrS5HNo6Kbv03SXQFpJon2/operationStatuses/08585988548749395572?api-version=2020-06-01 cache-control: - no-cache content-length: - - '2489' + - '2487' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:37:00 GMT + - Thu, 15 Oct 2020 08:53:34 GMT expires: - '-1' pragma: @@ -7255,10 +7770,10 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - - python/3.7.5 (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.11.1 + - 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 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586016962701476706?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585988548749395572?api-version=2020-06-01 response: body: string: '{"status":"Running"}' @@ -7270,7 +7785,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:37:30 GMT + - Thu, 15 Oct 2020 08:54:05 GMT expires: - '-1' pragma: @@ -7298,10 +7813,10 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - - python/3.7.5 (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.11.1 + - 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 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586016962701476706?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585988548749395572?api-version=2020-06-01 response: body: string: '{"status":"Running"}' @@ -7313,7 +7828,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:38:01 GMT + - Thu, 15 Oct 2020 08:54:35 GMT expires: - '-1' pragma: @@ -7341,10 +7856,10 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - - python/3.7.5 (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.11.1 + - 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 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586016962701476706?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585988548749395572?api-version=2020-06-01 response: body: string: '{"status":"Running"}' @@ -7356,7 +7871,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:38:31 GMT + - Thu, 15 Oct 2020 08:55:06 GMT expires: - '-1' pragma: @@ -7384,10 +7899,10 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - - python/3.7.5 (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.11.1 + - 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 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586016962701476706?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585988548749395572?api-version=2020-06-01 response: body: string: '{"status":"Running"}' @@ -7399,7 +7914,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:39:02 GMT + - Thu, 15 Oct 2020 08:55:37 GMT expires: - '-1' pragma: @@ -7427,10 +7942,10 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - - python/3.7.5 (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.11.1 + - 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 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586016962701476706?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585988548749395572?api-version=2020-06-01 response: body: string: '{"status":"Succeeded"}' @@ -7442,7 +7957,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:39:33 GMT + - Thu, 15 Oct 2020 08:56:08 GMT expires: - '-1' pragma: @@ -7470,22 +7985,22 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - - python/3.7.5 (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.11.1 + - 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 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-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_oCSDSusIcjpRRqz1ypVmpLt4g634K3Q6","name":"vm_deploy_oCSDSusIcjpRRqz1ypVmpLt4g634K3Q6","type":"Microsoft.Resources/deployments","properties":{"templateHash":"14887673747340426048","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-09-12T11:39:11.8451501Z","duration":"PT2M16.5151983S","correlationId":"41889652-66cc-461b-adfe-10f9d4381baa","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_HGgACuA92MUrS5HNo6Kbv03SXQFpJon2","name":"vm_deploy_HGgACuA92MUrS5HNo6Kbv03SXQFpJon2","type":"Microsoft.Resources/deployments","properties":{"templateHash":"166972534626355844","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-10-15T08:55:52.6614865Z","duration":"PT2M22.1234164S","correlationId":"c6c6ed17-0ec2-4fd9-a3c8-90d3eac22089","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, 12 Sep 2020 11:39:33 GMT + - Thu, 15 Oct 2020 08:56:08 GMT expires: - '-1' pragma: @@ -7513,8 +8028,8 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 method: GET @@ -7523,56 +8038,56 @@ 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\": \"7dc45d9b-4ec7-4fbf-abb6-7890b9e5bc23\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"13bb71ab-6c61-4c11-929d-76be7f625c51\",\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_644474adb5364c8c8a3d4cdb14c94615\",\r\n + \ \"osType\": \"Linux\",\r\n \"name\": \"vmFromImage_OsDisk_1_ceeb98196a17404ca302fb362ce2ebda\",\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.RGXCIFXV4L6BFY3ZCNJKML4MAY4UZCIFF77UCCATWATWYVDDQ3DXWBBW2SBCXANJQP2/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_644474adb5364c8c8a3d4cdb14c94615\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_ceeb98196a17404ca302fb362ce2ebda\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": - [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vmFromImage_lun_0_2_8e90612750a4475b8ce57287857789ff\",\r\n + [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vmFromImage_lun_0_2_27167b7898c048dda6bc3215803de315\",\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.RGXCIFXV4L6BFY3ZCNJKML4MAY4UZCIFF77UCCATWATWYVDDQ3DXWBBW2SBCXANJQP2/providers/Microsoft.Compute/disks/vmFromImage_lun_0_2_8e90612750a4475b8ce57287857789ff\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vmFromImage_lun_0_2_27167b7898c048dda6bc3215803de315\"\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 - AAAAB3NzaC1yc2EAAAADAQABAAABAQDfx4waEeymqn3yAwr8AUGcVBHKgSIivJTomn+dQRwcq2hDF8DErwzrzRQ4WhQLmKv6A4j/c7zAHARLSAlPMfMEhfh+zEZYAMAyOxst05ZfFFws3WiTjMo5Ahxh49qv5pAsYNDqQk/fB+cmD8VMxF06I/ab+rDJ9ISr59phRJBXB5CZGZkibZLZwFE6cYVcsuaU1xYAV9c2Dc8lbyTjmqM9RDnfqNxzkYsMmr0Pstqx93o/SD+trlRRPkamQDZNDOTox3S+P23F4J9OkXvcywgXLmus2cKpJVZqMpivZW7upotq5glqV/87Mj2z+8weHG1KVDiu0JiNm7NHXftfUsHV - fareast\\\\bim@DESKTOP-5KK2RC0\\n\"\r\n }\r\n ]\r\n },\r\n + 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.49.2\",\r\n + \"18.04\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.51\",\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-09-12T11:39:32+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vmFromImage_OsDisk_1_644474adb5364c8c8a3d4cdb14c94615\",\r\n + \"2020-10-15T08:56:07+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vmFromImage_OsDisk_1_ceeb98196a17404ca302fb362ce2ebda\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-09-12T11:37:23.2476451+00:00\"\r\n + succeeded\",\r\n \"time\": \"2020-10-15T08:54:26.500939+00:00\"\r\n \ }\r\n ]\r\n },\r\n {\r\n \"name\": - \"vmFromImage_lun_0_2_8e90612750a4475b8ce57287857789ff\",\r\n \"statuses\": + \"vmFromImage_lun_0_2_27167b7898c048dda6bc3215803de315\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-09-12T11:37:23.2476451+00:00\"\r\n + succeeded\",\r\n \"time\": \"2020-10-15T08:54:26.500939+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-09-12T11:39:08.8883518+00:00\"\r\n + succeeded\",\r\n \"time\": \"2020-10-15T08:55:49.7688515+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}" @@ -7580,11 +8095,11 @@ interactions: cache-control: - no-cache content-length: - - '5559' + - '5546' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:39:34 GMT + - Thu, 15 Oct 2020 08:56:09 GMT expires: - '-1' pragma: @@ -7601,7 +8116,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31992 + - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31994 status: code: 200 message: OK @@ -7619,8 +8134,8 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - - python/3.7.5 (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.11.1 + - 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.13.0 accept-language: - en-US method: GET @@ -7628,12 +8143,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/\\\"d00e29a0-b57b-426c-ae17-115bfe616bb5\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"7625ccd1-dd3e-4a8d-8b76-7193c53c8b74\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"10ce0f2a-996f-4108-8230-11671288c797\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"af3afed4-1a83-46c8-a5e7-b79e3518fc97\",\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/\\\"d00e29a0-b57b-426c-ae17-115bfe616bb5\\\"\",\r\n + \ \"etag\": \"W/\\\"7625ccd1-dd3e-4a8d-8b76-7193c53c8b74\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": @@ -7642,8 +8157,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\": - \"md14l0lw4ahufdmj3cmwosmgzf.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-E3-94-F5\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"12iyvf5x3v2udo4kpmtjybsy4g.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-0E-40-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\": @@ -7657,9 +8172,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:39:35 GMT + - Thu, 15 Oct 2020 08:56:10 GMT etag: - - W/"d00e29a0-b57b-426c-ae17-115bfe616bb5" + - W/"7625ccd1-dd3e-4a8d-8b76-7193c53c8b74" expires: - '-1' pragma: @@ -7676,7 +8191,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b7c0e9be-0119-4e8c-9241-bf4f265b5893 + - 8d6b13d4-0820-41ac-8b6a-3a9be220dcb6 status: code: 200 message: OK @@ -7694,8 +8209,8 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - - python/3.7.5 (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.11.1 + - 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.13.0 accept-language: - en-US method: GET @@ -7703,10 +8218,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/\\\"96de965a-7bb0-4ac6-a6ff-193c93ae1b68\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"83f56666-d9e0-48fd-aaea-c8533fc7af87\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"f6f554bc-3813-4330-84e7-f05f5d7b6557\",\r\n - \ \"ipAddress\": \"40.75.15.123\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"1ce448ab-bb16-4c28-9b34-b5db34052770\",\r\n + \ \"ipAddress\": \"40.79.76.45\",\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 @@ -7715,13 +8230,13 @@ interactions: cache-control: - no-cache content-length: - - '1029' + - '1028' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:39:35 GMT + - Thu, 15 Oct 2020 08:56:11 GMT etag: - - W/"96de965a-7bb0-4ac6-a6ff-193c93ae1b68" + - W/"83f56666-d9e0-48fd-aaea-c8533fc7af87" expires: - '-1' pragma: @@ -7738,7 +8253,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0f8ad213-41f1-44f6-a000-2801dceeeebc + - e11fa2b5-3a4d-4ace-ae8c-e6646820176a status: code: 200 message: OK @@ -7758,8 +8273,8 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 method: DELETE @@ -7769,17 +8284,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/196a9f3e-e23b-4c98-ba09-00acef4732f4?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/623aa216-7ffb-415d-9214-3fbf9c289438?api-version=2019-12-01 cache-control: - no-cache content-length: - '0' date: - - Sat, 12 Sep 2020 11:39:37 GMT + - Thu, 15 Oct 2020 08:56:12 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/196a9f3e-e23b-4c98-ba09-00acef4732f4?monitor=true&api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/623aa216-7ffb-415d-9214-3fbf9c289438?monitor=true&api-version=2019-12-01 pragma: - no-cache server: @@ -7810,23 +8325,23 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/196a9f3e-e23b-4c98-ba09-00acef4732f4?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/623aa216-7ffb-415d-9214-3fbf9c289438?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:39:37.092234+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"196a9f3e-e23b-4c98-ba09-00acef4732f4\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:56:12.8257079+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"623aa216-7ffb-415d-9214-3fbf9c289438\"\r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:40:08 GMT + - Thu, 15 Oct 2020 08:56:43 GMT expires: - '-1' pragma: @@ -7843,7 +8358,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;2291 + - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4082 status: code: 200 message: OK @@ -7861,23 +8376,23 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/196a9f3e-e23b-4c98-ba09-00acef4732f4?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/623aa216-7ffb-415d-9214-3fbf9c289438?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:39:37.092234+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"196a9f3e-e23b-4c98-ba09-00acef4732f4\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:56:12.8257079+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"623aa216-7ffb-415d-9214-3fbf9c289438\"\r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:40:38 GMT + - Thu, 15 Oct 2020 08:57:13 GMT expires: - '-1' pragma: @@ -7894,7 +8409,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;2288 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4079 status: code: 200 message: OK @@ -7912,15 +8427,15 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/196a9f3e-e23b-4c98-ba09-00acef4732f4?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/623aa216-7ffb-415d-9214-3fbf9c289438?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:39:37.092234+00:00\",\r\n \"endTime\": - \"2020-09-12T11:41:08.0591097+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"196a9f3e-e23b-4c98-ba09-00acef4732f4\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:56:12.8257079+00:00\",\r\n \"endTime\": + \"2020-10-15T08:57:43.778602+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"623aa216-7ffb-415d-9214-3fbf9c289438\"\r\n}" headers: cache-control: - no-cache @@ -7929,7 +8444,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:41:08 GMT + - Thu, 15 Oct 2020 08:57:44 GMT expires: - '-1' pragma: @@ -7946,7 +8461,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;2285 + - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4076 status: code: 200 message: OK @@ -7966,8 +8481,8 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 method: DELETE @@ -7977,17 +8492,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6f4962f3-0890-4811-aa03-b5eb428380cc?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/7bf1201e-38b5-4a06-891b-406bf2327fcd?api-version=2019-12-01 cache-control: - no-cache content-length: - '0' date: - - Sat, 12 Sep 2020 11:41:11 GMT + - Thu, 15 Oct 2020 08:57:45 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6f4962f3-0890-4811-aa03-b5eb428380cc?monitor=true&api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/7bf1201e-38b5-4a06-891b-406bf2327fcd?monitor=true&api-version=2019-12-01 pragma: - no-cache server: @@ -8018,14 +8533,14 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/6f4962f3-0890-4811-aa03-b5eb428380cc?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/7bf1201e-38b5-4a06-891b-406bf2327fcd?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:41:11.6217397+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"6f4962f3-0890-4811-aa03-b5eb428380cc\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:57:46.6535947+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"7bf1201e-38b5-4a06-891b-406bf2327fcd\"\r\n}" headers: cache-control: - no-cache @@ -8034,7 +8549,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:41:42 GMT + - Thu, 15 Oct 2020 08:58:17 GMT expires: - '-1' pragma: @@ -8051,7 +8566,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;2282 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4073 status: code: 200 message: OK @@ -8069,14 +8584,14 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/6f4962f3-0890-4811-aa03-b5eb428380cc?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/7bf1201e-38b5-4a06-891b-406bf2327fcd?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:41:11.6217397+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"6f4962f3-0890-4811-aa03-b5eb428380cc\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:57:46.6535947+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"7bf1201e-38b5-4a06-891b-406bf2327fcd\"\r\n}" headers: cache-control: - no-cache @@ -8085,7 +8600,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:42:12 GMT + - Thu, 15 Oct 2020 08:58:47 GMT expires: - '-1' pragma: @@ -8102,7 +8617,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;2279 + - Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;4070 status: code: 200 message: OK @@ -8120,15 +8635,15 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/6f4962f3-0890-4811-aa03-b5eb428380cc?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/7bf1201e-38b5-4a06-891b-406bf2327fcd?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:41:11.6217397+00:00\",\r\n \"endTime\": - \"2020-09-12T11:42:41.7964677+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"6f4962f3-0890-4811-aa03-b5eb428380cc\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:57:46.6535947+00:00\",\r\n \"endTime\": + \"2020-10-15T08:59:16.8409622+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"7bf1201e-38b5-4a06-891b-406bf2327fcd\"\r\n}" headers: cache-control: - no-cache @@ -8137,7 +8652,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:42:43 GMT + - Thu, 15 Oct 2020 08:59:17 GMT expires: - '-1' pragma: @@ -8154,7 +8669,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2276 + - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4067 status: code: 200 message: OK @@ -8174,28 +8689,28 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 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=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?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/14fe4ed2-fc69-4359-9e91-1d115d5696a2?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/446cdbf4-1035-4a7c-890c-ea3d081f3419?api-version=2020-09-30 cache-control: - no-cache content-length: - '0' date: - - Sat, 12 Sep 2020 11:43:45 GMT + - Thu, 15 Oct 2020 09:00:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/14fe4ed2-fc69-4359-9e91-1d115d5696a2?monitor=true&api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/446cdbf4-1035-4a7c-890c-ea3d081f3419?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -8208,7 +8723,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/DeleteGalleryImage3Min;49,Microsoft.Compute/DeleteGalleryImage30Min;299 x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14999' status: code: 202 message: Accepted @@ -8226,15 +8741,15 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/14fe4ed2-fc69-4359-9e91-1d115d5696a2?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/446cdbf4-1035-4a7c-890c-ea3d081f3419?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:43:46.2030726+00:00\",\r\n \"endTime\": - \"2020-09-12T11:43:46.4061963+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"14fe4ed2-fc69-4359-9e91-1d115d5696a2\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T09:00:19.7937624+00:00\",\r\n \"endTime\": + \"2020-10-15T09:00:20.0281359+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"446cdbf4-1035-4a7c-890c-ea3d081f3419\"\r\n}" headers: cache-control: - no-cache @@ -8243,7 +8758,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:44:17 GMT + - Thu, 15 Oct 2020 09:00:49 GMT expires: - '-1' pragma: @@ -8260,7 +8775,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;2273 + - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4198 status: code: 200 message: OK @@ -8280,8 +8795,8 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 method: DELETE @@ -8291,17 +8806,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/79d02fa6-8490-4fa2-a967-239bdff28ffb?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/3bc7e9dd-8e51-4bd2-9592-9d600b7a1edc?api-version=2019-12-01 cache-control: - no-cache content-length: - '0' date: - - Sat, 12 Sep 2020 11:44:20 GMT + - Thu, 15 Oct 2020 09:00:53 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/79d02fa6-8490-4fa2-a967-239bdff28ffb?monitor=true&api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/3bc7e9dd-8e51-4bd2-9592-9d600b7a1edc?monitor=true&api-version=2019-12-01 pragma: - no-cache server: @@ -8314,7 +8829,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 @@ -8332,15 +8847,15 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - python/3.7.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.1.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/79d02fa6-8490-4fa2-a967-239bdff28ffb?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/3bc7e9dd-8e51-4bd2-9592-9d600b7a1edc?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-12T11:44:20.2813753+00:00\",\r\n \"endTime\": - \"2020-09-12T11:44:20.3751217+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"79d02fa6-8490-4fa2-a967-239bdff28ffb\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T09:00:52.4595338+00:00\",\r\n \"endTime\": + \"2020-10-15T09:00:54.0533282+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"3bc7e9dd-8e51-4bd2-9592-9d600b7a1edc\"\r\n}" headers: cache-control: - no-cache @@ -8349,7 +8864,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 12 Sep 2020 11:44:50 GMT + - Thu, 15 Oct 2020 09:01:24 GMT expires: - '-1' pragma: @@ -8366,7 +8881,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;2271 + - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4196 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 f025a985539..758ee808ab1 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.11.1 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.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-06-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-09-03T03:20:07Z"},"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":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:20:09 GMT + - Thu, 15 Oct 2020 08:08:54 GMT expires: - '-1' pragma: @@ -63,7 +63,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT @@ -73,11 +73,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_IWL3HLKDDK2H\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_2MVFUGHCPVT7\"\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/f2c9fdf3-6b7b-482e-b909-d6585d891de3?api-version=2019-12-01 + - 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 cache-control: - no-cache content-length: @@ -85,7 +85,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:20:17 GMT + - Thu, 15 Oct 2020 08:09:02 GMT expires: - '-1' pragma: @@ -100,7 +100,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -119,14 +119,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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/f2c9fdf3-6b7b-482e-b909-d6585d891de3?api-version=2019-12-01 + 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 response: body: - string: "{\r\n \"startTime\": \"2020-09-03T03:20:16.3787494+00:00\",\r\n \"endTime\": - \"2020-09-03T03:20:16.9568557+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"f2c9fdf3-6b7b-482e-b909-d6585d891de3\"\r\n}" + 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}" headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:20:48 GMT + - Thu, 15 Oct 2020 08:09:32 GMT expires: - '-1' pragma: @@ -152,7 +152,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;2398 + - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4197 status: code: 200 message: OK @@ -171,7 +171,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01 response: @@ -179,7 +179,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_IWL3HLKDDK2H\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_2MVFUGHCPVT7\"\r\n },\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -189,7 +189,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:20:48 GMT + - Thu, 15 Oct 2020 08:09:33 GMT expires: - '-1' pragma: @@ -206,7 +206,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2496 + - Microsoft.Compute/GetGallery3Min;343,Microsoft.Compute/GetGallery30Min;2493 status: code: 200 message: OK @@ -226,14 +226,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.11.1 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.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-06-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-09-03T03:20:07Z"},"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":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -242,7 +242,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:20:49 GMT + - Thu, 15 Oct 2020 08:09:34 GMT expires: - '-1' pragma: @@ -278,11 +278,11 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US 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=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?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_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1\",\r\n @@ -294,7 +294,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/f2368e9f-5790-4dce-a7d7-49fa2410cd4b?api-version=2019-12-01 + - 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 cache-control: - no-cache content-length: @@ -302,7 +302,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:20:58 GMT + - Thu, 15 Oct 2020 08:09:43 GMT expires: - '-1' pragma: @@ -317,7 +317,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;749 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 201 message: Created @@ -337,14 +337,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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/f2368e9f-5790-4dce-a7d7-49fa2410cd4b?api-version=2019-12-01 + 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 response: body: - string: "{\r\n \"startTime\": \"2020-09-03T03:20:57.6758864+00:00\",\r\n \"endTime\": - \"2020-09-03T03:20:57.8790113+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"f2368e9f-5790-4dce-a7d7-49fa2410cd4b\"\r\n}" + 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}" headers: cache-control: - no-cache @@ -353,7 +353,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:21:29 GMT + - Thu, 15 Oct 2020 08:10:14 GMT expires: - '-1' pragma: @@ -370,7 +370,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;2396 + - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4192 status: code: 200 message: OK @@ -390,9 +390,9 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?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?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_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1\",\r\n @@ -410,7 +410,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:21:30 GMT + - Thu, 15 Oct 2020 08:10:14 GMT expires: - '-1' pragma: @@ -427,7 +427,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;596,Microsoft.Compute/GetGalleryImage30Min;2996 + - Microsoft.Compute/GetGalleryImage3Min;592,Microsoft.Compute/GetGalleryImage30Min;2992 status: code: 200 message: OK @@ -446,14 +446,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.11.1 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.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-06-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-09-03T03:20:07Z"},"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":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -462,7 +462,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:21:31 GMT + - Thu, 15 Oct 2020 08:10:15 GMT expires: - '-1' pragma: @@ -497,7 +497,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT @@ -512,7 +512,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/47ce8e7d-cc51-408c-b2ca-634e4d743e6c?api-version=2020-06-30 + - 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 cache-control: - no-cache content-length: @@ -520,11 +520,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:21:38 GMT + - Thu, 15 Oct 2020 08:10:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/47ce8e7d-cc51-408c-b2ca-634e4d743e6c?monitor=true&api-version=2020-06-30 + - 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 pragma: - no-cache server: @@ -535,9 +535,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7997 + - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted @@ -556,13 +556,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/DiskOperations/47ce8e7d-cc51-408c-b2ca-634e4d743e6c?api-version=2020-06-30 + 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 response: body: - string: "{\r\n \"startTime\": \"2020-09-03T03:21:39.0777154+00:00\",\r\n \"endTime\": - \"2020-09-03T03:21:39.2183407+00:00\",\r\n \"status\": \"Succeeded\",\r\n + 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 \ \"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 @@ -571,20 +571,20 @@ interactions: \ \"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-09-03T03:21:39.0933444+00:00\",\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\": \"437be7fc-ecc7-4ed3-949d-e98f881a8a2a\",\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\": \"47ce8e7d-cc51-408c-b2ca-634e4d743e6c\"\r\n}" + \ },\r\n \"name\": \"993fadd2-1beb-4ae7-9f18-275d70e1d5e4\"\r\n}" headers: cache-control: - no-cache content-length: - - '1143' + - '1142' content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:21:41 GMT + - Thu, 15 Oct 2020 08:10:24 GMT expires: - '-1' pragma: @@ -601,7 +601,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49988,Microsoft.Compute/GetOperation30Min;399988 + - Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399999 status: code: 200 message: OK @@ -620,7 +620,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-06-30 response: @@ -632,9 +632,9 @@ interactions: \ \"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-09-03T03:21:39.0933444+00:00\",\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\": \"437be7fc-ecc7-4ed3-949d-e98f881a8a2a\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"69051d5d-a0c5-40cf-9f9d-d421c1381320\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: @@ -644,7 +644,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:21:41 GMT + - Thu, 15 Oct 2020 08:10:24 GMT expires: - '-1' pragma: @@ -661,7 +661,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4987,Microsoft.Compute/LowCostGet30Min;39987 + - Microsoft.Compute/LowCostGet3Min;4999,Microsoft.Compute/LowCostGet30Min;39999 status: code: 200 message: OK @@ -680,14 +680,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.11.1 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.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-06-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-09-03T03:20:07Z"},"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":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -696,7 +696,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:21:42 GMT + - Thu, 15 Oct 2020 08:10:25 GMT expires: - '-1' pragma: @@ -731,7 +731,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT @@ -746,7 +746,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/38e5e88e-df65-444c-a5a9-a5c722eb0782?api-version=2020-06-30 + - 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 cache-control: - no-cache content-length: @@ -754,11 +754,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:21:45 GMT + - Thu, 15 Oct 2020 08:10:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/38e5e88e-df65-444c-a5a9-a5c722eb0782?monitor=true&api-version=2020-06-30 + - 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 pragma: - no-cache server: @@ -769,7 +769,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;996,Microsoft.Compute/CreateUpdateDisks30Min;7996 + - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7998 x-ms-ratelimit-remaining-subscription-writes: - '1197' status: @@ -790,13 +790,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/DiskOperations/38e5e88e-df65-444c-a5a9-a5c722eb0782?api-version=2020-06-30 + 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 response: body: - string: "{\r\n \"startTime\": \"2020-09-03T03:21:45.9686797+00:00\",\r\n \"endTime\": - \"2020-09-03T03:21:46.0936914+00:00\",\r\n \"status\": \"Succeeded\",\r\n + 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 \ \"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 @@ -805,11 +805,11 @@ interactions: \ \"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-09-03T03:21:45.9686797+00:00\",\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\": \"4cf3b3a2-fdb8-41ce-8c8c-c5f968de4fb9\",\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\": \"38e5e88e-df65-444c-a5a9-a5c722eb0782\"\r\n}" + \ },\r\n \"name\": \"7511cbc9-80d7-40f2-8084-cafe9240c278\"\r\n}" headers: cache-control: - no-cache @@ -818,7 +818,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:21:48 GMT + - Thu, 15 Oct 2020 08:10:34 GMT expires: - '-1' pragma: @@ -835,7 +835,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49985,Microsoft.Compute/GetOperation30Min;399985 + - Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399997 status: code: 200 message: OK @@ -854,7 +854,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2?api-version=2020-06-30 response: @@ -866,9 +866,9 @@ interactions: \ \"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-09-03T03:21:45.9686797+00:00\",\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\": \"4cf3b3a2-fdb8-41ce-8c8c-c5f968de4fb9\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"c6886cd4-c833-431b-be36-98ff23594d42\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: @@ -878,7 +878,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:21:48 GMT + - Thu, 15 Oct 2020 08:10:34 GMT expires: - '-1' pragma: @@ -895,7 +895,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4985,Microsoft.Compute/LowCostGet30Min;39985 + - Microsoft.Compute/LowCostGet3Min;4996,Microsoft.Compute/LowCostGet30Min;39996 status: code: 200 message: OK @@ -914,14 +914,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.11.1 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.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-06-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-09-03T03:20:07Z"},"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":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -930,7 +930,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:21:48 GMT + - Thu, 15 Oct 2020 08:10:35 GMT expires: - '-1' pragma: @@ -965,7 +965,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT @@ -980,7 +980,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/471081f5-e60f-4f41-9770-bf850bf21837?api-version=2020-06-30 + - 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 cache-control: - no-cache content-length: @@ -988,11 +988,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:21:51 GMT + - Thu, 15 Oct 2020 08:10:41 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/471081f5-e60f-4f41-9770-bf850bf21837?monitor=true&api-version=2020-06-30 + - 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 pragma: - no-cache server: @@ -1003,9 +1003,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;995,Microsoft.Compute/CreateUpdateDisks30Min;7995 + - Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7997 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 202 message: Accepted @@ -1024,13 +1024,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/DiskOperations/471081f5-e60f-4f41-9770-bf850bf21837?api-version=2020-06-30 + 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 response: body: - string: "{\r\n \"startTime\": \"2020-09-03T03:21:52.2502561+00:00\",\r\n \"endTime\": - \"2020-09-03T03:21:52.3596309+00:00\",\r\n \"status\": \"Succeeded\",\r\n + 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 \ \"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 @@ -1039,11 +1039,11 @@ interactions: \ \"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-09-03T03:21:52.2502561+00:00\",\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\": \"b1837b04-147e-4126-b9e2-656cc86a1402\",\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\": \"471081f5-e60f-4f41-9770-bf850bf21837\"\r\n}" + \ },\r\n \"name\": \"99dbe3e6-ec72-4167-ba22-82d62b9c6d0a\"\r\n}" headers: cache-control: - no-cache @@ -1052,7 +1052,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:21:54 GMT + - Thu, 15 Oct 2020 08:10:43 GMT expires: - '-1' pragma: @@ -1069,7 +1069,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49983,Microsoft.Compute/GetOperation30Min;399983 + - Microsoft.Compute/GetOperation3Min;49995,Microsoft.Compute/GetOperation30Min;399995 status: code: 200 message: OK @@ -1088,7 +1088,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3?api-version=2020-06-30 response: @@ -1100,9 +1100,9 @@ interactions: \ \"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-09-03T03:21:52.2502561+00:00\",\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\": \"b1837b04-147e-4126-b9e2-656cc86a1402\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"d9c64654-7005-46b1-8e64-a65347dd07d4\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: @@ -1112,7 +1112,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:21:55 GMT + - Thu, 15 Oct 2020 08:10:44 GMT expires: - '-1' pragma: @@ -1129,7 +1129,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4981,Microsoft.Compute/LowCostGet30Min;39981 + - Microsoft.Compute/LowCostGet3Min;4994,Microsoft.Compute/LowCostGet30Min;39994 status: code: 200 message: OK @@ -1148,7 +1148,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -1166,7 +1166,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:21:55 GMT + - Thu, 15 Oct 2020 08:10:44 GMT expires: - '-1' pragma: @@ -1195,7 +1195,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -1209,9 +1209,9 @@ interactions: \ \"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-09-03T03:21:39.0933444+00:00\",\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\": \"437be7fc-ecc7-4ed3-949d-e98f881a8a2a\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"69051d5d-a0c5-40cf-9f9d-d421c1381320\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: @@ -1221,7 +1221,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:21:56 GMT + - Thu, 15 Oct 2020 08:10:44 GMT expires: - '-1' pragma: @@ -1238,7 +1238,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4979,Microsoft.Compute/LowCostGet30Min;39979 + - Microsoft.Compute/LowCostGet3Min;4993,Microsoft.Compute/LowCostGet30Min;39993 status: code: 200 message: OK @@ -1257,14 +1257,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.11.1 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.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-06-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-09-03T03:20:07Z"},"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":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1273,7 +1273,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:21:55 GMT + - Thu, 15 Oct 2020 08:10:45 GMT expires: - '-1' pragma: @@ -1308,7 +1308,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT @@ -1319,12 +1319,12 @@ interactions: {\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\": \"437be7fc-ecc7-4ed3-949d-e98f881a8a2a\"\r\n },\r\n + \ \"sourceUniqueId\": \"69051d5d-a0c5-40cf-9f9d-d421c1381320\"\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/462bc5f7-0074-4946-8766-7f77318c5667?api-version=2020-05-01 + - 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 cache-control: - no-cache content-length: @@ -1332,11 +1332,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:21:59 GMT + - Thu, 15 Oct 2020 08:10:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/462bc5f7-0074-4946-8766-7f77318c5667?monitor=true&api-version=2020-05-01 + - 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 pragma: - no-cache server: @@ -1347,7 +1347,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;998,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7998 + - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7999 x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -1368,13 +1368,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/DiskOperations/462bc5f7-0074-4946-8766-7f77318c5667?api-version=2020-05-01 + 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 response: body: - string: "{\r\n \"startTime\": \"2020-09-03T03:21:59.6412406+00:00\",\r\n \"endTime\": - \"2020-09-03T03:22:00.5788049+00:00\",\r\n \"status\": \"Succeeded\",\r\n + 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 \ \"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 @@ -1382,22 +1382,22 @@ interactions: \"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\": \"437be7fc-ecc7-4ed3-949d-e98f881a8a2a\"\r\n },\r\n + \ \"sourceUniqueId\": \"69051d5d-a0c5-40cf-9f9d-d421c1381320\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-09-03T03:21:59.6412406+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-10-15T08:10:50.301239+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"1c0977dd-7b2d-4675-8c36-8c64b5593315\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"4d3f5533-12e7-4d15-a127-f288e31e955c\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"462bc5f7-0074-4946-8766-7f77318c5667\"\r\n}" + \"d6fbe645-c751-43e5-bc99-a288eadf56f3\"\r\n}" headers: cache-control: - no-cache content-length: - - '1374' + - '1373' content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:22:02 GMT + - Thu, 15 Oct 2020 08:10:53 GMT expires: - '-1' pragma: @@ -1414,7 +1414,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49981,Microsoft.Compute/GetOperation30Min;399981 + - Microsoft.Compute/GetOperation3Min;49993,Microsoft.Compute/GetOperation30Min;399993 status: code: 200 message: OK @@ -1433,7 +1433,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 response: @@ -1444,21 +1444,21 @@ interactions: \"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\": \"437be7fc-ecc7-4ed3-949d-e98f881a8a2a\"\r\n },\r\n + \ \"sourceUniqueId\": \"69051d5d-a0c5-40cf-9f9d-d421c1381320\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-09-03T03:21:59.6412406+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-10-15T08:10:50.301239+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"1c0977dd-7b2d-4675-8c36-8c64b5593315\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"4d3f5533-12e7-4d15-a127-f288e31e955c\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1149' + - '1148' content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:22:02 GMT + - Thu, 15 Oct 2020 08:10:53 GMT expires: - '-1' pragma: @@ -1475,7 +1475,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4975,Microsoft.Compute/LowCostGet30Min;39975 + - Microsoft.Compute/LowCostGet3Min;4988,Microsoft.Compute/LowCostGet30Min;39988 status: code: 200 message: OK @@ -1494,7 +1494,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -1512,7 +1512,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:22:02 GMT + - Thu, 15 Oct 2020 08:10:53 GMT expires: - '-1' pragma: @@ -1541,7 +1541,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -1555,9 +1555,9 @@ interactions: \ \"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-09-03T03:21:45.9686797+00:00\",\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\": \"4cf3b3a2-fdb8-41ce-8c8c-c5f968de4fb9\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"c6886cd4-c833-431b-be36-98ff23594d42\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: @@ -1567,7 +1567,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:22:03 GMT + - Thu, 15 Oct 2020 08:10:54 GMT expires: - '-1' pragma: @@ -1584,7 +1584,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4974,Microsoft.Compute/LowCostGet30Min;39974 + - Microsoft.Compute/LowCostGet3Min;4986,Microsoft.Compute/LowCostGet30Min;39986 status: code: 200 message: OK @@ -1603,14 +1603,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.11.1 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.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-06-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-09-03T03:20:07Z"},"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":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1619,7 +1619,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:22:04 GMT + - Thu, 15 Oct 2020 08:10:54 GMT expires: - '-1' pragma: @@ -1654,7 +1654,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT @@ -1665,12 +1665,12 @@ interactions: {\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\": \"4cf3b3a2-fdb8-41ce-8c8c-c5f968de4fb9\"\r\n },\r\n + \ \"sourceUniqueId\": \"c6886cd4-c833-431b-be36-98ff23594d42\"\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/2360b9fd-656e-4708-9a4f-b7b3fa18af99?api-version=2020-05-01 + - 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 cache-control: - no-cache content-length: @@ -1678,11 +1678,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:22:09 GMT + - Thu, 15 Oct 2020 08:11:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/2360b9fd-656e-4708-9a4f-b7b3fa18af99?monitor=true&api-version=2020-05-01 + - 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 pragma: - no-cache server: @@ -1693,9 +1693,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;997,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7997 + - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;998,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7998 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1196' status: code: 202 message: Accepted @@ -1714,13 +1714,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/DiskOperations/2360b9fd-656e-4708-9a4f-b7b3fa18af99?api-version=2020-05-01 + 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 response: body: - string: "{\r\n \"startTime\": \"2020-09-03T03:22:10.5324092+00:00\",\r\n \"endTime\": - \"2020-09-03T03:22:11.1105646+00:00\",\r\n \"status\": \"Succeeded\",\r\n + 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 \ \"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 @@ -1728,13 +1728,13 @@ interactions: \"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\": \"4cf3b3a2-fdb8-41ce-8c8c-c5f968de4fb9\"\r\n },\r\n + \ \"sourceUniqueId\": \"c6886cd4-c833-431b-be36-98ff23594d42\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-09-03T03:22:10.5324092+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-10-15T08:11:01.8637484+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"17c1fd3d-d092-44b4-8003-b42f6130aaf5\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"2e2c4ce5-f879-4c45-95b4-5fd7f048faa9\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"2360b9fd-656e-4708-9a4f-b7b3fa18af99\"\r\n}" + \"7405c2bc-55e6-40d2-a151-a924b251da3b\"\r\n}" headers: cache-control: - no-cache @@ -1743,7 +1743,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:22:12 GMT + - Thu, 15 Oct 2020 08:11:03 GMT expires: - '-1' pragma: @@ -1760,7 +1760,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49979,Microsoft.Compute/GetOperation30Min;399979 + - Microsoft.Compute/GetOperation3Min;49991,Microsoft.Compute/GetOperation30Min;399991 status: code: 200 message: OK @@ -1779,7 +1779,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s2?api-version=2020-05-01 response: @@ -1790,11 +1790,11 @@ interactions: \"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\": \"4cf3b3a2-fdb8-41ce-8c8c-c5f968de4fb9\"\r\n },\r\n + \ \"sourceUniqueId\": \"c6886cd4-c833-431b-be36-98ff23594d42\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-09-03T03:22:10.5324092+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-10-15T08:11:01.8637484+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"17c1fd3d-d092-44b4-8003-b42f6130aaf5\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"2e2c4ce5-f879-4c45-95b4-5fd7f048faa9\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -1804,7 +1804,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:22:12 GMT + - Thu, 15 Oct 2020 08:11:04 GMT expires: - '-1' pragma: @@ -1821,7 +1821,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4970,Microsoft.Compute/LowCostGet30Min;39970 + - Microsoft.Compute/LowCostGet3Min;4983,Microsoft.Compute/LowCostGet30Min;39983 status: code: 200 message: OK @@ -1840,7 +1840,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -1858,7 +1858,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:22:13 GMT + - Thu, 15 Oct 2020 08:11:05 GMT expires: - '-1' pragma: @@ -1887,7 +1887,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -1901,9 +1901,9 @@ interactions: \ \"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-09-03T03:21:52.2502561+00:00\",\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\": \"b1837b04-147e-4126-b9e2-656cc86a1402\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"d9c64654-7005-46b1-8e64-a65347dd07d4\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: @@ -1913,7 +1913,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:22:13 GMT + - Thu, 15 Oct 2020 08:11:05 GMT expires: - '-1' pragma: @@ -1930,7 +1930,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4969,Microsoft.Compute/LowCostGet30Min;39969 + - Microsoft.Compute/LowCostGet3Min;4982,Microsoft.Compute/LowCostGet30Min;39982 status: code: 200 message: OK @@ -1949,14 +1949,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.11.1 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.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-06-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-09-03T03:20:07Z"},"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":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1965,7 +1965,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:22:14 GMT + - Thu, 15 Oct 2020 08:11:05 GMT expires: - '-1' pragma: @@ -2000,7 +2000,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT @@ -2011,12 +2011,12 @@ interactions: {\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\": \"b1837b04-147e-4126-b9e2-656cc86a1402\"\r\n },\r\n + \ \"sourceUniqueId\": \"d9c64654-7005-46b1-8e64-a65347dd07d4\"\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/40929ea8-c14e-4355-b6ba-f46fa0de8e26?api-version=2020-05-01 + - 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 cache-control: - no-cache content-length: @@ -2024,11 +2024,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:22:20 GMT + - Thu, 15 Oct 2020 08:11:11 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/40929ea8-c14e-4355-b6ba-f46fa0de8e26?monitor=true&api-version=2020-05-01 + - 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 pragma: - no-cache server: @@ -2039,9 +2039,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;996,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7996 + - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;997,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7997 x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1196' status: code: 202 message: Accepted @@ -2060,13 +2060,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/DiskOperations/40929ea8-c14e-4355-b6ba-f46fa0de8e26?api-version=2020-05-01 + 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 response: body: - string: "{\r\n \"startTime\": \"2020-09-03T03:22:20.1110337+00:00\",\r\n \"endTime\": - \"2020-09-03T03:22:21.0641938+00:00\",\r\n \"status\": \"Succeeded\",\r\n + 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 \ \"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 @@ -2074,13 +2074,13 @@ interactions: \"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\": \"b1837b04-147e-4126-b9e2-656cc86a1402\"\r\n },\r\n + \ \"sourceUniqueId\": \"d9c64654-7005-46b1-8e64-a65347dd07d4\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-09-03T03:22:20.1266502+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-10-15T08:11:11.8963169+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"1e086e94-e10b-4297-a2c5-746bda864772\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"2143f16d-3a48-492d-9d59-0deed348eef9\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"40929ea8-c14e-4355-b6ba-f46fa0de8e26\"\r\n}" + \"b277ce49-80bf-4ecd-bc5a-e6cdcbf047e9\"\r\n}" headers: cache-control: - no-cache @@ -2089,7 +2089,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:22:22 GMT + - Thu, 15 Oct 2020 08:11:14 GMT expires: - '-1' pragma: @@ -2106,7 +2106,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49977,Microsoft.Compute/GetOperation30Min;399977 + - Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399989 status: code: 200 message: OK @@ -2125,7 +2125,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s3?api-version=2020-05-01 response: @@ -2136,11 +2136,11 @@ interactions: \"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\": \"b1837b04-147e-4126-b9e2-656cc86a1402\"\r\n },\r\n + \ \"sourceUniqueId\": \"d9c64654-7005-46b1-8e64-a65347dd07d4\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-09-03T03:22:20.1266502+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-10-15T08:11:11.8963169+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"1e086e94-e10b-4297-a2c5-746bda864772\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"2143f16d-3a48-492d-9d59-0deed348eef9\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -2150,7 +2150,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:22:22 GMT + - Thu, 15 Oct 2020 08:11:14 GMT expires: - '-1' pragma: @@ -2167,7 +2167,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4967,Microsoft.Compute/LowCostGet30Min;39967 + - Microsoft.Compute/LowCostGet3Min;4980,Microsoft.Compute/LowCostGet30Min;39980 status: code: 200 message: OK @@ -2187,14 +2187,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.11.1 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.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-06-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-09-03T03:20:07Z"},"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":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2203,7 +2203,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:22:23 GMT + - Thu, 15 Oct 2020 08:11:16 GMT expires: - '-1' pragma: @@ -2242,7 +2242,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT @@ -2255,7 +2255,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-09-03T03:22:29.0514679+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-10-15T08:11:21.4885545+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 +2268,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/2f9ddb9d-3eaa-4c4b-8c5b-f68d6644afe0?api-version=2019-12-01 + - 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 cache-control: - no-cache content-length: @@ -2276,7 +2276,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:22:31 GMT + - Thu, 15 Oct 2020 08:11:23 GMT expires: - '-1' pragma: @@ -2291,7 +2291,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1199 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 201 message: Created @@ -2311,13 +2311,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/2f9ddb9d-3eaa-4c4b-8c5b-f68d6644afe0?api-version=2019-12-01 + 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-09-03T03:22:29.0045919+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"2f9ddb9d-3eaa-4c4b-8c5b-f68d6644afe0\"\r\n}" + 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 @@ -2326,7 +2326,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:23:01 GMT + - Thu, 15 Oct 2020 08:11:54 GMT expires: - '-1' pragma: @@ -2343,7 +2343,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;2394 + - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4190 status: code: 200 message: OK @@ -2363,13 +2363,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/2f9ddb9d-3eaa-4c4b-8c5b-f68d6644afe0?api-version=2019-12-01 + 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-09-03T03:22:29.0045919+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"2f9ddb9d-3eaa-4c4b-8c5b-f68d6644afe0\"\r\n}" + 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 @@ -2378,7 +2378,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:23:33 GMT + - Thu, 15 Oct 2020 08:12:24 GMT expires: - '-1' pragma: @@ -2395,7 +2395,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;2391 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4187 status: code: 200 message: OK @@ -2415,13 +2415,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/2f9ddb9d-3eaa-4c4b-8c5b-f68d6644afe0?api-version=2019-12-01 + 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-09-03T03:22:29.0045919+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"2f9ddb9d-3eaa-4c4b-8c5b-f68d6644afe0\"\r\n}" + 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 @@ -2430,7 +2430,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:24:03 GMT + - Thu, 15 Oct 2020 08:12:54 GMT expires: - '-1' pragma: @@ -2447,7 +2447,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;2388 + - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4184 status: code: 200 message: OK @@ -2467,13 +2467,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/2f9ddb9d-3eaa-4c4b-8c5b-f68d6644afe0?api-version=2019-12-01 + 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-09-03T03:22:29.0045919+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"2f9ddb9d-3eaa-4c4b-8c5b-f68d6644afe0\"\r\n}" + 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 @@ -2482,7 +2482,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:24:33 GMT + - Thu, 15 Oct 2020 08:13:24 GMT expires: - '-1' pragma: @@ -2499,7 +2499,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;2385 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4181 status: code: 200 message: OK @@ -2519,13 +2519,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/2f9ddb9d-3eaa-4c4b-8c5b-f68d6644afe0?api-version=2019-12-01 + 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-09-03T03:22:29.0045919+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"2f9ddb9d-3eaa-4c4b-8c5b-f68d6644afe0\"\r\n}" + 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 @@ -2534,7 +2534,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:25:03 GMT + - Thu, 15 Oct 2020 08:13:55 GMT expires: - '-1' pragma: @@ -2551,7 +2551,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;2383 + - Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;4178 status: code: 200 message: OK @@ -2571,13 +2571,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/2f9ddb9d-3eaa-4c4b-8c5b-f68d6644afe0?api-version=2019-12-01 + 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-09-03T03:22:29.0045919+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"2f9ddb9d-3eaa-4c4b-8c5b-f68d6644afe0\"\r\n}" + 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 @@ -2586,7 +2586,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:25:33 GMT + - Thu, 15 Oct 2020 08:14:25 GMT expires: - '-1' pragma: @@ -2603,7 +2603,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;2380 + - Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4175 status: code: 200 message: OK @@ -2623,13 +2623,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/2f9ddb9d-3eaa-4c4b-8c5b-f68d6644afe0?api-version=2019-12-01 + 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-09-03T03:22:29.0045919+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"2f9ddb9d-3eaa-4c4b-8c5b-f68d6644afe0\"\r\n}" + 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 @@ -2638,7 +2638,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:26:03 GMT + - Thu, 15 Oct 2020 08:14:56 GMT expires: - '-1' pragma: @@ -2655,7 +2655,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;2377 + - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4173 status: code: 200 message: OK @@ -2675,13 +2675,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/2f9ddb9d-3eaa-4c4b-8c5b-f68d6644afe0?api-version=2019-12-01 + 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-09-03T03:22:29.0045919+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"2f9ddb9d-3eaa-4c4b-8c5b-f68d6644afe0\"\r\n}" + 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 @@ -2690,7 +2690,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:26:35 GMT + - Thu, 15 Oct 2020 08:15:26 GMT expires: - '-1' pragma: @@ -2707,7 +2707,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;2374 + - Microsoft.Compute/GetOperationStatus3Min;1180,Microsoft.Compute/GetOperationStatus30Min;4167 status: code: 200 message: OK @@ -2727,13 +2727,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/2f9ddb9d-3eaa-4c4b-8c5b-f68d6644afe0?api-version=2019-12-01 + 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-09-03T03:22:29.0045919+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"2f9ddb9d-3eaa-4c4b-8c5b-f68d6644afe0\"\r\n}" + 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 @@ -2742,7 +2742,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:27:05 GMT + - Thu, 15 Oct 2020 08:15:57 GMT expires: - '-1' pragma: @@ -2759,7 +2759,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2371 + - Microsoft.Compute/GetOperationStatus3Min;1178,Microsoft.Compute/GetOperationStatus30Min;4162 status: code: 200 message: OK @@ -2779,13 +2779,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/2f9ddb9d-3eaa-4c4b-8c5b-f68d6644afe0?api-version=2019-12-01 + 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-09-03T03:22:29.0045919+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"2f9ddb9d-3eaa-4c4b-8c5b-f68d6644afe0\"\r\n}" + 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 @@ -2794,7 +2794,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:27:35 GMT + - Thu, 15 Oct 2020 08:16:27 GMT expires: - '-1' pragma: @@ -2811,7 +2811,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;2369 + - Microsoft.Compute/GetOperationStatus3Min;1175,Microsoft.Compute/GetOperationStatus30Min;4156 status: code: 200 message: OK @@ -2831,13 +2831,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/2f9ddb9d-3eaa-4c4b-8c5b-f68d6644afe0?api-version=2019-12-01 + 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-09-03T03:22:29.0045919+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"2f9ddb9d-3eaa-4c4b-8c5b-f68d6644afe0\"\r\n}" + 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 @@ -2846,7 +2846,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:28:05 GMT + - Thu, 15 Oct 2020 08:16:57 GMT expires: - '-1' pragma: @@ -2863,7 +2863,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;2366 + - Microsoft.Compute/GetOperationStatus3Min;1173,Microsoft.Compute/GetOperationStatus30Min;4151 status: code: 200 message: OK @@ -2883,13 +2883,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/2f9ddb9d-3eaa-4c4b-8c5b-f68d6644afe0?api-version=2019-12-01 + 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-09-03T03:22:29.0045919+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"2f9ddb9d-3eaa-4c4b-8c5b-f68d6644afe0\"\r\n}" + 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 @@ -2898,7 +2898,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:28:35 GMT + - Thu, 15 Oct 2020 08:17:27 GMT expires: - '-1' pragma: @@ -2915,7 +2915,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;2363 + - Microsoft.Compute/GetOperationStatus3Min;1170,Microsoft.Compute/GetOperationStatus30Min;4145 status: code: 200 message: OK @@ -2935,13 +2935,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/2f9ddb9d-3eaa-4c4b-8c5b-f68d6644afe0?api-version=2019-12-01 + 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-09-03T03:22:29.0045919+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"2f9ddb9d-3eaa-4c4b-8c5b-f68d6644afe0\"\r\n}" + 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 @@ -2950,7 +2950,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:29:06 GMT + - Thu, 15 Oct 2020 08:17:58 GMT expires: - '-1' pragma: @@ -2967,7 +2967,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;2360 + - Microsoft.Compute/GetOperationStatus3Min;1166,Microsoft.Compute/GetOperationStatus30Min;4139 status: code: 200 message: OK @@ -2987,13 +2987,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/2f9ddb9d-3eaa-4c4b-8c5b-f68d6644afe0?api-version=2019-12-01 + 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-09-03T03:22:29.0045919+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"2f9ddb9d-3eaa-4c4b-8c5b-f68d6644afe0\"\r\n}" + 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 @@ -3002,7 +3002,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:29:37 GMT + - Thu, 15 Oct 2020 08:18:29 GMT expires: - '-1' pragma: @@ -3019,7 +3019,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2357 + - Microsoft.Compute/GetOperationStatus3Min;1166,Microsoft.Compute/GetOperationStatus30Min;4133 status: code: 200 message: OK @@ -3039,13 +3039,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/2f9ddb9d-3eaa-4c4b-8c5b-f68d6644afe0?api-version=2019-12-01 + 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-09-03T03:22:29.0045919+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"2f9ddb9d-3eaa-4c4b-8c5b-f68d6644afe0\"\r\n}" + 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 @@ -3054,7 +3054,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:30:07 GMT + - Thu, 15 Oct 2020 08:18:59 GMT expires: - '-1' pragma: @@ -3071,7 +3071,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;2355 + - Microsoft.Compute/GetOperationStatus3Min;1172,Microsoft.Compute/GetOperationStatus30Min;4128 status: code: 200 message: OK @@ -3091,14 +3091,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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/2f9ddb9d-3eaa-4c4b-8c5b-f68d6644afe0?api-version=2019-12-01 + 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-09-03T03:22:29.0045919+00:00\",\r\n \"endTime\": - \"2020-09-03T03:30:15.0555188+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"2f9ddb9d-3eaa-4c4b-8c5b-f68d6644afe0\"\r\n}" + 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 @@ -3107,7 +3107,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:30:37 GMT + - Thu, 15 Oct 2020 08:19:30 GMT expires: - '-1' pragma: @@ -3124,7 +3124,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;2352 + - Microsoft.Compute/GetOperationStatus3Min;1173,Microsoft.Compute/GetOperationStatus30Min;4123 status: code: 200 message: OK @@ -3144,7 +3144,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2019-12-01 response: @@ -3155,7 +3155,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-09-03T03:22:29.0514679+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-10-15T08:11:21.4885545+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 +3175,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:30:37 GMT + - Thu, 15 Oct 2020 08:19:30 GMT expires: - '-1' pragma: @@ -3192,7 +3192,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1997,Microsoft.Compute/GetGalleryImageVersion30Min;9995 + - Microsoft.Compute/GetGalleryImageVersion3Min;1997,Microsoft.Compute/GetGalleryImageVersion30Min;9993 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 4839ca0195f..d2627b4ecd3 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,24 +13,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001?api-version=2020-06-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-09-08T04:28:29Z","StorageType":"Standard_LRS","type":"test"},"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":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '471' + - '428' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Sep 2020 04:28:29 GMT + - Thu, 15 Oct 2020 08:08:53 GMT expires: - '-1' pragma: @@ -62,15 +62,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-msi/0.2.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.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":"8c041329-40b2-4727-a413-4a5a01d2fe53","clientId":"9a295404-6386-483e-91ea-fff0645f23ac","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=8c041329-40b2-4727-a413-4a5a01d2fe53&aid=9a295404-6386-483e-91ea-fff0645f23ac"}}' + 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":"ee1e910b-9c3f-48b3-b862-8d6cdbc55fe7","clientId":"393d6e21-7bf1-4839-b0de-d9c23db0a5c3","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=ee1e910b-9c3f-48b3-b862-8d6cdbc55fe7&aid=393d6e21-7bf1-4839-b0de-d9c23db0a5c3"}}' headers: cache-control: - no-cache @@ -79,7 +79,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 08 Sep 2020 04:28:34 GMT + - Thu, 15 Oct 2020 08:09:01 GMT expires: - '-1' location: @@ -91,7 +91,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -109,8 +109,8 @@ interactions: ParameterSetName: - --assignee --role --scope User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 accept-language: - en-US method: GET @@ -128,7 +128,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 08 Sep 2020 04:29:20 GMT + - Thu, 15 Oct 2020 08:09:45 GMT expires: - '-1' pragma: @@ -160,15 +160,15 @@ interactions: ParameterSetName: - --assignee --role --scope User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.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%279a295404-6386-483e-91ea-fff0645f23ac%27%29&api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27393d6e21-7bf1-4839-b0de-d9c23db0a5c3%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":"8c041329-40b2-4727-a413-4a5a01d2fe53","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":"9a295404-6386-483e-91ea-fff0645f23ac","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"ide1","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"891B6F521592246FAD4A7B4F631F2E356162A433","endDate":"2020-12-07T04:23:00Z","keyId":"7f24024b-45b1-419d-91e7-9da8f08a5eca","startDate":"2020-09-08T04:23: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":["9a295404-6386-483e-91ea-fff0645f23ac","https://identity.azure.net/ppf2Ho3Kiv9LXKNa6e0P1ThVukyYuAfsXibah4ABGTQ="],"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":"ee1e910b-9c3f-48b3-b862-8d6cdbc55fe7","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":"393d6e21-7bf1-4839-b0de-d9c23db0a5c3","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"ide1","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"DC12BE9BC075976DB9A737CBAFA4918CAF2ECFCF","endDate":"2021-01-13T08:03:00Z","keyId":"83ead5a7-2900-47c0-b38c-678f90b00318","startDate":"2020-10-15T08:03: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":["393d6e21-7bf1-4839-b0de-d9c23db0a5c3","https://identity.azure.net/k88R1N/R8osFALC10qz7awnwS3AJsPuWnLuEVninNvs="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' @@ -181,19 +181,19 @@ interactions: dataserviceversion: - 3.0; date: - - Tue, 08 Sep 2020 04:29:20 GMT + - Thu, 15 Oct 2020 08:09:47 GMT duration: - - '565422' + - '2405709' expires: - '-1' ocp-aad-diagnostics-server-name: - - IdrrKLKQnFuJgNhhiCiMzXayMOWQynJhHLog8HXXGCE= + - nnwm1rHUXNOC2HCdDk0/PkC/19HDnlsfx+Y5YAxupsE= ocp-aad-session-key: - - o7U9yLGcioyTSXDDHiKY-Bv5aRasFHVMN-SSdMWckAwKe05QrQm2-5OThBzVQ73nXIOkDEZRxOvxuNGZpunna2n9tnTMhBd2P8S121_nfOiZFQp2fQMfsP1I50p7B9KZIQ1PpMpp-_QxXqIJXCRcayLbxEGEmgxsQEwbREbDOQ0.4VXrhakxa3rqZJrd01vHkkzFZVZTH6VwLReuMXBVhDQ + - izLihXBlnbN0z_tDeaNzV3k2_lMy3P_uQMXVt5HPEVxlDFjT70IYFGzxcrMB64mLUQU78GbOVuw5kxdIr9wsFOh-_PF6nAMEWsK7DggeuUF9Yl6AcxBc5AH9UtihjkRr.VtLL-K-9VkE-O-KEdDRCmFj7URpScCQ4ImXOUc22psE pragma: - no-cache request-id: - - 18dd9086-5d8c-478c-9877-15ab495a1abf + - 18e793d9-4079-4ba5-b62b-066ceaeef282 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": "8c041329-40b2-4727-a413-4a5a01d2fe53"}}' + "principalId": "ee1e910b-9c3f-48b3-b862-8d6cdbc55fe7"}}' headers: Accept: - application/json @@ -228,15 +228,15 @@ interactions: ParameterSetName: - --assignee --role --scope User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.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":"8c041329-40b2-4727-a413-4a5a01d2fe53","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","condition":null,"conditionVersion":null,"createdOn":"2020-09-08T04:29:21.4863068Z","updatedOn":"2020-09-08T04:29:21.4863068Z","createdBy":null,"updatedBy":"6d97229a-391f-473a-893f-f0608b592d7b","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":"ee1e910b-9c3f-48b3-b862-8d6cdbc55fe7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","condition":null,"conditionVersion":null,"createdOn":"2020-10-15T08:09:48.7257054Z","updatedOn":"2020-10-15T08:09:48.7257054Z","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, 08 Sep 2020 04:29:22 GMT + - Thu, 15 Oct 2020 08:09:51 GMT expires: - '-1' pragma: @@ -257,7 +257,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -275,24 +275,24 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001?api-version=2020-06-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-09-08T04:28:29Z","StorageType":"Standard_LRS","type":"test"},"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":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '471' + - '428' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Sep 2020 04:29:22 GMT + - Thu, 15 Oct 2020 08:09:52 GMT expires: - '-1' pragma: @@ -324,22 +324,22 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 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: body: - 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_SIGYRMK\"\r\ - \n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}" + 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_SIGNYHW\"\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/f53ed03a-d6f4-451e-b421-f8bdb53a00ea?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/ea0c92de-aa8e-48f9-a603-12d5e9b8384b?api-version=2019-12-01 cache-control: - no-cache content-length: @@ -347,7 +347,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 08 Sep 2020 04:29:23 GMT + - Thu, 15 Oct 2020 08:09:58 GMT expires: - '-1' pragma: @@ -360,7 +360,7 @@ 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: - '1197' status: @@ -380,15 +380,15 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/westus/capsOperations/f53ed03a-d6f4-451e-b421-f8bdb53a00ea?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/ea0c92de-aa8e-48f9-a603-12d5e9b8384b?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-08T04:29:23.5273134+00:00\",\r\n \"\ - endTime\": \"2020-09-08T04:29:23.9179315+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"f53ed03a-d6f4-451e-b421-f8bdb53a00ea\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:09:58.1386663+00:00\",\r\n \"endTime\": + \"2020-10-15T08:09:58.2480584+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"ea0c92de-aa8e-48f9-a603-12d5e9b8384b\"\r\n}" headers: cache-control: - no-cache @@ -397,7 +397,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 08 Sep 2020 04:29:53 GMT + - Thu, 15 Oct 2020 08:10:30 GMT expires: - '-1' pragma: @@ -414,7 +414,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;2398 + - Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4193 status: code: 200 message: OK @@ -432,17 +432,17 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003?api-version=2019-12-01 response: body: - 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_SIGYRMK\"\r\ - \n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + 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_SIGNYHW\"\r\n },\r\n \"provisioningState\": + \"Succeeded\"\r\n }\r\n}" headers: cache-control: - no-cache @@ -451,7 +451,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 08 Sep 2020 04:29:53 GMT + - Thu, 15 Oct 2020 08:10:30 GMT expires: - '-1' pragma: @@ -468,7 +468,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2496 + - Microsoft.Compute/GetGallery3Min;339,Microsoft.Compute/GetGallery30Min;2489 status: code: 200 message: OK @@ -486,24 +486,24 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001?api-version=2020-06-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-09-08T04:28:29Z","StorageType":"Standard_LRS","type":"test"},"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":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '471' + - '428' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Sep 2020 04:29:54 GMT + - Thu, 15 Oct 2020 08:10:31 GMT expires: - '-1' pragma: @@ -537,24 +537,24 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 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=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?api-version=2020-09-30 response: body: - string: "{\r\n \"name\": \"image1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/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}" + string: "{\r\n \"name\": \"image1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/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/6a48c4bd-9c55-4e9b-b073-6aa147ae1268?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/556099c5-a8aa-40a5-8da1-06a788836599?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -562,7 +562,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 08 Sep 2020 04:29:55 GMT + - Thu, 15 Oct 2020 08:10:37 GMT expires: - '-1' pragma: @@ -575,9 +575,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: - - '1198' + - '1199' status: code: 201 message: Created @@ -595,15 +595,15 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/westus/capsOperations/6a48c4bd-9c55-4e9b-b073-6aa147ae1268?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/556099c5-a8aa-40a5-8da1-06a788836599?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-09-08T04:29:55.4976045+00:00\",\r\n \"\ - endTime\": \"2020-09-08T04:29:55.6381811+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"6a48c4bd-9c55-4e9b-b073-6aa147ae1268\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:10:37.1701471+00:00\",\r\n \"endTime\": + \"2020-10-15T08:10:37.2795211+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"556099c5-a8aa-40a5-8da1-06a788836599\"\r\n}" headers: cache-control: - no-cache @@ -612,7 +612,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 08 Sep 2020 04:30:25 GMT + - Thu, 15 Oct 2020 08:11:09 GMT expires: - '-1' pragma: @@ -629,7 +629,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;2396 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4189 status: code: 200 message: OK @@ -647,19 +647,19 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1?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?api-version=2020-09-30 response: body: - string: "{\r\n \"name\": \"image1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/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}" + string: "{\r\n \"name\": \"image1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/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 @@ -668,7 +668,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 08 Sep 2020 04:30:25 GMT + - Thu, 15 Oct 2020 08:11:09 GMT expires: - '-1' pragma: @@ -685,7 +685,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;596,Microsoft.Compute/GetGalleryImage30Min;2996 + - Microsoft.Compute/GetGalleryImage3Min;589,Microsoft.Compute/GetGalleryImage30Min;2989 status: code: 200 message: OK @@ -703,24 +703,24 @@ interactions: ParameterSetName: - -n -g --scripts --image-source --identity --defer User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001?api-version=2020-06-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-09-08T04:28:29Z","StorageType":"Standard_LRS","type":"test"},"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":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '471' + - '428' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Sep 2020 04:30:26 GMT + - Thu, 15 Oct 2020 08:11:10 GMT expires: - '-1' pragma: @@ -748,8 +748,8 @@ interactions: ParameterSetName: - -n -g --scripts --image-source --identity --defer User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 accept-language: - en-US method: GET @@ -845,7 +845,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 08 Sep 2020 04:30:27 GMT + - Thu, 15 Oct 2020 08:11:12 GMT expires: - '-1' pragma: @@ -874,8 +874,8 @@ interactions: - -n -g --gallery-name --gallery-image-definition --gallery-replication-regions --defer User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 accept-language: - en-US method: GET @@ -971,7 +971,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 08 Sep 2020 04:30:27 GMT + - Thu, 15 Oct 2020 08:11:13 GMT expires: - '-1' pragma: @@ -1011,32 +1011,31 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.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/template01?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 \"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\"\ - : \"Creating\",\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 }\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 \"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 + \ \"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\": + \"Creating\",\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 }\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/a7a9720e-86da-42d6-b557-5276b91fa1a9?api-version=2020-02-14 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/6c489797-d475-43d5-a84b-a2864afd08f9?api-version=2020-02-14 cache-control: - no-cache content-length: @@ -1044,7 +1043,7 @@ interactions: content-type: - application/json date: - - Tue, 08 Sep 2020 04:30:34 GMT + - Thu, 15 Oct 2020 08:11:22 GMT expires: - '-1' pragma: @@ -1056,7 +1055,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -1074,15 +1073,63 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/6c489797-d475-43d5-a84b-a2864afd08f9?api-version=2020-02-14 + response: + body: + string: "{\n \"name\": \"6C489797-D475-43D5-A84B-A2864AFD08F9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-15T08:11:20.5326859Z\"\n}" + headers: + cache-control: + - no-cache + content-length: + - '122' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 08:11: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 update + Connection: + - keep-alive + 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.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/a7a9720e-86da-42d6-b557-5276b91fa1a9?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/6c489797-d475-43d5-a84b-a2864afd08f9?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"A7A9720E-86DA-42D6-B557-5276B91FA1A9\",\n \"status\"\ - : \"Succeeded\",\n \"startTime\": \"2020-09-08T04:30:33.4346575Z\",\n \"endTime\"\ - : \"2020-09-08T04:31:03.3024124Z\"\n}" + string: "{\n \"name\": \"6C489797-D475-43D5-A84B-A2864AFD08F9\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2020-10-15T08:11:20.5326859Z\",\n \"endTime\": + \"2020-10-15T08:11:54.7634151Z\"\n}" headers: cache-control: - no-cache @@ -1091,7 +1138,7 @@ interactions: content-type: - application/json date: - - Tue, 08 Sep 2020 04:31:04 GMT + - Thu, 15 Oct 2020 08:12:24 GMT expires: - '-1' pragma: @@ -1123,30 +1170,28 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.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: "{\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\": \"8c041329-40b2-4727-a413-4a5a01d2fe53\",\n \"\ - clientId\": \"9a295404-6386-483e-91ea-fff0645f23ac\"\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 \"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\": \"ee1e910b-9c3f-48b3-b862-8d6cdbc55fe7\",\n \"clientId\": + \"393d6e21-7bf1-4839-b0de-d9c23db0a5c3\"\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: cache-control: - no-cache @@ -1155,7 +1200,7 @@ interactions: content-type: - application/json date: - - Tue, 08 Sep 2020 04:31:04 GMT + - Thu, 15 Oct 2020 08:12:24 GMT expires: - '-1' pragma: @@ -1189,8 +1234,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 accept-language: - en-US method: POST @@ -1200,17 +1245,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/e51578ec-1ea1-47e2-ab07-d6671a7cf846?api-version=2020-02-14 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/6ba65555-0115-4fe5-98c4-03c748c650f7?api-version=2020-02-14 cache-control: - no-cache content-length: - '0' date: - - Tue, 08 Sep 2020 04:31:06 GMT + - Thu, 15 Oct 2020 08:12:26 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/e51578ec-1ea1-47e2-ab07-d6671a7cf846?api-version=2020-02-14 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/6ba65555-0115-4fe5-98c4-03c748c650f7?api-version=2020-02-14 pragma: - no-cache server: @@ -1238,14 +1283,110 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/6ba65555-0115-4fe5-98c4-03c748c650f7?api-version=2020-02-14 + response: + body: + string: "{\n \"name\": \"6BA65555-0115-4FE5-98C4-03C748C650F7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-15T08:12:26.6112281Z\"\n}" + headers: + cache-control: + - no-cache + content-length: + - '122' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 08:12:58 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.18 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.13.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/6ba65555-0115-4fe5-98c4-03c748c650f7?api-version=2020-02-14 + response: + body: + string: "{\n \"name\": \"6BA65555-0115-4FE5-98C4-03C748C650F7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-15T08:12:26.6112281Z\"\n}" + headers: + cache-control: + - no-cache + content-length: + - '122' + content-type: + - application/json + date: + - Thu, 15 Oct 2020 08:13:28 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.18 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/e51578ec-1ea1-47e2-ab07-d6671a7cf846?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/6ba65555-0115-4fe5-98c4-03c748c650f7?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"E51578EC-1EA1-47E2-AB07-D6671A7CF846\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-08T04:31:06.6848484Z\"\n}" + string: "{\n \"name\": \"6BA65555-0115-4FE5-98C4-03C748C650F7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-15T08:12:26.6112281Z\"\n}" headers: cache-control: - no-cache @@ -1254,7 +1395,7 @@ interactions: content-type: - application/json date: - - Tue, 08 Sep 2020 04:31:36 GMT + - Thu, 15 Oct 2020 08:13:59 GMT expires: - '-1' pragma: @@ -1286,14 +1427,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/e51578ec-1ea1-47e2-ab07-d6671a7cf846?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/6ba65555-0115-4fe5-98c4-03c748c650f7?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"E51578EC-1EA1-47E2-AB07-D6671A7CF846\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-08T04:31:06.6848484Z\"\n}" + string: "{\n \"name\": \"6BA65555-0115-4FE5-98C4-03C748C650F7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-15T08:12:26.6112281Z\"\n}" headers: cache-control: - no-cache @@ -1302,7 +1443,7 @@ interactions: content-type: - application/json date: - - Tue, 08 Sep 2020 04:32:07 GMT + - Thu, 15 Oct 2020 08:14:29 GMT expires: - '-1' pragma: @@ -1334,14 +1475,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/e51578ec-1ea1-47e2-ab07-d6671a7cf846?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/6ba65555-0115-4fe5-98c4-03c748c650f7?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"E51578EC-1EA1-47E2-AB07-D6671A7CF846\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-08T04:31:06.6848484Z\"\n}" + string: "{\n \"name\": \"6BA65555-0115-4FE5-98C4-03C748C650F7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-15T08:12:26.6112281Z\"\n}" headers: cache-control: - no-cache @@ -1350,7 +1491,7 @@ interactions: content-type: - application/json date: - - Tue, 08 Sep 2020 04:32:38 GMT + - Thu, 15 Oct 2020 08:15:00 GMT expires: - '-1' pragma: @@ -1382,14 +1523,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/e51578ec-1ea1-47e2-ab07-d6671a7cf846?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/6ba65555-0115-4fe5-98c4-03c748c650f7?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"E51578EC-1EA1-47E2-AB07-D6671A7CF846\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-08T04:31:06.6848484Z\"\n}" + string: "{\n \"name\": \"6BA65555-0115-4FE5-98C4-03C748C650F7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-15T08:12:26.6112281Z\"\n}" headers: cache-control: - no-cache @@ -1398,7 +1539,7 @@ interactions: content-type: - application/json date: - - Tue, 08 Sep 2020 04:33:08 GMT + - Thu, 15 Oct 2020 08:15:31 GMT expires: - '-1' pragma: @@ -1430,14 +1571,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/e51578ec-1ea1-47e2-ab07-d6671a7cf846?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/6ba65555-0115-4fe5-98c4-03c748c650f7?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"E51578EC-1EA1-47E2-AB07-D6671A7CF846\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-08T04:31:06.6848484Z\"\n}" + string: "{\n \"name\": \"6BA65555-0115-4FE5-98C4-03C748C650F7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-15T08:12:26.6112281Z\"\n}" headers: cache-control: - no-cache @@ -1446,7 +1587,7 @@ interactions: content-type: - application/json date: - - Tue, 08 Sep 2020 04:33:38 GMT + - Thu, 15 Oct 2020 08:16:01 GMT expires: - '-1' pragma: @@ -1478,14 +1619,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/e51578ec-1ea1-47e2-ab07-d6671a7cf846?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/6ba65555-0115-4fe5-98c4-03c748c650f7?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"E51578EC-1EA1-47E2-AB07-D6671A7CF846\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-08T04:31:06.6848484Z\"\n}" + string: "{\n \"name\": \"6BA65555-0115-4FE5-98C4-03C748C650F7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-15T08:12:26.6112281Z\"\n}" headers: cache-control: - no-cache @@ -1494,7 +1635,7 @@ interactions: content-type: - application/json date: - - Tue, 08 Sep 2020 04:34:09 GMT + - Thu, 15 Oct 2020 08:16:31 GMT expires: - '-1' pragma: @@ -1526,14 +1667,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/e51578ec-1ea1-47e2-ab07-d6671a7cf846?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/6ba65555-0115-4fe5-98c4-03c748c650f7?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"E51578EC-1EA1-47E2-AB07-D6671A7CF846\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-08T04:31:06.6848484Z\"\n}" + string: "{\n \"name\": \"6BA65555-0115-4FE5-98C4-03C748C650F7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-15T08:12:26.6112281Z\"\n}" headers: cache-control: - no-cache @@ -1542,7 +1683,7 @@ interactions: content-type: - application/json date: - - Tue, 08 Sep 2020 04:34:39 GMT + - Thu, 15 Oct 2020 08:17:02 GMT expires: - '-1' pragma: @@ -1574,14 +1715,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/e51578ec-1ea1-47e2-ab07-d6671a7cf846?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/6ba65555-0115-4fe5-98c4-03c748c650f7?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"E51578EC-1EA1-47E2-AB07-D6671A7CF846\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-08T04:31:06.6848484Z\"\n}" + string: "{\n \"name\": \"6BA65555-0115-4FE5-98C4-03C748C650F7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-15T08:12:26.6112281Z\"\n}" headers: cache-control: - no-cache @@ -1590,7 +1731,7 @@ interactions: content-type: - application/json date: - - Tue, 08 Sep 2020 04:35:10 GMT + - Thu, 15 Oct 2020 08:17:33 GMT expires: - '-1' pragma: @@ -1622,14 +1763,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/e51578ec-1ea1-47e2-ab07-d6671a7cf846?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/6ba65555-0115-4fe5-98c4-03c748c650f7?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"E51578EC-1EA1-47E2-AB07-D6671A7CF846\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-08T04:31:06.6848484Z\"\n}" + string: "{\n \"name\": \"6BA65555-0115-4FE5-98C4-03C748C650F7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-15T08:12:26.6112281Z\"\n}" headers: cache-control: - no-cache @@ -1638,7 +1779,7 @@ interactions: content-type: - application/json date: - - Tue, 08 Sep 2020 04:35:40 GMT + - Thu, 15 Oct 2020 08:18:04 GMT expires: - '-1' pragma: @@ -1670,14 +1811,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/e51578ec-1ea1-47e2-ab07-d6671a7cf846?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/6ba65555-0115-4fe5-98c4-03c748c650f7?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"E51578EC-1EA1-47E2-AB07-D6671A7CF846\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-08T04:31:06.6848484Z\"\n}" + string: "{\n \"name\": \"6BA65555-0115-4FE5-98C4-03C748C650F7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-15T08:12:26.6112281Z\"\n}" headers: cache-control: - no-cache @@ -1686,7 +1827,7 @@ interactions: content-type: - application/json date: - - Tue, 08 Sep 2020 04:36:10 GMT + - Thu, 15 Oct 2020 08:18:34 GMT expires: - '-1' pragma: @@ -1718,14 +1859,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/e51578ec-1ea1-47e2-ab07-d6671a7cf846?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/6ba65555-0115-4fe5-98c4-03c748c650f7?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"E51578EC-1EA1-47E2-AB07-D6671A7CF846\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-08T04:31:06.6848484Z\"\n}" + string: "{\n \"name\": \"6BA65555-0115-4FE5-98C4-03C748C650F7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-15T08:12:26.6112281Z\"\n}" headers: cache-control: - no-cache @@ -1734,7 +1875,7 @@ interactions: content-type: - application/json date: - - Tue, 08 Sep 2020 04:36:40 GMT + - Thu, 15 Oct 2020 08:19:05 GMT expires: - '-1' pragma: @@ -1766,14 +1907,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/e51578ec-1ea1-47e2-ab07-d6671a7cf846?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/6ba65555-0115-4fe5-98c4-03c748c650f7?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"E51578EC-1EA1-47E2-AB07-D6671A7CF846\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-08T04:31:06.6848484Z\"\n}" + string: "{\n \"name\": \"6BA65555-0115-4FE5-98C4-03C748C650F7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-15T08:12:26.6112281Z\"\n}" headers: cache-control: - no-cache @@ -1782,7 +1923,7 @@ interactions: content-type: - application/json date: - - Tue, 08 Sep 2020 04:37:10 GMT + - Thu, 15 Oct 2020 08:19:36 GMT expires: - '-1' pragma: @@ -1814,14 +1955,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/e51578ec-1ea1-47e2-ab07-d6671a7cf846?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/6ba65555-0115-4fe5-98c4-03c748c650f7?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"E51578EC-1EA1-47E2-AB07-D6671A7CF846\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-08T04:31:06.6848484Z\"\n}" + string: "{\n \"name\": \"6BA65555-0115-4FE5-98C4-03C748C650F7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-15T08:12:26.6112281Z\"\n}" headers: cache-control: - no-cache @@ -1830,7 +1971,7 @@ interactions: content-type: - application/json date: - - Tue, 08 Sep 2020 04:37:41 GMT + - Thu, 15 Oct 2020 08:20:06 GMT expires: - '-1' pragma: @@ -1862,14 +2003,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/e51578ec-1ea1-47e2-ab07-d6671a7cf846?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/6ba65555-0115-4fe5-98c4-03c748c650f7?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"E51578EC-1EA1-47E2-AB07-D6671A7CF846\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-08T04:31:06.6848484Z\"\n}" + string: "{\n \"name\": \"6BA65555-0115-4FE5-98C4-03C748C650F7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-15T08:12:26.6112281Z\"\n}" headers: cache-control: - no-cache @@ -1878,7 +2019,7 @@ interactions: content-type: - application/json date: - - Tue, 08 Sep 2020 04:38:11 GMT + - Thu, 15 Oct 2020 08:20:37 GMT expires: - '-1' pragma: @@ -1910,14 +2051,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/e51578ec-1ea1-47e2-ab07-d6671a7cf846?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/6ba65555-0115-4fe5-98c4-03c748c650f7?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"E51578EC-1EA1-47E2-AB07-D6671A7CF846\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-08T04:31:06.6848484Z\"\n}" + string: "{\n \"name\": \"6BA65555-0115-4FE5-98C4-03C748C650F7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-15T08:12:26.6112281Z\"\n}" headers: cache-control: - no-cache @@ -1926,7 +2067,7 @@ interactions: content-type: - application/json date: - - Tue, 08 Sep 2020 04:38:42 GMT + - Thu, 15 Oct 2020 08:21:07 GMT expires: - '-1' pragma: @@ -1958,14 +2099,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/e51578ec-1ea1-47e2-ab07-d6671a7cf846?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/6ba65555-0115-4fe5-98c4-03c748c650f7?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"E51578EC-1EA1-47E2-AB07-D6671A7CF846\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-08T04:31:06.6848484Z\"\n}" + string: "{\n \"name\": \"6BA65555-0115-4FE5-98C4-03C748C650F7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-15T08:12:26.6112281Z\"\n}" headers: cache-control: - no-cache @@ -1974,7 +2115,7 @@ interactions: content-type: - application/json date: - - Tue, 08 Sep 2020 04:39:12 GMT + - Thu, 15 Oct 2020 08:21:38 GMT expires: - '-1' pragma: @@ -2006,14 +2147,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/e51578ec-1ea1-47e2-ab07-d6671a7cf846?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/6ba65555-0115-4fe5-98c4-03c748c650f7?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"E51578EC-1EA1-47E2-AB07-D6671A7CF846\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-08T04:31:06.6848484Z\"\n}" + string: "{\n \"name\": \"6BA65555-0115-4FE5-98C4-03C748C650F7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-15T08:12:26.6112281Z\"\n}" headers: cache-control: - no-cache @@ -2022,7 +2163,7 @@ interactions: content-type: - application/json date: - - Tue, 08 Sep 2020 04:39:42 GMT + - Thu, 15 Oct 2020 08:22:08 GMT expires: - '-1' pragma: @@ -2054,14 +2195,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/e51578ec-1ea1-47e2-ab07-d6671a7cf846?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/6ba65555-0115-4fe5-98c4-03c748c650f7?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"E51578EC-1EA1-47E2-AB07-D6671A7CF846\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-08T04:31:06.6848484Z\"\n}" + string: "{\n \"name\": \"6BA65555-0115-4FE5-98C4-03C748C650F7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-15T08:12:26.6112281Z\"\n}" headers: cache-control: - no-cache @@ -2070,7 +2211,7 @@ interactions: content-type: - application/json date: - - Tue, 08 Sep 2020 04:40:13 GMT + - Thu, 15 Oct 2020 08:22:38 GMT expires: - '-1' pragma: @@ -2102,14 +2243,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/e51578ec-1ea1-47e2-ab07-d6671a7cf846?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/6ba65555-0115-4fe5-98c4-03c748c650f7?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"E51578EC-1EA1-47E2-AB07-D6671A7CF846\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-08T04:31:06.6848484Z\"\n}" + string: "{\n \"name\": \"6BA65555-0115-4FE5-98C4-03C748C650F7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-15T08:12:26.6112281Z\"\n}" headers: cache-control: - no-cache @@ -2118,7 +2259,7 @@ interactions: content-type: - application/json date: - - Tue, 08 Sep 2020 04:40:43 GMT + - Thu, 15 Oct 2020 08:23:10 GMT expires: - '-1' pragma: @@ -2150,14 +2291,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/e51578ec-1ea1-47e2-ab07-d6671a7cf846?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/6ba65555-0115-4fe5-98c4-03c748c650f7?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"E51578EC-1EA1-47E2-AB07-D6671A7CF846\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-08T04:31:06.6848484Z\"\n}" + string: "{\n \"name\": \"6BA65555-0115-4FE5-98C4-03C748C650F7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-15T08:12:26.6112281Z\"\n}" headers: cache-control: - no-cache @@ -2166,7 +2307,7 @@ interactions: content-type: - application/json date: - - Tue, 08 Sep 2020 04:41:13 GMT + - Thu, 15 Oct 2020 08:23:40 GMT expires: - '-1' pragma: @@ -2198,14 +2339,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/e51578ec-1ea1-47e2-ab07-d6671a7cf846?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/6ba65555-0115-4fe5-98c4-03c748c650f7?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"E51578EC-1EA1-47E2-AB07-D6671A7CF846\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-08T04:31:06.6848484Z\"\n}" + string: "{\n \"name\": \"6BA65555-0115-4FE5-98C4-03C748C650F7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-15T08:12:26.6112281Z\"\n}" headers: cache-control: - no-cache @@ -2214,7 +2355,7 @@ interactions: content-type: - application/json date: - - Tue, 08 Sep 2020 04:41:44 GMT + - Thu, 15 Oct 2020 08:24:10 GMT expires: - '-1' pragma: @@ -2246,14 +2387,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/e51578ec-1ea1-47e2-ab07-d6671a7cf846?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/6ba65555-0115-4fe5-98c4-03c748c650f7?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"E51578EC-1EA1-47E2-AB07-D6671A7CF846\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-08T04:31:06.6848484Z\"\n}" + string: "{\n \"name\": \"6BA65555-0115-4FE5-98C4-03C748C650F7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-15T08:12:26.6112281Z\"\n}" headers: cache-control: - no-cache @@ -2262,7 +2403,7 @@ interactions: content-type: - application/json date: - - Tue, 08 Sep 2020 04:42:14 GMT + - Thu, 15 Oct 2020 08:24:41 GMT expires: - '-1' pragma: @@ -2294,14 +2435,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/e51578ec-1ea1-47e2-ab07-d6671a7cf846?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/6ba65555-0115-4fe5-98c4-03c748c650f7?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"E51578EC-1EA1-47E2-AB07-D6671A7CF846\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-08T04:31:06.6848484Z\"\n}" + string: "{\n \"name\": \"6BA65555-0115-4FE5-98C4-03C748C650F7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-15T08:12:26.6112281Z\"\n}" headers: cache-control: - no-cache @@ -2310,7 +2451,7 @@ interactions: content-type: - application/json date: - - Tue, 08 Sep 2020 04:42:44 GMT + - Thu, 15 Oct 2020 08:25:13 GMT expires: - '-1' pragma: @@ -2342,14 +2483,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/e51578ec-1ea1-47e2-ab07-d6671a7cf846?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/6ba65555-0115-4fe5-98c4-03c748c650f7?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"E51578EC-1EA1-47E2-AB07-D6671A7CF846\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-08T04:31:06.6848484Z\"\n}" + string: "{\n \"name\": \"6BA65555-0115-4FE5-98C4-03C748C650F7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-15T08:12:26.6112281Z\"\n}" headers: cache-control: - no-cache @@ -2358,7 +2499,7 @@ interactions: content-type: - application/json date: - - Tue, 08 Sep 2020 04:43:15 GMT + - Thu, 15 Oct 2020 08:25:43 GMT expires: - '-1' pragma: @@ -2390,14 +2531,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/e51578ec-1ea1-47e2-ab07-d6671a7cf846?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/6ba65555-0115-4fe5-98c4-03c748c650f7?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"E51578EC-1EA1-47E2-AB07-D6671A7CF846\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-08T04:31:06.6848484Z\"\n}" + string: "{\n \"name\": \"6BA65555-0115-4FE5-98C4-03C748C650F7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-15T08:12:26.6112281Z\"\n}" headers: cache-control: - no-cache @@ -2406,7 +2547,7 @@ interactions: content-type: - application/json date: - - Tue, 08 Sep 2020 04:43:45 GMT + - Thu, 15 Oct 2020 08:26:13 GMT expires: - '-1' pragma: @@ -2438,14 +2579,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/e51578ec-1ea1-47e2-ab07-d6671a7cf846?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/6ba65555-0115-4fe5-98c4-03c748c650f7?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"E51578EC-1EA1-47E2-AB07-D6671A7CF846\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-08T04:31:06.6848484Z\"\n}" + string: "{\n \"name\": \"6BA65555-0115-4FE5-98C4-03C748C650F7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-15T08:12:26.6112281Z\"\n}" headers: cache-control: - no-cache @@ -2454,7 +2595,7 @@ interactions: content-type: - application/json date: - - Tue, 08 Sep 2020 04:44:15 GMT + - Thu, 15 Oct 2020 08:26:44 GMT expires: - '-1' pragma: @@ -2486,14 +2627,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/e51578ec-1ea1-47e2-ab07-d6671a7cf846?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/6ba65555-0115-4fe5-98c4-03c748c650f7?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"E51578EC-1EA1-47E2-AB07-D6671A7CF846\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-08T04:31:06.6848484Z\"\n}" + string: "{\n \"name\": \"6BA65555-0115-4FE5-98C4-03C748C650F7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-15T08:12:26.6112281Z\"\n}" headers: cache-control: - no-cache @@ -2502,7 +2643,7 @@ interactions: content-type: - application/json date: - - Tue, 08 Sep 2020 04:44:46 GMT + - Thu, 15 Oct 2020 08:27:14 GMT expires: - '-1' pragma: @@ -2534,14 +2675,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/e51578ec-1ea1-47e2-ab07-d6671a7cf846?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/6ba65555-0115-4fe5-98c4-03c748c650f7?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"E51578EC-1EA1-47E2-AB07-D6671A7CF846\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-08T04:31:06.6848484Z\"\n}" + string: "{\n \"name\": \"6BA65555-0115-4FE5-98C4-03C748C650F7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-15T08:12:26.6112281Z\"\n}" headers: cache-control: - no-cache @@ -2550,7 +2691,7 @@ interactions: content-type: - application/json date: - - Tue, 08 Sep 2020 04:45:16 GMT + - Thu, 15 Oct 2020 08:27:45 GMT expires: - '-1' pragma: @@ -2582,14 +2723,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/e51578ec-1ea1-47e2-ab07-d6671a7cf846?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/6ba65555-0115-4fe5-98c4-03c748c650f7?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"E51578EC-1EA1-47E2-AB07-D6671A7CF846\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-08T04:31:06.6848484Z\"\n}" + string: "{\n \"name\": \"6BA65555-0115-4FE5-98C4-03C748C650F7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-15T08:12:26.6112281Z\"\n}" headers: cache-control: - no-cache @@ -2598,7 +2739,7 @@ interactions: content-type: - application/json date: - - Tue, 08 Sep 2020 04:45:46 GMT + - Thu, 15 Oct 2020 08:28:16 GMT expires: - '-1' pragma: @@ -2630,14 +2771,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/e51578ec-1ea1-47e2-ab07-d6671a7cf846?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/6ba65555-0115-4fe5-98c4-03c748c650f7?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"E51578EC-1EA1-47E2-AB07-D6671A7CF846\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-08T04:31:06.6848484Z\"\n}" + string: "{\n \"name\": \"6BA65555-0115-4FE5-98C4-03C748C650F7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-15T08:12:26.6112281Z\"\n}" headers: cache-control: - no-cache @@ -2646,7 +2787,7 @@ interactions: content-type: - application/json date: - - Tue, 08 Sep 2020 04:46:16 GMT + - Thu, 15 Oct 2020 08:28:46 GMT expires: - '-1' pragma: @@ -2678,14 +2819,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/e51578ec-1ea1-47e2-ab07-d6671a7cf846?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/6ba65555-0115-4fe5-98c4-03c748c650f7?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"E51578EC-1EA1-47E2-AB07-D6671A7CF846\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-08T04:31:06.6848484Z\"\n}" + string: "{\n \"name\": \"6BA65555-0115-4FE5-98C4-03C748C650F7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-15T08:12:26.6112281Z\"\n}" headers: cache-control: - no-cache @@ -2694,7 +2835,7 @@ interactions: content-type: - application/json date: - - Tue, 08 Sep 2020 04:46:46 GMT + - Thu, 15 Oct 2020 08:29:16 GMT expires: - '-1' pragma: @@ -2726,14 +2867,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/e51578ec-1ea1-47e2-ab07-d6671a7cf846?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/6ba65555-0115-4fe5-98c4-03c748c650f7?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"E51578EC-1EA1-47E2-AB07-D6671A7CF846\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-08T04:31:06.6848484Z\"\n}" + string: "{\n \"name\": \"6BA65555-0115-4FE5-98C4-03C748C650F7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-15T08:12:26.6112281Z\"\n}" headers: cache-control: - no-cache @@ -2742,7 +2883,7 @@ interactions: content-type: - application/json date: - - Tue, 08 Sep 2020 04:47:18 GMT + - Thu, 15 Oct 2020 08:29:47 GMT expires: - '-1' pragma: @@ -2774,14 +2915,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/e51578ec-1ea1-47e2-ab07-d6671a7cf846?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/6ba65555-0115-4fe5-98c4-03c748c650f7?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"E51578EC-1EA1-47E2-AB07-D6671A7CF846\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-08T04:31:06.6848484Z\"\n}" + string: "{\n \"name\": \"6BA65555-0115-4FE5-98C4-03C748C650F7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-15T08:12:26.6112281Z\"\n}" headers: cache-control: - no-cache @@ -2790,7 +2931,7 @@ interactions: content-type: - application/json date: - - Tue, 08 Sep 2020 04:47:48 GMT + - Thu, 15 Oct 2020 08:30:18 GMT expires: - '-1' pragma: @@ -2822,14 +2963,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/e51578ec-1ea1-47e2-ab07-d6671a7cf846?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/6ba65555-0115-4fe5-98c4-03c748c650f7?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"E51578EC-1EA1-47E2-AB07-D6671A7CF846\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-08T04:31:06.6848484Z\"\n}" + string: "{\n \"name\": \"6BA65555-0115-4FE5-98C4-03C748C650F7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-15T08:12:26.6112281Z\"\n}" headers: cache-control: - no-cache @@ -2838,7 +2979,7 @@ interactions: content-type: - application/json date: - - Tue, 08 Sep 2020 04:48:18 GMT + - Thu, 15 Oct 2020 08:30:48 GMT expires: - '-1' pragma: @@ -2870,14 +3011,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/e51578ec-1ea1-47e2-ab07-d6671a7cf846?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/6ba65555-0115-4fe5-98c4-03c748c650f7?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"E51578EC-1EA1-47E2-AB07-D6671A7CF846\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-08T04:31:06.6848484Z\"\n}" + string: "{\n \"name\": \"6BA65555-0115-4FE5-98C4-03C748C650F7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-15T08:12:26.6112281Z\"\n}" headers: cache-control: - no-cache @@ -2886,7 +3027,7 @@ interactions: content-type: - application/json date: - - Tue, 08 Sep 2020 04:48:48 GMT + - Thu, 15 Oct 2020 08:31:19 GMT expires: - '-1' pragma: @@ -2918,14 +3059,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/e51578ec-1ea1-47e2-ab07-d6671a7cf846?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/6ba65555-0115-4fe5-98c4-03c748c650f7?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"E51578EC-1EA1-47E2-AB07-D6671A7CF846\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-08T04:31:06.6848484Z\"\n}" + string: "{\n \"name\": \"6BA65555-0115-4FE5-98C4-03C748C650F7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-15T08:12:26.6112281Z\"\n}" headers: cache-control: - no-cache @@ -2934,7 +3075,7 @@ interactions: content-type: - application/json date: - - Tue, 08 Sep 2020 04:49:18 GMT + - Thu, 15 Oct 2020 08:31:51 GMT expires: - '-1' pragma: @@ -2966,15 +3107,15 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/e51578ec-1ea1-47e2-ab07-d6671a7cf846?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/6ba65555-0115-4fe5-98c4-03c748c650f7?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"E51578EC-1EA1-47E2-AB07-D6671A7CF846\",\n \"status\"\ - : \"Succeeded\",\n \"startTime\": \"2020-09-08T04:31:06.6848484Z\",\n \"endTime\"\ - : \"2020-09-08T04:49:21.7290715Z\"\n}" + string: "{\n \"name\": \"6BA65555-0115-4FE5-98C4-03C748C650F7\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2020-10-15T08:12:26.6112281Z\",\n \"endTime\": + \"2020-10-15T08:32:11.3805765Z\"\n}" headers: cache-control: - no-cache @@ -2983,7 +3124,7 @@ interactions: content-type: - application/json date: - - Tue, 08 Sep 2020 04:49:49 GMT + - Thu, 15 Oct 2020 08:32:21 GMT expires: - '-1' pragma: @@ -3015,18 +3156,17 @@ interactions: ParameterSetName: - -n -g --output-name User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.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.24407.2742\"\ - ,\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}" + 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.24456.1527\",\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 @@ -3035,7 +3175,7 @@ interactions: content-type: - application/json date: - - Tue, 08 Sep 2020 04:49:50 GMT + - Thu, 15 Oct 2020 08:32:23 GMT expires: - '-1' pragma: @@ -3067,24 +3207,24 @@ interactions: ParameterSetName: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001?api-version=2020-06-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-09-08T04:28:29Z","StorageType":"Standard_LRS","type":"test"},"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":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '471' + - '428' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Sep 2020 04:49:50 GMT + - Thu, 15 Oct 2020 08:32:24 GMT expires: - '-1' pragma: @@ -3112,21 +3252,21 @@ interactions: ParameterSetName: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 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=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?api-version=2020-09-30 response: body: - string: "{\r\n \"name\": \"image1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/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}" + string: "{\r\n \"name\": \"image1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/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 @@ -3135,7 +3275,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 08 Sep 2020 04:49:50 GMT + - Thu, 15 Oct 2020 08:32:25 GMT expires: - '-1' pragma: @@ -3152,7 +3292,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;599,Microsoft.Compute/GetGalleryImage30Min;2989 + - Microsoft.Compute/GetGalleryImage3Min;599,Microsoft.Compute/GetGalleryImage30Min;2964 status: code: 200 message: OK @@ -3170,27 +3310,27 @@ interactions: ParameterSetName: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 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.24407.2742?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.24456.1527?api-version=2019-12-01 response: body: - string: "{\r\n \"name\": \"0.24407.2742\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24407.2742\"\ - ,\r\n \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"\ - location\": \"westus\",\r\n \"tags\": {\r\n \"correlationId\": \"6d7f711a-3fcd-4159-a1b8-cfc4c0e1539a\"\ - \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-09-08T04:38:16.3507792+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_sigdvjyg4khrfcyiiizsgaxgbtsyrxl_e1f789d8-08c3-46a9-8524-ff6b9494a5b4/providers/Microsoft.Compute/images/IntermediateSnapImg_6d7f711a-3fcd-4159-a1b8-cfc4c0e1539a_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}" + string: "{\r\n \"name\": \"0.24456.1527\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24456.1527\",\r\n + \ \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": + \"westus\",\r\n \"tags\": {\r\n \"correlationId\": \"5735d6de-505f-471a-a4e7-989b4ba0be42\"\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-10-15T08:19:05.8763624+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_sigoyol7y5rmtydobbdhljaycgbymo3_47470094-48c3-4b8c-b0bc-5a717b990058/providers/Microsoft.Compute/images/IntermediateSnapImg_5735d6de-505f-471a-a4e7-989b4ba0be42_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}" headers: cache-control: - no-cache @@ -3199,7 +3339,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 08 Sep 2020 04:49:50 GMT + - Thu, 15 Oct 2020 08:32:25 GMT expires: - '-1' pragma: @@ -3216,7 +3356,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1996,Microsoft.Compute/GetGalleryImageVersion30Min;9994 + - Microsoft.Compute/GetGalleryImageVersion3Min;1995,Microsoft.Compute/GetGalleryImageVersion30Min;9978 status: code: 200 message: OK @@ -3234,8 +3374,8 @@ interactions: ParameterSetName: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-network/11.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 accept-language: - en-US method: GET @@ -3251,7 +3391,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 08 Sep 2020 04:49:50 GMT + - Thu, 15 Oct 2020 08:32:26 GMT expires: - '-1' pragma: @@ -3293,12 +3433,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.24407.2742"}}, + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24456.1527"}}, "osProfile": {"computerName": "custom-vm", "adminUsername": "azureuser", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"keyData": "ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQCsEiAXmbsegCwIipUbJf4nZJnxpKZYOcqgrQKmbQh9hV48vrdNpvmqFYhaK/9BKRAfR1QPvShGRnBG+AgjSnXhEFangAwRrj8BBE7T18fYQ8IXnUPgm4xhV/VO7E8wbucwoDVYNgvRs0KW+T7l4fhjrGaoPCrGpYuvsubUmydR8SFV0RnqMdOma5iiAIup7Ey92HdJ2OcWWVWnnTCJF/FyNfK+M6cyu74flt/hkVK3Qy0RY5HHnr0f1QsP+PdY9BKnR3jmJtYf018gps7frjHg9QfkjeVgEPvMk0VIRYcYPKq7HOjloM1KF+Ro88HcJaO4LQrnvtZm8yHI1PfkF+nr", - "path": "/home/azureuser/.ssh/authorized_keys"}]}}}}}], "outputs": {}}, "parameters": - {}, "mode": "Incremental"}}' + 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"}}' headers: Accept: - application/json @@ -3309,24 +3449,24 @@ interactions: Connection: - keep-alive Content-Length: - - '3906' + - '3928' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 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-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/vm_deploy_z3atEJvL9MyxiKBWGeW8LZI6SCuDjibB","name":"vm_deploy_z3atEJvL9MyxiKBWGeW8LZI6SCuDjibB","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17591492041296939238","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-09-08T04:49:52.1209452Z","duration":"PT0.548953S","correlationId":"f8db2b1e-a1a7-4254-8033-bc5c45f1e034","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_XyX1u6Sq8vwAkcLLQAHjGUT0kmbf3nn3","name":"vm_deploy_XyX1u6Sq8vwAkcLLQAHjGUT0kmbf3nn3","type":"Microsoft.Resources/deployments","properties":{"templateHash":"3651874587093413880","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-10-15T08:32:30.6410889Z","duration":"PT2.4499195S","correlationId":"70009e8e-2d7d-4799-8f2e-7034d4a64ff8","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_z3atEJvL9MyxiKBWGeW8LZI6SCuDjibB/operationStatuses/08586020662939056367?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_XyX1u6Sq8vwAkcLLQAHjGUT0kmbf3nn3/operationStatuses/08585988561372864616?api-version=2020-06-01 cache-control: - no-cache content-length: @@ -3334,7 +3474,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 08 Sep 2020 04:49:51 GMT + - Thu, 15 Oct 2020 08:32:31 GMT expires: - '-1' pragma: @@ -3344,7 +3484,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' status: code: 201 message: Created @@ -3362,10 +3502,53 @@ interactions: ParameterSetName: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585988561372864616?api-version=2020-06-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Oct 2020 08:33:02 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: + - --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.13.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/08586020662939056367?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/08585988561372864616?api-version=2020-06-01 response: body: string: '{"status":"Running"}' @@ -3377,7 +3560,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 08 Sep 2020 04:50:22 GMT + - Thu, 15 Oct 2020 08:33:32 GMT expires: - '-1' pragma: @@ -3405,10 +3588,10 @@ interactions: ParameterSetName: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586020662939056367?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/08585988561372864616?api-version=2020-06-01 response: body: string: '{"status":"Running"}' @@ -3420,7 +3603,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 08 Sep 2020 04:50:51 GMT + - Thu, 15 Oct 2020 08:34:02 GMT expires: - '-1' pragma: @@ -3448,10 +3631,10 @@ interactions: ParameterSetName: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586020662939056367?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/08585988561372864616?api-version=2020-06-01 response: body: string: '{"status":"Succeeded"}' @@ -3463,7 +3646,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 08 Sep 2020 04:51:21 GMT + - Thu, 15 Oct 2020 08:34:34 GMT expires: - '-1' pragma: @@ -3491,13 +3674,13 @@ interactions: ParameterSetName: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 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-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/vm_deploy_z3atEJvL9MyxiKBWGeW8LZI6SCuDjibB","name":"vm_deploy_z3atEJvL9MyxiKBWGeW8LZI6SCuDjibB","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17591492041296939238","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-09-08T04:51:06.580393Z","duration":"PT1M15.0084008S","correlationId":"f8db2b1e-a1a7-4254-8033-bc5c45f1e034","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_XyX1u6Sq8vwAkcLLQAHjGUT0kmbf3nn3","name":"vm_deploy_XyX1u6Sq8vwAkcLLQAHjGUT0kmbf3nn3","type":"Microsoft.Resources/deployments","properties":{"templateHash":"3651874587093413880","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-10-15T08:34:27.9869139Z","duration":"PT1M59.7957445S","correlationId":"70009e8e-2d7d-4799-8f2e-7034d4a64ff8","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 @@ -3506,7 +3689,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 08 Sep 2020 04:51:21 GMT + - Thu, 15 Oct 2020 08:34:34 GMT expires: - '-1' pragma: @@ -3534,65 +3717,63 @@ interactions: ParameterSetName: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 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\": \"\ - c641e558-5de4-4d3b-b97e-f1d72e3940ed\",\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.24407.2742\"\ - ,\r\n \"exactVersion\": \"0.24407.2742\"\r\n },\r\n \"osDisk\"\ - : {\r\n \"osType\": \"Linux\",\r\n \"name\": \"custom-vm_OsDisk_1_ef35e70d3af84e7cbdf071ddaacff068\"\ - ,\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_SIGDVJYG4KHRFCYIIIZSGAXGBTSYRXLV2CPSXJFNSRNVAFZLHUPDJAU6CLY2GUIRIR/providers/Microsoft.Compute/disks/custom-vm_OsDisk_1_ef35e70d3af84e7cbdf071ddaacff068\"\ - \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 \"disablePasswordAuthentication\": true,\r\n \"ssh\"\ - : {\r\n \"publicKeys\": [\r\n {\r\n \"path\"\ - : \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\":\ - \ \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCsEiAXmbsegCwIipUbJf4nZJnxpKZYOcqgrQKmbQh9hV48vrdNpvmqFYhaK/9BKRAfR1QPvShGRnBG+AgjSnXhEFangAwRrj8BBE7T18fYQ8IXnUPgm4xhV/VO7E8wbucwoDVYNgvRs0KW+T7l4fhjrGaoPCrGpYuvsubUmydR8SFV0RnqMdOma5iiAIup7Ey92HdJ2OcWWVWnnTCJF/FyNfK+M6cyu74flt/hkVK3Qy0RY5HHnr0f1QsP+PdY9BKnR3jmJtYf018gps7frjHg9QfkjeVgEPvMk0VIRYcYPKq7HOjloM1KF+Ro88HcJaO4LQrnvtZm8yHI1PfkF+nr\"\ - \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/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic\"\ - }]},\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-09-08T04:51:23+00:00\"\ - \r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n \ - \ {\r\n \"name\": \"custom-vm_OsDisk_1_ef35e70d3af84e7cbdf071ddaacff068\"\ - ,\r\n \"statuses\": [\r\n {\r\n \"code\"\ - : \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\ - \n \"displayStatus\": \"Provisioning succeeded\",\r\n \ - \ \"time\": \"2020-09-08T04:50:02.4066613+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-09-08T04:51:04.2975924+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}" + 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\": \"b41bdaf3-239d-4240-9f6d-dd550e47c51a\",\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.24456.1527\",\r\n + \ \"exactVersion\": \"0.24456.1527\"\r\n },\r\n \"osDisk\": + {\r\n \"osType\": \"Linux\",\r\n \"name\": \"custom-vm_OsDisk_1_9e4de2b8445d4d299169157106ba4110\",\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_SIGOYOL7Y5RMTYDOBBDHLJAYCGBYMO33XZPGCW22UND5ZMLK45OWP4GPMZ3SKG3BLJ/providers/Microsoft.Compute/disks/custom-vm_OsDisk_1_9e4de2b8445d4d299169157106ba4110\"\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 + \ \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n + \ \"publicKeys\": [\r\n {\r\n \"path\": \"/home/azureuser/.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/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic\"}]},\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-10-15T08:34:35+00:00\"\r\n }\r\n + \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": + \"custom-vm_OsDisk_1_9e4de2b8445d4d299169157106ba4110\",\r\n \"statuses\": + [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2020-10-15T08:32:50.0107733+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-10-15T08:34:24.7616475+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: - - '3902' + - '3924' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Sep 2020 04:51:22 GMT + - Thu, 15 Oct 2020 08:34:35 GMT expires: - '-1' pragma: @@ -3609,7 +3790,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31928 + - Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31954 status: code: 200 message: OK @@ -3627,38 +3808,36 @@ interactions: ParameterSetName: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-network/11.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 accept-language: - en-US 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/\\\"24200081-eb2c-4e7e-bf5c-dd5797257464\\\"\",\r\n \ - \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"da26146a-bad1-46cb-8391-d95dc80dd352\"\ - ,\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/\\\"24200081-eb2c-4e7e-bf5c-dd5797257464\\\"\"\ - ,\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/img_tmpl_sig000001/providers/Microsoft.Network/publicIPAddresses/custom-vmPublicIP\"\ - \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/virtualNetworks/custom-vmVNET/subnets/custom-vmSubnet\"\ - \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\": \"de41aunfwjcejkwumgf0vucqqb.dx.internal.cloudapp.net\"\ - \r\n },\r\n \"macAddress\": \"00-0D-3A-3A-DE-26\",\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\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm\"\ - \r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\ - \n}" + 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/\\\"50991741-3da4-4b81-98c2-c80e012a036f\\\"\",\r\n \"location\": + \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"resourceGuid\": \"c4fba9a1-7784-4d5b-ba03-2b69009e4a3f\",\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/\\\"50991741-3da4-4b81-98c2-c80e012a036f\\\"\",\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/img_tmpl_sig000001/providers/Microsoft.Network/publicIPAddresses/custom-vmPublicIP\"\r\n + \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/virtualNetworks/custom-vmVNET/subnets/custom-vmSubnet\"\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\": + \"ak5v4xkhqc3unoceyrk5sm51yh.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-22-48-04-B8-E3\",\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\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm\"\r\n + \ }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" headers: cache-control: - no-cache @@ -3667,9 +3846,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 08 Sep 2020 04:51:23 GMT + - Thu, 15 Oct 2020 08:34:36 GMT etag: - - W/"24200081-eb2c-4e7e-bf5c-dd5797257464" + - W/"50991741-3da4-4b81-98c2-c80e012a036f" expires: - '-1' pragma: @@ -3686,7 +3865,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 460a862e-422a-4ce5-9fe6-edce99b32c1c + - 836a7f58-8663-4fd2-b4f5-ce058c942ac2 status: code: 200 message: OK @@ -3704,35 +3883,34 @@ interactions: ParameterSetName: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-network/11.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 accept-language: - en-US 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/\\\"d26270da-5434-4b78-a11a-8f54126f2829\\\"\",\r\n \ - \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a0826b55-6764-4191-ae68-e0b7dc0d2144\"\ - ,\r\n \"ipAddress\": \"13.64.158.17\",\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 \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + 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/\\\"84454165-fda1-4ee6-a0aa-8d629a975aca\\\"\",\r\n \"location\": + \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"resourceGuid\": \"82d0c514-07bd-42d0-a42c-fe62bf1dd84e\",\r\n + \ \"ipAddress\": \"104.210.43.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 + \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1020' + - '1022' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Sep 2020 04:51:23 GMT + - Thu, 15 Oct 2020 08:34:36 GMT etag: - - W/"d26270da-5434-4b78-a11a-8f54126f2829" + - W/"84454165-fda1-4ee6-a0aa-8d629a975aca" expires: - '-1' pragma: @@ -3749,7 +3927,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d44a74bd-3fb9-4256-8218-c332d6a23676 + - faaa0be2-830e-4b85-9882-9d40bb0c6e19 status: code: 200 message: OK @@ -3767,47 +3945,46 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 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\": \"\ - c641e558-5de4-4d3b-b97e-f1d72e3940ed\",\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.24407.2742\"\ - ,\r\n \"exactVersion\": \"0.24407.2742\"\r\n },\r\n \"osDisk\"\ - : {\r\n \"osType\": \"Linux\",\r\n \"name\": \"custom-vm_OsDisk_1_ef35e70d3af84e7cbdf071ddaacff068\"\ - ,\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_SIGDVJYG4KHRFCYIIIZSGAXGBTSYRXLV2CPSXJFNSRNVAFZLHUPDJAU6CLY2GUIRIR/providers/Microsoft.Compute/disks/custom-vm_OsDisk_1_ef35e70d3af84e7cbdf071ddaacff068\"\ - \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 \"disablePasswordAuthentication\": true,\r\n \"ssh\"\ - : {\r\n \"publicKeys\": [\r\n {\r\n \"path\"\ - : \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\":\ - \ \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCsEiAXmbsegCwIipUbJf4nZJnxpKZYOcqgrQKmbQh9hV48vrdNpvmqFYhaK/9BKRAfR1QPvShGRnBG+AgjSnXhEFangAwRrj8BBE7T18fYQ8IXnUPgm4xhV/VO7E8wbucwoDVYNgvRs0KW+T7l4fhjrGaoPCrGpYuvsubUmydR8SFV0RnqMdOma5iiAIup7Ey92HdJ2OcWWVWnnTCJF/FyNfK+M6cyu74flt/hkVK3Qy0RY5HHnr0f1QsP+PdY9BKnR3jmJtYf018gps7frjHg9QfkjeVgEPvMk0VIRYcYPKq7HOjloM1KF+Ro88HcJaO4LQrnvtZm8yHI1PfkF+nr\"\ - \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/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic\"\ - }]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + 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\": \"b41bdaf3-239d-4240-9f6d-dd550e47c51a\",\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.24456.1527\",\r\n + \ \"exactVersion\": \"0.24456.1527\"\r\n },\r\n \"osDisk\": + {\r\n \"osType\": \"Linux\",\r\n \"name\": \"custom-vm_OsDisk_1_9e4de2b8445d4d299169157106ba4110\",\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_SIGOYOL7Y5RMTYDOBBDHLJAYCGBYMO33XZPGCW22UND5ZMLK45OWP4GPMZ3SKG3BLJ/providers/Microsoft.Compute/disks/custom-vm_OsDisk_1_9e4de2b8445d4d299169157106ba4110\"\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 + \ \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n + \ \"publicKeys\": [\r\n {\r\n \"path\": \"/home/azureuser/.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/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic\"}]},\r\n + \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2690' + - '2712' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Sep 2020 04:51:23 GMT + - Thu, 15 Oct 2020 08:34:37 GMT expires: - '-1' pragma: @@ -3824,7 +4001,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31927 + - Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31952 status: code: 200 message: OK @@ -3842,24 +4019,24 @@ interactions: ParameterSetName: - -n -g --image-source --identity --shared-image-destinations --scripts User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001?api-version=2020-06-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-09-08T04:28:29Z","StorageType":"Standard_LRS","type":"test"},"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":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '471' + - '428' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Sep 2020 04:51:23 GMT + - Thu, 15 Oct 2020 08:34:37 GMT expires: - '-1' pragma: @@ -3887,8 +4064,8 @@ interactions: ParameterSetName: - -n -g --image-source --identity --shared-image-destinations --scripts User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 accept-language: - en-US method: GET @@ -3984,7 +4161,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 08 Sep 2020 04:51:23 GMT + - Thu, 15 Oct 2020 08:34:39 GMT expires: - '-1' pragma: @@ -4000,7 +4177,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.24407.2742"}, + "imageVersionId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24456.1527"}, "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", @@ -4023,31 +4200,30 @@ interactions: ParameterSetName: - -n -g --image-source --identity --shared-image-destinations --scripts User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.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.24407.2742\"\ - ,\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\": {},\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\"\ - : \"Creating\",\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 }\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}" + 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.24456.1527\",\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\": + {},\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\": + \"Creating\",\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 }\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: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/34dc1c1a-c2cc-4685-9e8a-4eced3881e44?api-version=2020-02-14 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/0b3eb042-82ea-45ab-945a-37f7b1446aad?api-version=2020-02-14 cache-control: - no-cache content-length: @@ -4055,7 +4231,7 @@ interactions: content-type: - application/json date: - - Tue, 08 Sep 2020 04:51:29 GMT + - Thu, 15 Oct 2020 08:34:52 GMT expires: - '-1' pragma: @@ -4067,7 +4243,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1194' status: code: 201 message: Created @@ -4085,23 +4261,23 @@ interactions: ParameterSetName: - -n -g --image-source --identity --shared-image-destinations --scripts User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/34dc1c1a-c2cc-4685-9e8a-4eced3881e44?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/0b3eb042-82ea-45ab-945a-37f7b1446aad?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"34DC1C1A-C2CC-4685-9E8A-4ECED3881E44\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-08T04:51:29.4870691Z\"\n}" + string: "{\n \"name\": \"0B3EB042-82EA-45AB-945A-37F7B1446AAD\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2020-10-15T08:34:51.339734Z\"\n}" headers: cache-control: - no-cache content-length: - - '122' + - '121' content-type: - application/json date: - - Tue, 08 Sep 2020 04:52:00 GMT + - Thu, 15 Oct 2020 08:35:24 GMT expires: - '-1' pragma: @@ -4133,24 +4309,24 @@ interactions: ParameterSetName: - -n -g --image-source --identity --shared-image-destinations --scripts User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/34dc1c1a-c2cc-4685-9e8a-4eced3881e44?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/0b3eb042-82ea-45ab-945a-37f7b1446aad?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"34DC1C1A-C2CC-4685-9E8A-4ECED3881E44\",\n \"status\"\ - : \"Succeeded\",\n \"startTime\": \"2020-09-08T04:51:29.4870691Z\",\n \"endTime\"\ - : \"2020-09-08T04:52:03.384156Z\"\n}" + string: "{\n \"name\": \"0B3EB042-82EA-45AB-945A-37F7B1446AAD\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2020-10-15T08:34:51.339734Z\",\n \"endTime\": + \"2020-10-15T08:35:24.221578Z\"\n}" headers: cache-control: - no-cache content-length: - - '164' + - '163' content-type: - application/json date: - - Tue, 08 Sep 2020 04:52:30 GMT + - Thu, 15 Oct 2020 08:35:55 GMT expires: - '-1' pragma: @@ -4182,29 +4358,27 @@ interactions: ParameterSetName: - -n -g --image-source --identity --shared-image-destinations --scripts User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.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.24407.2742\"\ - ,\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 \"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\": \"8c041329-40b2-4727-a413-4a5a01d2fe53\",\n \"\ - clientId\": \"9a295404-6386-483e-91ea-fff0645f23ac\"\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}" + 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.24456.1527\",\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 + \ \"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\": \"ee1e910b-9c3f-48b3-b862-8d6cdbc55fe7\",\n \"clientId\": + \"393d6e21-7bf1-4839-b0de-d9c23db0a5c3\"\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 @@ -4213,7 +4387,7 @@ interactions: content-type: - application/json date: - - Tue, 08 Sep 2020 04:52:31 GMT + - Thu, 15 Oct 2020 08:35:55 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_image_builder_basic_sig.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_image_builder_basic_sig.yaml index 708cb02d897..3d651641b50 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_image_builder_basic_sig.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_image_builder_basic_sig.yaml @@ -13,24 +13,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_basic_2000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_basic_2000001","name":"img_tmpl_basic_2000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2020-09-08T04:28:29Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_basic_2000001","name":"img_tmpl_basic_2000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '472' + - '429' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Sep 2020 04:28:30 GMT + - Thu, 15 Oct 2020 08:08:52 GMT expires: - '-1' pragma: @@ -62,15 +62,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-msi/0.2.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_basic_2000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1?api-version=2015-08-31-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_basic_2000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1","name":"ide1","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","tags":{},"properties":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"204b6c96-efb6-49f8-a5b1-37fddcda2737","clientId":"5f8655a6-e31b-4efa-930b-c6e5dfc66a3d","clientSecretUrl":"https://control-westus2.identity.azure.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_basic_2000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1/credentials?tid=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a&oid=204b6c96-efb6-49f8-a5b1-37fddcda2737&aid=5f8655a6-e31b-4efa-930b-c6e5dfc66a3d"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_basic_2000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1","name":"ide1","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","tags":{},"properties":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"d2d02a4c-8af6-4b61-a31a-05bb89385eff","clientId":"3a43fa83-2588-45f6-8efb-3872b6cbfd38","clientSecretUrl":"https://control-westus2.identity.azure.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_basic_2000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1/credentials?tid=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a&oid=d2d02a4c-8af6-4b61-a31a-05bb89385eff&aid=3a43fa83-2588-45f6-8efb-3872b6cbfd38"}}' headers: cache-control: - no-cache @@ -79,15 +79,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 08 Sep 2020 04:28:33 GMT + - Thu, 15 Oct 2020 08:09:00 GMT expires: - '-1' location: - /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_basic_2000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1 pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -111,8 +109,8 @@ interactions: ParameterSetName: - --assignee --role --scope User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 accept-language: - en-US method: GET @@ -130,7 +128,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 08 Sep 2020 04:29:18 GMT + - Thu, 15 Oct 2020 08:09:46 GMT expires: - '-1' pragma: @@ -162,15 +160,15 @@ interactions: ParameterSetName: - --assignee --role --scope User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.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%275f8655a6-e31b-4efa-930b-c6e5dfc66a3d%27%29&api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%273a43fa83-2588-45f6-8efb-3872b6cbfd38%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":"204b6c96-efb6-49f8-a5b1-37fddcda2737","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":["isExplicit=True","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_basic_2000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1"],"appDisplayName":null,"appId":"5f8655a6-e31b-4efa-930b-c6e5dfc66a3d","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"ide1","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"0ED0255F3F548150B61F79CFEA1DEE560D703F5D","endDate":"2020-12-07T04:23:00Z","keyId":"10da83c9-f229-4113-bef9-8faf44720ba9","startDate":"2020-09-08T04:23: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":["5f8655a6-e31b-4efa-930b-c6e5dfc66a3d","https://identity.azure.net/nB9mn7FfpcdZAKedGumOzaAmKMymw/TMOv/239o8YjI="],"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":"d2d02a4c-8af6-4b61-a31a-05bb89385eff","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":["isExplicit=True","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_basic_2000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1"],"appDisplayName":null,"appId":"3a43fa83-2588-45f6-8efb-3872b6cbfd38","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"ide1","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"D831CF0B1B6CC8DC9DE577F7B1099D671AE2139F","endDate":"2021-01-13T08:03:00Z","keyId":"cdfe8b29-168f-4fac-b761-a2194f297853","startDate":"2020-10-15T08:03: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":["3a43fa83-2588-45f6-8efb-3872b6cbfd38","https://identity.azure.net/MHSNxoLqhHyqRSFIoF44QondrxglANDXC/8n2aOTIK4="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' @@ -183,19 +181,19 @@ interactions: dataserviceversion: - 3.0; date: - - Tue, 08 Sep 2020 04:29:19 GMT + - Thu, 15 Oct 2020 08:09:46 GMT duration: - - '533706' + - '3628837' expires: - '-1' ocp-aad-diagnostics-server-name: - - EIRRAJb6rCEZFi1li/BiK6MuBmNP8Yw9AGocS9o1IA4= + - qbmlHRZ24ikXGPs6iC16BeVhqxmVUI3e/2/YpQxlnao= ocp-aad-session-key: - - 1dRG-39WpxjdQJ3YWTxS2UZZdvgpEnab9-ktCtc86GmQJetBYGEub6KnTZ0pjL4DtmqIStQIgtbQaQACB1td-KwYvCyFHWlrahUDm6sccvpOZWMuz3OjI1xQ6RUMbvCkYYQ9YxU3MWhlnqhGa1WEQE3-1RjkZCNnfsyb0hOCPvA.bLYGp4hoeSTVoQmWYYxtN0xW8u-2XLzJ_3Kvy1R2oFk + - KIkyXX-lZeJyRPqodLQwD6GynEQ7zvYgBPdVq5GmC8kwi7auobzfbCMs5o2LhalqLaikWm_Vf5I-cK3Y32-3LQU3adc1OiEuvyg8nNFE6k8-xcNh-DqwJoOnTcf-n6HH.LfxkHViy14NSLwb-mr3NuPVKmlZf2YAqPZI7nV2Y1wU pragma: - no-cache request-id: - - 967e32cf-99da-4606-8def-1ee8e8a342b4 + - a33b1d15-ee4a-4b03-9bc9-a1d76a5d70bc strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -211,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": "204b6c96-efb6-49f8-a5b1-37fddcda2737"}}' + "principalId": "d2d02a4c-8af6-4b61-a31a-05bb89385eff"}}' headers: Accept: - application/json @@ -230,15 +228,15 @@ interactions: ParameterSetName: - --assignee --role --scope User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_basic_2000001/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":"204b6c96-efb6-49f8-a5b1-37fddcda2737","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_basic_2000001","condition":null,"conditionVersion":null,"createdOn":"2020-09-08T04:29:19.5678441Z","updatedOn":"2020-09-08T04:29:19.5678441Z","createdBy":null,"updatedBy":"6d97229a-391f-473a-893f-f0608b592d7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_basic_2000001/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":"d2d02a4c-8af6-4b61-a31a-05bb89385eff","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_basic_2000001","condition":null,"conditionVersion":null,"createdOn":"2020-10-15T08:09:47.9386586Z","updatedOn":"2020-10-15T08:09:47.9386586Z","createdBy":null,"updatedBy":"181c08fa-7ac8-48a6-a869-342ab74566a4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_basic_2000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' headers: cache-control: - no-cache @@ -247,7 +245,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 08 Sep 2020 04:29:20 GMT + - Thu, 15 Oct 2020 08:09:49 GMT expires: - '-1' pragma: @@ -259,7 +257,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -277,24 +275,24 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_basic_2000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_basic_2000001","name":"img_tmpl_basic_2000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2020-09-08T04:28:29Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_basic_2000001","name":"img_tmpl_basic_2000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '472' + - '429' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Sep 2020 04:29:21 GMT + - Thu, 15 Oct 2020 08:09:50 GMT expires: - '-1' pragma: @@ -326,22 +324,22 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_basic_2000001/providers/Microsoft.Compute/galleries/sig1000003?api-version=2019-12-01 response: body: - string: "{\r\n \"name\": \"sig1000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_basic_2000001/providers/Microsoft.Compute/galleries/sig1000003\"\ - ,\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus2\"\ - ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \ - \ \"uniqueName\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-SIG17O2H2G\"\r\ - \n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}" + string: "{\r\n \"name\": \"sig1000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_basic_2000001/providers/Microsoft.Compute/galleries/sig1000003\",\r\n + \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus2\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-SIG1PAVMQR\"\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/westus2/capsOperations/3057c687-e37d-4e8d-8ae8-ebbb9ee1ccc5?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/capsOperations/08ac200d-7189-4c52-aecb-300347d9f9cb?api-version=2019-12-01 cache-control: - no-cache content-length: @@ -349,7 +347,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 08 Sep 2020 04:29:22 GMT + - Thu, 15 Oct 2020 08:09:57 GMT expires: - '-1' pragma: @@ -364,7 +362,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' status: code: 201 message: Created @@ -382,15 +380,15 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/westus2/capsOperations/3057c687-e37d-4e8d-8ae8-ebbb9ee1ccc5?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/capsOperations/08ac200d-7189-4c52-aecb-300347d9f9cb?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-08T04:29:22.3980412+00:00\",\r\n \"\ - endTime\": \"2020-09-08T04:29:22.8199001+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"3057c687-e37d-4e8d-8ae8-ebbb9ee1ccc5\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:09:56.4989536+00:00\",\r\n \"endTime\": + \"2020-10-15T08:09:56.8270713+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"08ac200d-7189-4c52-aecb-300347d9f9cb\"\r\n}" headers: cache-control: - no-cache @@ -399,7 +397,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 08 Sep 2020 04:29:53 GMT + - Thu, 15 Oct 2020 08:10:28 GMT expires: - '-1' pragma: @@ -416,7 +414,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;2398 + - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4198 status: code: 200 message: OK @@ -434,17 +432,17 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/resourceGroups/img_tmpl_basic_2000001/providers/Microsoft.Compute/galleries/sig1000003?api-version=2019-12-01 response: body: - string: "{\r\n \"name\": \"sig1000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_basic_2000001/providers/Microsoft.Compute/galleries/sig1000003\"\ - ,\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus2\"\ - ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \ - \ \"uniqueName\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-SIG17O2H2G\"\r\ - \n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + string: "{\r\n \"name\": \"sig1000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_basic_2000001/providers/Microsoft.Compute/galleries/sig1000003\",\r\n + \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus2\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-SIG1PAVMQR\"\r\n },\r\n \"provisioningState\": + \"Succeeded\"\r\n }\r\n}" headers: cache-control: - no-cache @@ -453,7 +451,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 08 Sep 2020 04:29:53 GMT + - Thu, 15 Oct 2020 08:10:28 GMT expires: - '-1' pragma: @@ -488,24 +486,24 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_basic_2000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_basic_2000001","name":"img_tmpl_basic_2000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2020-09-08T04:28:29Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_basic_2000001","name":"img_tmpl_basic_2000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '472' + - '429' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Sep 2020 04:29:53 GMT + - Thu, 15 Oct 2020 08:10:29 GMT expires: - '-1' pragma: @@ -539,24 +537,24 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_basic_2000001/providers/Microsoft.Compute/galleries/sig1000003/images/image1?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_basic_2000001/providers/Microsoft.Compute/galleries/sig1000003/images/image1?api-version=2020-09-30 response: body: - string: "{\r\n \"name\": \"image1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_basic_2000001/providers/Microsoft.Compute/galleries/sig1000003/images/image1\"\ - ,\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\"\ - : \"westus2\",\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}" + string: "{\r\n \"name\": \"image1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_basic_2000001/providers/Microsoft.Compute/galleries/sig1000003/images/image1\",\r\n + \ \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"westus2\",\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/westus2/capsOperations/6ce4c019-a9ae-4f98-bd72-f055949b0101?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/capsOperations/ed26c658-f976-4388-804f-e128edc4a51a?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -564,7 +562,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 08 Sep 2020 04:29:54 GMT + - Thu, 15 Oct 2020 08:10:36 GMT expires: - '-1' pragma: @@ -579,7 +577,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;749 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 201 message: Created @@ -597,15 +595,15 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/westus2/capsOperations/6ce4c019-a9ae-4f98-bd72-f055949b0101?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/capsOperations/ed26c658-f976-4388-804f-e128edc4a51a?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-09-08T04:29:54.7576472+00:00\",\r\n \"\ - endTime\": \"2020-09-08T04:29:55.0076168+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"6ce4c019-a9ae-4f98-bd72-f055949b0101\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:10:36.2490893+00:00\",\r\n \"endTime\": + \"2020-10-15T08:10:36.3740779+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"ed26c658-f976-4388-804f-e128edc4a51a\"\r\n}" headers: cache-control: - no-cache @@ -614,7 +612,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 08 Sep 2020 04:30:25 GMT + - Thu, 15 Oct 2020 08:11:08 GMT expires: - '-1' pragma: @@ -631,7 +629,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;2396 + - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4196 status: code: 200 message: OK @@ -649,19 +647,19 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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/resourceGroups/img_tmpl_basic_2000001/providers/Microsoft.Compute/galleries/sig1000003/images/image1?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_basic_2000001/providers/Microsoft.Compute/galleries/sig1000003/images/image1?api-version=2020-09-30 response: body: - string: "{\r\n \"name\": \"image1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_basic_2000001/providers/Microsoft.Compute/galleries/sig1000003/images/image1\"\ - ,\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\"\ - : \"westus2\",\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}" + string: "{\r\n \"name\": \"image1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_basic_2000001/providers/Microsoft.Compute/galleries/sig1000003/images/image1\",\r\n + \ \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"westus2\",\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 @@ -670,7 +668,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 08 Sep 2020 04:30:25 GMT + - Thu, 15 Oct 2020 08:11:08 GMT expires: - '-1' pragma: @@ -705,24 +703,24 @@ interactions: ParameterSetName: - -n -g --scripts --image-source --shared-image-destinations --identity User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_basic_2000001?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_basic_2000001","name":"img_tmpl_basic_2000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2020-09-08T04:28:29Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_basic_2000001","name":"img_tmpl_basic_2000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '472' + - '429' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Sep 2020 04:30:25 GMT + - Thu, 15 Oct 2020 08:11:10 GMT expires: - '-1' pragma: @@ -750,8 +748,8 @@ interactions: ParameterSetName: - -n -g --scripts --image-source --shared-image-destinations --identity User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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 accept-language: - en-US method: GET @@ -847,7 +845,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 08 Sep 2020 04:30:26 GMT + - Thu, 15 Oct 2020 08:11:11 GMT expires: - '-1' pragma: @@ -887,33 +885,32 @@ interactions: ParameterSetName: - -n -g --scripts --image-source --shared-image-destinations --identity User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_basic_2000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template01?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 \"type\": \"Shell\"\n }\n ],\n \"distribute\": [\n {\n \"\ - artifactTags\": {},\n \"excludeFromLatest\": false,\n \"galleryImageId\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_basic_2000001/providers/Microsoft.Compute/galleries/sig1000003/images/image1\"\ - ,\n \"replicationRegions\": [\n \"westus\",\n \"eastus\"\n ],\n\ - \ \"runOutputName\": \"image1\",\n \"type\": \"SharedImage\"\n }\n\ - \ ],\n \"provisioningState\": \"Creating\",\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_basic_2000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1\"\ - : {}\n }\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_basic_2000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template01\"\ - ,\n \"name\": \"template01\",\n \"type\": \"Microsoft.VirtualMachineImages/imageTemplates\"\ - ,\n \"location\": \"westus2\",\n \"tags\": {}\n}" + 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 + \ \"type\": \"Shell\"\n }\n ],\n \"distribute\": [\n {\n \"artifactTags\": + {},\n \"excludeFromLatest\": false,\n \"galleryImageId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_basic_2000001/providers/Microsoft.Compute/galleries/sig1000003/images/image1\",\n + \ \"replicationRegions\": [\n \"westus\",\n \"eastus\"\n ],\n + \ \"runOutputName\": \"image1\",\n \"type\": \"SharedImage\"\n }\n + \ ],\n \"provisioningState\": \"Creating\",\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_basic_2000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1\": + {}\n }\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_basic_2000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template01\",\n + \"name\": \"template01\",\n \"type\": \"Microsoft.VirtualMachineImages/imageTemplates\",\n + \"location\": \"westus2\",\n \"tags\": {}\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus2/operations/fde60a05-624b-4e4c-8682-62429c0f606c?api-version=2020-02-14 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus2/operations/93c14dc5-4fb8-4dd0-90b5-19cef012752b?api-version=2020-02-14 cache-control: - no-cache content-length: @@ -921,7 +918,7 @@ interactions: content-type: - application/json date: - - Tue, 08 Sep 2020 04:30:30 GMT + - Thu, 15 Oct 2020 08:11:23 GMT expires: - '-1' pragma: @@ -933,7 +930,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -951,72 +948,24 @@ interactions: ParameterSetName: - -n -g --scripts --image-source --shared-image-destinations --identity User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus2/operations/fde60a05-624b-4e4c-8682-62429c0f606c?api-version=2020-02-14 - response: - body: - string: "{\n \"name\": \"FDE60A05-624B-4E4C-8682-62429C0F606C\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-08T04:30:30.1065055Z\"\n}" - headers: - cache-control: - - no-cache - content-length: - - '122' - content-type: - - application/json - date: - - Tue, 08 Sep 2020 04:31:00 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 --scripts --image-source --shared-image-destinations --identity - User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus2/operations/fde60a05-624b-4e4c-8682-62429c0f606c?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus2/operations/93c14dc5-4fb8-4dd0-90b5-19cef012752b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"FDE60A05-624B-4E4C-8682-62429C0F606C\",\n \"status\"\ - : \"Succeeded\",\n \"startTime\": \"2020-09-08T04:30:30.1065055Z\",\n \"endTime\"\ - : \"2020-09-08T04:31:04.3887011Z\"\n}" + string: "{\n \"name\": \"93C14DC5-4FB8-4DD0-90B5-19CEF012752B\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2020-10-15T08:11:22.704567Z\",\n \"endTime\": + \"2020-10-15T08:11:54.1947351Z\"\n}" headers: cache-control: - no-cache content-length: - - '165' + - '164' content-type: - application/json date: - - Tue, 08 Sep 2020 04:31:31 GMT + - Thu, 15 Oct 2020 08:11:54 GMT expires: - '-1' pragma: @@ -1048,31 +997,29 @@ interactions: ParameterSetName: - -n -g --scripts --image-source --shared-image-destinations --identity User-Agent: - - python/3.8.5 (Linux-5.4.0-1023-azure-x86_64-with-glibc2.27) msrest/0.6.18 - msrest_azure/0.6.3 azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.11.1 + - 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.13.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_basic_2000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template01?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_basic_2000001/providers/Microsoft.Compute/galleries/sig1000003/images/image1\"\ - ,\n \"replicationRegions\": [\n \"westus\",\n \"eastus\"\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_basic_2000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1\"\ - : {\n \"principalId\": \"204b6c96-efb6-49f8-a5b1-37fddcda2737\",\n \"\ - clientId\": \"5f8655a6-e31b-4efa-930b-c6e5dfc66a3d\"\n }\n }\n },\n \"\ - id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_basic_2000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template01\"\ - ,\n \"name\": \"template01\",\n \"type\": \"Microsoft.VirtualMachineImages/imageTemplates\"\ - ,\n \"location\": \"westus2\",\n \"tags\": {}\n}" + 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_basic_2000001/providers/Microsoft.Compute/galleries/sig1000003/images/image1\",\n + \ \"replicationRegions\": [\n \"westus\",\n \"eastus\"\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_basic_2000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1\": + {\n \"principalId\": \"d2d02a4c-8af6-4b61-a31a-05bb89385eff\",\n \"clientId\": + \"3a43fa83-2588-45f6-8efb-3872b6cbfd38\"\n }\n }\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_basic_2000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template01\",\n + \"name\": \"template01\",\n \"type\": \"Microsoft.VirtualMachineImages/imageTemplates\",\n + \"location\": \"westus2\",\n \"tags\": {}\n}" headers: cache-control: - no-cache @@ -1081,7 +1028,7 @@ interactions: content-type: - application/json date: - - Tue, 08 Sep 2020 04:31:31 GMT + - Thu, 15 Oct 2020 08:11:55 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 84397566436..72af17660ad 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.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.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-06-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-09-03T03:20:06Z"},"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":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:20:07 GMT + - Thu, 15 Oct 2020 08:08:53 GMT expires: - '-1' pragma: @@ -63,7 +63,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT @@ -73,11 +73,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_2UF5OC4LWZPX\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_NTGGZOYNTDJN\"\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/1e5889f2-e701-4c55-aaac-ffffc38a2921?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/c0dd40fb-9b06-4554-80f5-c056d2f0054f?api-version=2019-12-01 cache-control: - no-cache content-length: @@ -85,7 +85,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:20:15 GMT + - Thu, 15 Oct 2020 08:09:00 GMT expires: - '-1' pragma: @@ -100,7 +100,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -119,14 +119,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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/capsOperations/1e5889f2-e701-4c55-aaac-ffffc38a2921?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/c0dd40fb-9b06-4554-80f5-c056d2f0054f?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-03T03:20:14.2716027+00:00\",\r\n \"endTime\": - \"2020-09-03T03:20:14.5841186+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"1e5889f2-e701-4c55-aaac-ffffc38a2921\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:08:59.2789411+00:00\",\r\n \"endTime\": + \"2020-10-15T08:08:59.5445967+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"c0dd40fb-9b06-4554-80f5-c056d2f0054f\"\r\n}" headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:20:46 GMT + - Thu, 15 Oct 2020 08:09:31 GMT expires: - '-1' pragma: @@ -152,7 +152,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;2398 + - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4198 status: code: 200 message: OK @@ -171,7 +171,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01 response: @@ -179,7 +179,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_2UF5OC4LWZPX\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_NTGGZOYNTDJN\"\r\n },\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -189,7 +189,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:20:47 GMT + - Thu, 15 Oct 2020 08:09:31 GMT expires: - '-1' pragma: @@ -225,14 +225,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.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.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-06-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-09-03T03:20:06Z"},"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":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -241,7 +241,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:20:48 GMT + - Thu, 15 Oct 2020 08:09:32 GMT expires: - '-1' pragma: @@ -276,11 +276,11 @@ 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.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.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.Compute/galleries/gallery_000002/images/image1?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?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"image1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1\",\r\n @@ -292,7 +292,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/29ddae66-b2ff-4de2-b8d2-375a47ec5c86?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/4fd551d6-0974-45e2-9354-1d4da2e74fa1?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -300,7 +300,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:20:54 GMT + - Thu, 15 Oct 2020 08:09:39 GMT expires: - '-1' pragma: @@ -315,7 +315,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;749 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 201 message: Created @@ -334,23 +334,23 @@ 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.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/capsOperations/29ddae66-b2ff-4de2-b8d2-375a47ec5c86?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/4fd551d6-0974-45e2-9354-1d4da2e74fa1?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-09-03T03:20:54.6328276+00:00\",\r\n \"endTime\": - \"2020-09-03T03:20:54.7578511+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"29ddae66-b2ff-4de2-b8d2-375a47ec5c86\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:09:39.1072774+00:00\",\r\n \"endTime\": + \"2020-10-15T08:09:39.326021+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"4fd551d6-0974-45e2-9354-1d4da2e74fa1\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:21:26 GMT + - Thu, 15 Oct 2020 08:10:10 GMT expires: - '-1' pragma: @@ -367,7 +367,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;2394 + - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4196 status: code: 200 message: OK @@ -386,9 +386,9 @@ 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.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?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?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"image1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1\",\r\n @@ -406,7 +406,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:21:26 GMT + - Thu, 15 Oct 2020 08:10:11 GMT expires: - '-1' pragma: @@ -423,7 +423,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 @@ -442,14 +442,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.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.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-06-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-09-03T03:20:06Z"},"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":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -458,7 +458,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:21:27 GMT + - Thu, 15 Oct 2020 08:10:11 GMT expires: - '-1' pragma: @@ -537,13 +537,13 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Thu, 03 Sep 2020 03:21:28 GMT + - Thu, 15 Oct 2020 08:10:12 GMT etag: - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" expires: - - Thu, 03 Sep 2020 03:26:28 GMT + - Thu, 15 Oct 2020 08:15:12 GMT source-age: - - '0' + - '90' strict-transport-security: - max-age=31536000 vary: @@ -552,21 +552,21 @@ interactions: - 1.1 varnish (Varnish/6.0) - 1.1 varnish x-cache: - - HIT, HIT + - HFM, HIT x-cache-hits: - - 1, 1 + - 0, 1 x-content-type-options: - nosniff x-fastly-request-id: - - 10a56a6fcd260e4f58a585e39cca3d70f37b105b + - 83653ba3d252481867ebe2989f3d7d92b3f30826 x-frame-options: - deny x-github-request-id: - - E10E:43C9:1AF8DA:1DC618:5F505049 + - 20FA:0B5E:E063E:EFC97:5F880389 x-served-by: - - cache-sin18033-SIN + - cache-sin18034-SIN x-timer: - - S1599103288.733628,VS0,VE329 + - S1602749413.589765,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -587,7 +587,7 @@ 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.18 msrest_azure/0.6.3 - azure-mgmt-network/11.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -603,7 +603,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:21:28 GMT + - Thu, 15 Oct 2020 08:10:12 GMT expires: - '-1' pragma: @@ -662,25 +662,25 @@ 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.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.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-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_ORzhgAz21HaNJLI4jfEx3ql12XjzobvE","name":"vm_deploy_ORzhgAz21HaNJLI4jfEx3ql12XjzobvE","type":"Microsoft.Resources/deployments","properties":{"templateHash":"10170083421195762718","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-09-03T03:21:32.3370187Z","duration":"PT2.3580579S","correlationId":"eedbcab8-6f68-4deb-8f29-b44e6bbd1e75","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_83rfETvZponhc7Tp24YpgmoAfhnSUOP9","name":"vm_deploy_83rfETvZponhc7Tp24YpgmoAfhnSUOP9","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7812367357981538994","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-10-15T08:10:17.3786695Z","duration":"PT2.7789489S","correlationId":"80ca2e97-7dfa-4c93-b587-9ad8c5d8b5cd","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_ORzhgAz21HaNJLI4jfEx3ql12XjzobvE/operationStatuses/08586025035954986667?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_83rfETvZponhc7Tp24YpgmoAfhnSUOP9/operationStatuses/08585988574708779210?api-version=2020-06-01 cache-control: - no-cache content-length: - - '2782' + - '2781' content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:21:33 GMT + - Thu, 15 Oct 2020 08:10:18 GMT expires: - '-1' pragma: @@ -690,7 +690,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' status: code: 201 message: Created @@ -709,9 +709,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.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.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/08586025035954986667?api-version=2020-06-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/08585988574708779210?api-version=2020-06-01 response: body: string: '{"status":"Running"}' @@ -723,7 +723,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:22:03 GMT + - Thu, 15 Oct 2020 08:10:49 GMT expires: - '-1' pragma: @@ -752,9 +752,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.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.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/08586025035954986667?api-version=2020-06-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/08585988574708779210?api-version=2020-06-01 response: body: string: '{"status":"Succeeded"}' @@ -766,7 +766,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:22:33 GMT + - Thu, 15 Oct 2020 08:11:19 GMT expires: - '-1' pragma: @@ -795,21 +795,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.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.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-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_ORzhgAz21HaNJLI4jfEx3ql12XjzobvE","name":"vm_deploy_ORzhgAz21HaNJLI4jfEx3ql12XjzobvE","type":"Microsoft.Resources/deployments","properties":{"templateHash":"10170083421195762718","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-09-03T03:22:21.4318107Z","duration":"PT51.4528499S","correlationId":"eedbcab8-6f68-4deb-8f29-b44e6bbd1e75","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_83rfETvZponhc7Tp24YpgmoAfhnSUOP9","name":"vm_deploy_83rfETvZponhc7Tp24YpgmoAfhnSUOP9","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7812367357981538994","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-10-15T08:10:55.7118038Z","duration":"PT41.1120832S","correlationId":"80ca2e97-7dfa-4c93-b587-9ad8c5d8b5cd","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: - - Thu, 03 Sep 2020 03:22:34 GMT + - Thu, 15 Oct 2020 08:11:20 GMT expires: - '-1' pragma: @@ -838,7 +838,7 @@ 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.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -847,16 +847,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\": \"7f8bdf18-5c87-46e7-8ee2-bf7cb9aeae40\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e370dade-5de1-403b-ba61-f95638fc0b16\",\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.202009010\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"vm1_disk1_8e7903da05f04af6add363bf63716aad\",\r\n + \"18.04.202010140\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"vm1_disk1_e30d9749491a4edd8ebe5cb108a241eb\",\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_IM53OGKDMW5HJDG5NO2JRXN6M3FPSZRFGRFYPGHFIAK/providers/Microsoft.Compute/disks/vm1_disk1_8e7903da05f04af6add363bf63716aad\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_TEST_SPECIALIZED_IMAGE_5QR45RXTB2TX6RNGIOC32HUIZSLEHUVW3NWJ4AHZ33W/providers/Microsoft.Compute/disks/vm1_disk1_e30d9749491a4edd8ebe5cb108a241eb\"\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 @@ -867,19 +867,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.49.2\",\r\n \"statuses\": + \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.52\",\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-09-03T03:22:32+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_disk1_8e7903da05f04af6add363bf63716aad\",\r\n + \"2020-10-15T08:11:17+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_disk1_e30d9749491a4edd8ebe5cb108a241eb\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-09-03T03:22:06.3160128+00:00\"\r\n + succeeded\",\r\n \"time\": \"2020-10-15T08:10:44.1020019+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-09-03T03:22:17.9254515+00:00\"\r\n + \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2020-10-15T08:10:54.0707886+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}" @@ -887,11 +887,11 @@ interactions: cache-control: - no-cache content-length: - - '3283' + - '3251' content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:22:35 GMT + - Thu, 15 Oct 2020 08:11:21 GMT expires: - '-1' pragma: @@ -908,7 +908,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3983,Microsoft.Compute/LowCostGet30Min;31983 + - Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31994 status: code: 200 message: OK @@ -927,7 +927,7 @@ 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.18 msrest_azure/0.6.3 - azure-mgmt-network/11.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -935,12 +935,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/\\\"c8f0214e-ba39-4247-8d63-0f48ab21ec05\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"ba231ae4-fcbd-430c-aeed-ba09c13aef55\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"284a0cfb-8a15-4f66-8763-fb04a94f6374\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"c6108af5-9beb-4bda-80ea-22bea47e51f4\",\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/\\\"c8f0214e-ba39-4247-8d63-0f48ab21ec05\\\"\",\r\n + \ \"etag\": \"W/\\\"ba231ae4-fcbd-430c-aeed-ba09c13aef55\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -949,8 +949,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\": - \"rrglnpgtgtoexaszu3wdzr41eb.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-22-48-04-D7-7B\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"gnwxen50ccvutngjcxfpvxztmf.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-38-35-CF\",\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\": @@ -964,9 +964,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:22:36 GMT + - Thu, 15 Oct 2020 08:11:21 GMT etag: - - W/"c8f0214e-ba39-4247-8d63-0f48ab21ec05" + - W/"ba231ae4-fcbd-430c-aeed-ba09c13aef55" expires: - '-1' pragma: @@ -983,7 +983,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7c17b670-ecfb-4051-97a8-a5ddb3fe3ab4 + - 5040f7cc-346f-44c9-bd49-3ff02c885206 status: code: 200 message: OK @@ -1002,7 +1002,7 @@ 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.18 msrest_azure/0.6.3 - azure-mgmt-network/11.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -1010,10 +1010,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/\\\"367bb61f-03e2-4ffd-89e7-eb29896f0075\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"e444df06-5dbd-4c7d-bf36-b6956cc2f997\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"b55397d2-d8e7-4034-ad74-1442a136b746\",\r\n - \ \"ipAddress\": \"40.78.122.93\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"7d8545e7-404c-4076-8864-03f713410e71\",\r\n + \ \"ipAddress\": \"13.91.131.166\",\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 @@ -1022,13 +1022,13 @@ interactions: cache-control: - no-cache content-length: - - '996' + - '997' content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:22:37 GMT + - Thu, 15 Oct 2020 08:11:21 GMT etag: - - W/"367bb61f-03e2-4ffd-89e7-eb29896f0075" + - W/"e444df06-5dbd-4c7d-bf36-b6956cc2f997" expires: - '-1' pragma: @@ -1045,7 +1045,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a19307b7-e319-482a-a48e-21f81ce6a58e + - 5c43d943-92bd-460c-8f47-ff53d6a842a5 status: code: 200 message: OK @@ -1064,7 +1064,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -1073,16 +1073,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\": \"7f8bdf18-5c87-46e7-8ee2-bf7cb9aeae40\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e370dade-5de1-403b-ba61-f95638fc0b16\",\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.202009010\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"vm1_disk1_8e7903da05f04af6add363bf63716aad\",\r\n + \"18.04.202010140\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"vm1_disk1_e30d9749491a4edd8ebe5cb108a241eb\",\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_IM53OGKDMW5HJDG5NO2JRXN6M3FPSZRFGRFYPGHFIAK/providers/Microsoft.Compute/disks/vm1_disk1_8e7903da05f04af6add363bf63716aad\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_TEST_SPECIALIZED_IMAGE_5QR45RXTB2TX6RNGIOC32HUIZSLEHUVW3NWJ4AHZ33W/providers/Microsoft.Compute/disks/vm1_disk1_e30d9749491a4edd8ebe5cb108a241eb\"\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 @@ -1100,7 +1100,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:22:36 GMT + - Thu, 15 Oct 2020 08:11:23 GMT expires: - '-1' pragma: @@ -1117,7 +1117,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3982,Microsoft.Compute/LowCostGet30Min;31982 + - Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31993 status: code: 200 message: OK @@ -1136,14 +1136,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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.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/providers/Microsoft.Compute/snapshots/vm1_disk1_8e7903da05f04af6add363bf63716aad?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_e30d9749491a4edd8ebe5cb108a241eb?api-version=2020-05-01 response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/vm1_disk1_8e7903da05f04af6add363bf63716aad'' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/vm1_disk1_e30d9749491a4edd8ebe5cb108a241eb'' under resource group ''cli_test_test_specialized_image_000001'' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: @@ -1154,7 +1154,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:22:37 GMT + - Thu, 15 Oct 2020 08:11:22 GMT expires: - '-1' pragma: @@ -1183,36 +1183,36 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.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/providers/Microsoft.Compute/disks/vm1_disk1_8e7903da05f04af6add363bf63716aad?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_e30d9749491a4edd8ebe5cb108a241eb?api-version=2020-06-30 response: body: - string: "{\r\n \"name\": \"vm1_disk1_8e7903da05f04af6add363bf63716aad\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_8e7903da05f04af6add363bf63716aad\",\r\n + string: "{\r\n \"name\": \"vm1_disk1_e30d9749491a4edd8ebe5cb108a241eb\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_e30d9749491a4edd8ebe5cb108a241eb\",\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 \"hyperVGeneration\": - \"V1\",\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.202009010\"\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.202010140\"\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-09-03T03:22:04.9034239+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-10-15T08:10:42.6736884+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"8e7903da-05f0-4af6-add3-63bf63716aad\",\r\n - \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}" + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"e30d9749-491a-4edd-8ebe-5cb108a241eb\",\r\n + \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1487' + - '1437' content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:22:38 GMT + - Thu, 15 Oct 2020 08:11:23 GMT expires: - '-1' pragma: @@ -1229,7 +1229,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4917,Microsoft.Compute/LowCostGet30Min;39911 + - Microsoft.Compute/LowCostGet3Min;4983,Microsoft.Compute/LowCostGet30Min;39970 status: code: 200 message: OK @@ -1248,14 +1248,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.11.1 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.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-06-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-09-03T03:20:06Z"},"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":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1264,7 +1264,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:22:39 GMT + - Thu, 15 Oct 2020 08:11:23 GMT expires: - '-1' pragma: @@ -1281,7 +1281,7 @@ interactions: - request: body: '{"location": "westus", "tags": {}, "sku": {"name": "Standard_LRS"}, "properties": {"hyperVGeneration": "V1", "creationData": {"createOption": "Copy", "sourceResourceId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_8e7903da05f04af6add363bf63716aad"}}}' + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_e30d9749491a4edd8ebe5cb108a241eb"}}}' headers: Accept: - application/json @@ -1299,7 +1299,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT @@ -1309,13 +1309,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 \"hyperVGeneration\": \"V1\",\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_8e7903da05f04af6add363bf63716aad\",\r\n - \ \"sourceUniqueId\": \"8e7903da-05f0-4af6-add3-63bf63716aad\"\r\n },\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_e30d9749491a4edd8ebe5cb108a241eb\",\r\n + \ \"sourceUniqueId\": \"e30d9749-491a-4edd-8ebe-5cb108a241eb\"\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/85ab909f-0f62-448c-8778-b68898aa2f38?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/01f346d9-3d28-496c-9051-8e1e4ec3148e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1323,11 +1323,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:22:44 GMT + - Thu, 15 Oct 2020 08:11:28 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/85ab909f-0f62-448c-8778-b68898aa2f38?monitor=true&api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/01f346d9-3d28-496c-9051-8e1e4ec3148e?monitor=true&api-version=2020-05-01 pragma: - no-cache server: @@ -1338,9 +1338,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;993,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7993 + - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7999 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1196' status: code: 202 message: Accepted @@ -1359,36 +1359,36 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/DiskOperations/85ab909f-0f62-448c-8778-b68898aa2f38?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/01f346d9-3d28-496c-9051-8e1e4ec3148e?api-version=2020-05-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-03T03:22:44.1534351+00:00\",\r\n \"endTime\": - \"2020-09-03T03:22:44.700303+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2020-10-15T08:11:29.0025075+00:00\",\r\n \"endTime\": + \"2020-10-15T08:11:29.7212284+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 \ \"hyperVGeneration\": \"V1\",\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_8e7903da05f04af6add363bf63716aad\",\r\n - \ \"sourceUniqueId\": \"8e7903da-05f0-4af6-add3-63bf63716aad\"\r\n },\r\n + \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_e30d9749491a4edd8ebe5cb108a241eb\",\r\n + \ \"sourceUniqueId\": \"e30d9749-491a-4edd-8ebe-5cb108a241eb\"\r\n },\r\n \ \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-09-03T03:22:44.1534351+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-10-15T08:11:29.0181364+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"5ca751df-b525-4481-9967-0cc04c3252bb\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"6ea123ee-88d2-4d03-aef8-32fe441288ba\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"85ab909f-0f62-448c-8778-b68898aa2f38\"\r\n}" + \"01f346d9-3d28-496c-9051-8e1e4ec3148e\"\r\n}" headers: cache-control: - no-cache content-length: - - '1436' + - '1437' content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:22:47 GMT + - Thu, 15 Oct 2020 08:11:30 GMT expires: - '-1' pragma: @@ -1405,7 +1405,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49945,Microsoft.Compute/GetOperation30Min;399937 + - Microsoft.Compute/GetOperation3Min;49986,Microsoft.Compute/GetOperation30Min;399986 status: code: 200 message: OK @@ -1424,7 +1424,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 response: @@ -1434,12 +1434,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 \ \"hyperVGeneration\": \"V1\",\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_8e7903da05f04af6add363bf63716aad\",\r\n - \ \"sourceUniqueId\": \"8e7903da-05f0-4af6-add3-63bf63716aad\"\r\n },\r\n + \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_e30d9749491a4edd8ebe5cb108a241eb\",\r\n + \ \"sourceUniqueId\": \"e30d9749-491a-4edd-8ebe-5cb108a241eb\"\r\n },\r\n \ \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-09-03T03:22:44.1534351+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-10-15T08:11:29.0181364+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"5ca751df-b525-4481-9967-0cc04c3252bb\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"6ea123ee-88d2-4d03-aef8-32fe441288ba\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -1449,7 +1449,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:22:48 GMT + - Thu, 15 Oct 2020 08:11:31 GMT expires: - '-1' pragma: @@ -1466,7 +1466,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4914,Microsoft.Compute/LowCostGet30Min;39908 + - Microsoft.Compute/LowCostGet3Min;4983,Microsoft.Compute/LowCostGet30Min;39968 status: code: 200 message: OK @@ -1485,14 +1485,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.11.1 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.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-06-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-09-03T03:20:06Z"},"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":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1501,7 +1501,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:22:48 GMT + - Thu, 15 Oct 2020 08:11:32 GMT expires: - '-1' pragma: @@ -1536,7 +1536,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT @@ -1549,7 +1549,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-09-03T03:22:54.2009109+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-10-15T08:11:37.5609493+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 @@ -1557,7 +1557,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/cdff817d-b0c9-4101-8a09-3c65adb7daa8?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/c3c192c7-d1a3-4fdf-95eb-c1055a17753f?api-version=2019-12-01 cache-control: - no-cache content-length: @@ -1565,7 +1565,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:22:54 GMT + - Thu, 15 Oct 2020 08:11:39 GMT expires: - '-1' pragma: @@ -1578,9 +1578,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;373,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1198 + - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1199 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -1599,13 +1599,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/capsOperations/cdff817d-b0c9-4101-8a09-3c65adb7daa8?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/c3c192c7-d1a3-4fdf-95eb-c1055a17753f?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-03T03:22:54.2009109+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"cdff817d-b0c9-4101-8a09-3c65adb7daa8\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:11:37.4672012+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"c3c192c7-d1a3-4fdf-95eb-c1055a17753f\"\r\n}" headers: cache-control: - no-cache @@ -1614,7 +1614,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:23:25 GMT + - Thu, 15 Oct 2020 08:12:09 GMT expires: - '-1' pragma: @@ -1631,7 +1631,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;2386 + - Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;4185 status: code: 200 message: OK @@ -1650,13 +1650,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/capsOperations/cdff817d-b0c9-4101-8a09-3c65adb7daa8?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/c3c192c7-d1a3-4fdf-95eb-c1055a17753f?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-03T03:22:54.2009109+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"cdff817d-b0c9-4101-8a09-3c65adb7daa8\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:11:37.4672012+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"c3c192c7-d1a3-4fdf-95eb-c1055a17753f\"\r\n}" headers: cache-control: - no-cache @@ -1665,7 +1665,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:23:56 GMT + - Thu, 15 Oct 2020 08:12:39 GMT expires: - '-1' pragma: @@ -1682,7 +1682,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1182,Microsoft.Compute/GetOperationStatus30Min;2380 + - Microsoft.Compute/GetOperationStatus3Min;1182,Microsoft.Compute/GetOperationStatus30Min;4179 status: code: 200 message: OK @@ -1701,13 +1701,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/capsOperations/cdff817d-b0c9-4101-8a09-3c65adb7daa8?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/c3c192c7-d1a3-4fdf-95eb-c1055a17753f?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-03T03:22:54.2009109+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"cdff817d-b0c9-4101-8a09-3c65adb7daa8\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:11:37.4672012+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"c3c192c7-d1a3-4fdf-95eb-c1055a17753f\"\r\n}" headers: cache-control: - no-cache @@ -1716,7 +1716,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:24:26 GMT + - Thu, 15 Oct 2020 08:13:10 GMT expires: - '-1' pragma: @@ -1733,7 +1733,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1180,Microsoft.Compute/GetOperationStatus30Min;2374 + - Microsoft.Compute/GetOperationStatus3Min;1179,Microsoft.Compute/GetOperationStatus30Min;4173 status: code: 200 message: OK @@ -1752,13 +1752,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/capsOperations/cdff817d-b0c9-4101-8a09-3c65adb7daa8?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/c3c192c7-d1a3-4fdf-95eb-c1055a17753f?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-03T03:22:54.2009109+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"cdff817d-b0c9-4101-8a09-3c65adb7daa8\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:11:37.4672012+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"c3c192c7-d1a3-4fdf-95eb-c1055a17753f\"\r\n}" headers: cache-control: - no-cache @@ -1767,7 +1767,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:24:56 GMT + - Thu, 15 Oct 2020 08:13:41 GMT expires: - '-1' pragma: @@ -1784,7 +1784,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1175,Microsoft.Compute/GetOperationStatus30Min;2368 + - Microsoft.Compute/GetOperationStatus3Min;1176,Microsoft.Compute/GetOperationStatus30Min;4167 status: code: 200 message: OK @@ -1803,13 +1803,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/capsOperations/cdff817d-b0c9-4101-8a09-3c65adb7daa8?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/c3c192c7-d1a3-4fdf-95eb-c1055a17753f?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-03T03:22:54.2009109+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"cdff817d-b0c9-4101-8a09-3c65adb7daa8\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:11:37.4672012+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"c3c192c7-d1a3-4fdf-95eb-c1055a17753f\"\r\n}" headers: cache-control: - no-cache @@ -1818,7 +1818,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:25:26 GMT + - Thu, 15 Oct 2020 08:14:11 GMT expires: - '-1' pragma: @@ -1835,7 +1835,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1170,Microsoft.Compute/GetOperationStatus30Min;2362 + - Microsoft.Compute/GetOperationStatus3Min;1174,Microsoft.Compute/GetOperationStatus30Min;4162 status: code: 200 message: OK @@ -1854,13 +1854,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/capsOperations/cdff817d-b0c9-4101-8a09-3c65adb7daa8?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/c3c192c7-d1a3-4fdf-95eb-c1055a17753f?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-03T03:22:54.2009109+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"cdff817d-b0c9-4101-8a09-3c65adb7daa8\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:11:37.4672012+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"c3c192c7-d1a3-4fdf-95eb-c1055a17753f\"\r\n}" headers: cache-control: - no-cache @@ -1869,7 +1869,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:25:57 GMT + - Thu, 15 Oct 2020 08:14:41 GMT expires: - '-1' pragma: @@ -1886,7 +1886,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1168,Microsoft.Compute/GetOperationStatus30Min;2357 + - Microsoft.Compute/GetOperationStatus3Min;1169,Microsoft.Compute/GetOperationStatus30Min;4156 status: code: 200 message: OK @@ -1905,13 +1905,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/capsOperations/cdff817d-b0c9-4101-8a09-3c65adb7daa8?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/c3c192c7-d1a3-4fdf-95eb-c1055a17753f?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-03T03:22:54.2009109+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"cdff817d-b0c9-4101-8a09-3c65adb7daa8\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:11:37.4672012+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"c3c192c7-d1a3-4fdf-95eb-c1055a17753f\"\r\n}" headers: cache-control: - no-cache @@ -1920,7 +1920,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:26:27 GMT + - Thu, 15 Oct 2020 08:15:11 GMT expires: - '-1' pragma: @@ -1937,7 +1937,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1167,Microsoft.Compute/GetOperationStatus30Min;2351 + - Microsoft.Compute/GetOperationStatus3Min;1170,Microsoft.Compute/GetOperationStatus30Min;4151 status: code: 200 message: OK @@ -1956,13 +1956,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/capsOperations/cdff817d-b0c9-4101-8a09-3c65adb7daa8?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/c3c192c7-d1a3-4fdf-95eb-c1055a17753f?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-03T03:22:54.2009109+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"cdff817d-b0c9-4101-8a09-3c65adb7daa8\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:11:37.4672012+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"c3c192c7-d1a3-4fdf-95eb-c1055a17753f\"\r\n}" headers: cache-control: - no-cache @@ -1971,7 +1971,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:26:58 GMT + - Thu, 15 Oct 2020 08:15:41 GMT expires: - '-1' pragma: @@ -1988,7 +1988,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1168,Microsoft.Compute/GetOperationStatus30Min;2346 + - Microsoft.Compute/GetOperationStatus3Min;1169,Microsoft.Compute/GetOperationStatus30Min;4145 status: code: 200 message: OK @@ -2007,13 +2007,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/capsOperations/cdff817d-b0c9-4101-8a09-3c65adb7daa8?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/c3c192c7-d1a3-4fdf-95eb-c1055a17753f?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-03T03:22:54.2009109+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"cdff817d-b0c9-4101-8a09-3c65adb7daa8\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:11:37.4672012+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"c3c192c7-d1a3-4fdf-95eb-c1055a17753f\"\r\n}" headers: cache-control: - no-cache @@ -2022,7 +2022,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:27:28 GMT + - Thu, 15 Oct 2020 08:16:12 GMT expires: - '-1' pragma: @@ -2039,7 +2039,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1167,Microsoft.Compute/GetOperationStatus30Min;2340 + - Microsoft.Compute/GetOperationStatus3Min;1170,Microsoft.Compute/GetOperationStatus30Min;4140 status: code: 200 message: OK @@ -2058,13 +2058,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/capsOperations/cdff817d-b0c9-4101-8a09-3c65adb7daa8?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/c3c192c7-d1a3-4fdf-95eb-c1055a17753f?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-03T03:22:54.2009109+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"cdff817d-b0c9-4101-8a09-3c65adb7daa8\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:11:37.4672012+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"c3c192c7-d1a3-4fdf-95eb-c1055a17753f\"\r\n}" headers: cache-control: - no-cache @@ -2073,7 +2073,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:27:58 GMT + - Thu, 15 Oct 2020 08:16:42 GMT expires: - '-1' pragma: @@ -2090,7 +2090,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1167,Microsoft.Compute/GetOperationStatus30Min;2334 + - Microsoft.Compute/GetOperationStatus3Min;1170,Microsoft.Compute/GetOperationStatus30Min;4134 status: code: 200 message: OK @@ -2109,13 +2109,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/capsOperations/cdff817d-b0c9-4101-8a09-3c65adb7daa8?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/c3c192c7-d1a3-4fdf-95eb-c1055a17753f?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-03T03:22:54.2009109+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"cdff817d-b0c9-4101-8a09-3c65adb7daa8\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:11:37.4672012+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"c3c192c7-d1a3-4fdf-95eb-c1055a17753f\"\r\n}" headers: cache-control: - no-cache @@ -2124,7 +2124,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:28:28 GMT + - Thu, 15 Oct 2020 08:17:13 GMT expires: - '-1' pragma: @@ -2141,7 +2141,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1167,Microsoft.Compute/GetOperationStatus30Min;2328 + - Microsoft.Compute/GetOperationStatus3Min;1169,Microsoft.Compute/GetOperationStatus30Min;4128 status: code: 200 message: OK @@ -2160,13 +2160,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/capsOperations/cdff817d-b0c9-4101-8a09-3c65adb7daa8?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/c3c192c7-d1a3-4fdf-95eb-c1055a17753f?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-03T03:22:54.2009109+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"cdff817d-b0c9-4101-8a09-3c65adb7daa8\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:11:37.4672012+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"c3c192c7-d1a3-4fdf-95eb-c1055a17753f\"\r\n}" headers: cache-control: - no-cache @@ -2175,7 +2175,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:28:59 GMT + - Thu, 15 Oct 2020 08:17:43 GMT expires: - '-1' pragma: @@ -2192,7 +2192,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1173,Microsoft.Compute/GetOperationStatus30Min;2323 + - Microsoft.Compute/GetOperationStatus3Min;1169,Microsoft.Compute/GetOperationStatus30Min;4122 status: code: 200 message: OK @@ -2211,13 +2211,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/capsOperations/cdff817d-b0c9-4101-8a09-3c65adb7daa8?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/c3c192c7-d1a3-4fdf-95eb-c1055a17753f?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-03T03:22:54.2009109+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"cdff817d-b0c9-4101-8a09-3c65adb7daa8\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:11:37.4672012+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"c3c192c7-d1a3-4fdf-95eb-c1055a17753f\"\r\n}" headers: cache-control: - no-cache @@ -2226,7 +2226,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:29:30 GMT + - Thu, 15 Oct 2020 08:18:13 GMT expires: - '-1' pragma: @@ -2243,7 +2243,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1174,Microsoft.Compute/GetOperationStatus30Min;2318 + - Microsoft.Compute/GetOperationStatus3Min;1170,Microsoft.Compute/GetOperationStatus30Min;4118 status: code: 200 message: OK @@ -2262,13 +2262,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/capsOperations/cdff817d-b0c9-4101-8a09-3c65adb7daa8?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/c3c192c7-d1a3-4fdf-95eb-c1055a17753f?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-03T03:22:54.2009109+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"cdff817d-b0c9-4101-8a09-3c65adb7daa8\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:11:37.4672012+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"c3c192c7-d1a3-4fdf-95eb-c1055a17753f\"\r\n}" headers: cache-control: - no-cache @@ -2277,7 +2277,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:30:00 GMT + - Thu, 15 Oct 2020 08:18:44 GMT expires: - '-1' pragma: @@ -2294,7 +2294,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1172,Microsoft.Compute/GetOperationStatus30Min;2312 + - Microsoft.Compute/GetOperationStatus3Min;1170,Microsoft.Compute/GetOperationStatus30Min;4112 status: code: 200 message: OK @@ -2313,13 +2313,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/capsOperations/cdff817d-b0c9-4101-8a09-3c65adb7daa8?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/c3c192c7-d1a3-4fdf-95eb-c1055a17753f?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-03T03:22:54.2009109+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"cdff817d-b0c9-4101-8a09-3c65adb7daa8\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:11:37.4672012+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"c3c192c7-d1a3-4fdf-95eb-c1055a17753f\"\r\n}" headers: cache-control: - no-cache @@ -2328,7 +2328,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:30:30 GMT + - Thu, 15 Oct 2020 08:19:15 GMT expires: - '-1' pragma: @@ -2345,7 +2345,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1172,Microsoft.Compute/GetOperationStatus30Min;2306 + - Microsoft.Compute/GetOperationStatus3Min;1168,Microsoft.Compute/GetOperationStatus30Min;4105 status: code: 200 message: OK @@ -2364,13 +2364,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/capsOperations/cdff817d-b0c9-4101-8a09-3c65adb7daa8?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/c3c192c7-d1a3-4fdf-95eb-c1055a17753f?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-03T03:22:54.2009109+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"cdff817d-b0c9-4101-8a09-3c65adb7daa8\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:11:37.4672012+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"c3c192c7-d1a3-4fdf-95eb-c1055a17753f\"\r\n}" headers: cache-control: - no-cache @@ -2379,7 +2379,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:31:00 GMT + - Thu, 15 Oct 2020 08:19:45 GMT expires: - '-1' pragma: @@ -2396,7 +2396,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1172,Microsoft.Compute/GetOperationStatus30Min;2300 + - Microsoft.Compute/GetOperationStatus3Min;1166,Microsoft.Compute/GetOperationStatus30Min;4097 status: code: 200 message: OK @@ -2415,13 +2415,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/capsOperations/cdff817d-b0c9-4101-8a09-3c65adb7daa8?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/c3c192c7-d1a3-4fdf-95eb-c1055a17753f?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-03T03:22:54.2009109+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"cdff817d-b0c9-4101-8a09-3c65adb7daa8\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:11:37.4672012+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"c3c192c7-d1a3-4fdf-95eb-c1055a17753f\"\r\n}" headers: cache-control: - no-cache @@ -2430,7 +2430,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:31:30 GMT + - Thu, 15 Oct 2020 08:20:15 GMT expires: - '-1' pragma: @@ -2447,7 +2447,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1171,Microsoft.Compute/GetOperationStatus30Min;2295 + - Microsoft.Compute/GetOperationStatus3Min;1163,Microsoft.Compute/GetOperationStatus30Min;4088 status: code: 200 message: OK @@ -2466,13 +2466,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/capsOperations/cdff817d-b0c9-4101-8a09-3c65adb7daa8?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/c3c192c7-d1a3-4fdf-95eb-c1055a17753f?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-03T03:22:54.2009109+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"cdff817d-b0c9-4101-8a09-3c65adb7daa8\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:11:37.4672012+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"c3c192c7-d1a3-4fdf-95eb-c1055a17753f\"\r\n}" headers: cache-control: - no-cache @@ -2481,7 +2481,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:32:01 GMT + - Thu, 15 Oct 2020 08:20:46 GMT expires: - '-1' pragma: @@ -2498,7 +2498,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1173,Microsoft.Compute/GetOperationStatus30Min;2292 + - Microsoft.Compute/GetOperationStatus3Min;1161,Microsoft.Compute/GetOperationStatus30Min;4081 status: code: 200 message: OK @@ -2517,13 +2517,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/capsOperations/cdff817d-b0c9-4101-8a09-3c65adb7daa8?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/c3c192c7-d1a3-4fdf-95eb-c1055a17753f?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-03T03:22:54.2009109+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"cdff817d-b0c9-4101-8a09-3c65adb7daa8\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:11:37.4672012+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"c3c192c7-d1a3-4fdf-95eb-c1055a17753f\"\r\n}" headers: cache-control: - no-cache @@ -2532,7 +2532,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:32:31 GMT + - Thu, 15 Oct 2020 08:21:16 GMT expires: - '-1' pragma: @@ -2549,7 +2549,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1176,Microsoft.Compute/GetOperationStatus30Min;2289 + - Microsoft.Compute/GetOperationStatus3Min;1161,Microsoft.Compute/GetOperationStatus30Min;4076 status: code: 200 message: OK @@ -2568,13 +2568,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/capsOperations/cdff817d-b0c9-4101-8a09-3c65adb7daa8?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/c3c192c7-d1a3-4fdf-95eb-c1055a17753f?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-03T03:22:54.2009109+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"cdff817d-b0c9-4101-8a09-3c65adb7daa8\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:11:37.4672012+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"c3c192c7-d1a3-4fdf-95eb-c1055a17753f\"\r\n}" headers: cache-control: - no-cache @@ -2583,7 +2583,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:33:01 GMT + - Thu, 15 Oct 2020 08:21:46 GMT expires: - '-1' pragma: @@ -2600,7 +2600,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1179,Microsoft.Compute/GetOperationStatus30Min;2286 + - Microsoft.Compute/GetOperationStatus3Min;1162,Microsoft.Compute/GetOperationStatus30Min;4071 status: code: 200 message: OK @@ -2619,13 +2619,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/capsOperations/cdff817d-b0c9-4101-8a09-3c65adb7daa8?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/c3c192c7-d1a3-4fdf-95eb-c1055a17753f?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-03T03:22:54.2009109+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"cdff817d-b0c9-4101-8a09-3c65adb7daa8\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:11:37.4672012+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"c3c192c7-d1a3-4fdf-95eb-c1055a17753f\"\r\n}" headers: cache-control: - no-cache @@ -2634,7 +2634,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:33:32 GMT + - Thu, 15 Oct 2020 08:22:17 GMT expires: - '-1' pragma: @@ -2651,7 +2651,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1181,Microsoft.Compute/GetOperationStatus30Min;2282 + - Microsoft.Compute/GetOperationStatus3Min;1163,Microsoft.Compute/GetOperationStatus30Min;4064 status: code: 200 message: OK @@ -2670,14 +2670,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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/capsOperations/cdff817d-b0c9-4101-8a09-3c65adb7daa8?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/c3c192c7-d1a3-4fdf-95eb-c1055a17753f?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-03T03:22:54.2009109+00:00\",\r\n \"endTime\": - \"2020-09-03T03:33:39.8107258+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"cdff817d-b0c9-4101-8a09-3c65adb7daa8\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:11:37.4672012+00:00\",\r\n \"endTime\": + \"2020-10-15T08:22:23.7053529+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"c3c192c7-d1a3-4fdf-95eb-c1055a17753f\"\r\n}" headers: cache-control: - no-cache @@ -2686,7 +2686,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:34:03 GMT + - Thu, 15 Oct 2020 08:22:47 GMT expires: - '-1' pragma: @@ -2703,7 +2703,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1182,Microsoft.Compute/GetOperationStatus30Min;2278 + - Microsoft.Compute/GetOperationStatus3Min;1167,Microsoft.Compute/GetOperationStatus30Min;4060 status: code: 200 message: OK @@ -2722,7 +2722,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/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: @@ -2733,7 +2733,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-09-03T03:22:54.2009109+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-10-15T08:11:37.5609493+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 @@ -2747,7 +2747,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:34:03 GMT + - Thu, 15 Oct 2020 08:22:47 GMT expires: - '-1' pragma: @@ -2764,7 +2764,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1997,Microsoft.Compute/GetGalleryImageVersion30Min;9990 + - Microsoft.Compute/GetGalleryImageVersion3Min;1992,Microsoft.Compute/GetGalleryImageVersion30Min;9987 status: code: 200 message: OK @@ -2783,14 +2783,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.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.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-06-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-09-03T03:20:06Z"},"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":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2799,7 +2799,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:34:03 GMT + - Thu, 15 Oct 2020 08:22:48 GMT expires: - '-1' pragma: @@ -2828,11 +2828,11 @@ 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.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.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/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?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?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"image1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1\",\r\n @@ -2850,7 +2850,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:34:04 GMT + - Thu, 15 Oct 2020 08:22:50 GMT expires: - '-1' pragma: @@ -2867,7 +2867,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;596,Microsoft.Compute/GetGalleryImage30Min;2980 + - Microsoft.Compute/GetGalleryImage3Min;587,Microsoft.Compute/GetGalleryImage30Min;2968 status: code: 200 message: OK @@ -2886,7 +2886,7 @@ 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.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -2899,7 +2899,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-09-03T03:22:54.2009109+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-10-15T08:11:37.5609493+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 @@ -2913,7 +2913,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:34:05 GMT + - Thu, 15 Oct 2020 08:22:50 GMT expires: - '-1' pragma: @@ -2930,7 +2930,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1995,Microsoft.Compute/GetGalleryImageVersion30Min;9988 + - Microsoft.Compute/GetGalleryImageVersion3Min;1991,Microsoft.Compute/GetGalleryImageVersion30Min;9986 status: code: 200 message: OK @@ -2949,7 +2949,7 @@ 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.18 msrest_azure/0.6.3 - azure-mgmt-network/11.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -2958,30 +2958,30 @@ 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/\\\"ba286808-a13b-4abe-b1de-95e31e542f1e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"282bb84e-0613-4ed8-b8c3-a6402c53c790\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"bcb64c8c-34d3-4bdc-8259-a76c3cc7db21\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"37726d33-10fa-49ab-b4c9-15cafadf3365\",\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/\\\"ba286808-a13b-4abe-b1de-95e31e542f1e\\\"\",\r\n + \ \"etag\": \"W/\\\"282bb84e-0613-4ed8-b8c3-a6402c53c790\\\"\",\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\": + \ }\r\n ],\r\n \"subnetID\": 0\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}" headers: cache-control: - no-cache content-length: - - '1750' + - '1780' content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:34:05 GMT + - Thu, 15 Oct 2020 08:22:51 GMT expires: - '-1' pragma: @@ -2998,7 +2998,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4d189ef1-4d5e-439b-b437-f6ddbe2a0066 + - 72c51b5f-dd2a-412c-81c9-605fdcf38e03 status: code: 200 message: OK @@ -3043,25 +3043,25 @@ 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.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.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-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_GwzFR7NUsiGu22D2OhPwNmRn1Vw2suvH","name":"vm_deploy_GwzFR7NUsiGu22D2OhPwNmRn1Vw2suvH","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8835968988760521028","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-09-03T03:34:09.9984211Z","duration":"PT2.5519019S","correlationId":"02db29bd-e916-440c-bd8d-dc16d03052e2","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_6G9DVtofpkjkVnx5Eq5ZtgPFG3ZZG6Mn","name":"vm_deploy_6G9DVtofpkjkVnx5Eq5ZtgPFG3ZZG6Mn","type":"Microsoft.Resources/deployments","properties":{"templateHash":"11427164766672039777","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-10-15T08:22:55.3558899Z","duration":"PT2.5789837S","correlationId":"21ad1911-d326-48b3-b15f-99475aef5895","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_GwzFR7NUsiGu22D2OhPwNmRn1Vw2suvH/operationStatuses/08586025028380311148?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_6G9DVtofpkjkVnx5Eq5ZtgPFG3ZZG6Mn/operationStatuses/08585988567127007226?api-version=2020-06-01 cache-control: - no-cache content-length: - - '2443' + - '2444' content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:34:11 GMT + - Thu, 15 Oct 2020 08:22:56 GMT expires: - '-1' pragma: @@ -3090,9 +3090,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.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.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/08586025028380311148?api-version=2020-06-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/08585988567127007226?api-version=2020-06-01 response: body: string: '{"status":"Running"}' @@ -3104,7 +3104,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:34:41 GMT + - Thu, 15 Oct 2020 08:23:27 GMT expires: - '-1' pragma: @@ -3133,9 +3133,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.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.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/08586025028380311148?api-version=2020-06-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/08585988567127007226?api-version=2020-06-01 response: body: string: '{"status":"Succeeded"}' @@ -3147,7 +3147,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:35:12 GMT + - Thu, 15 Oct 2020 08:23:58 GMT expires: - '-1' pragma: @@ -3176,21 +3176,21 @@ 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.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.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-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_GwzFR7NUsiGu22D2OhPwNmRn1Vw2suvH","name":"vm_deploy_GwzFR7NUsiGu22D2OhPwNmRn1Vw2suvH","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8835968988760521028","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-09-03T03:34:57.493498Z","duration":"PT50.0469788S","correlationId":"02db29bd-e916-440c-bd8d-dc16d03052e2","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_6G9DVtofpkjkVnx5Eq5ZtgPFG3ZZG6Mn","name":"vm_deploy_6G9DVtofpkjkVnx5Eq5ZtgPFG3ZZG6Mn","type":"Microsoft.Resources/deployments","properties":{"templateHash":"11427164766672039777","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-10-15T08:23:31.7327062Z","duration":"PT38.9558S","correlationId":"21ad1911-d326-48b3-b15f-99475aef5895","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: - - '3303' + - '3302' content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:35:13 GMT + - Thu, 15 Oct 2020 08:23:58 GMT expires: - '-1' pragma: @@ -3219,7 +3219,7 @@ 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.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -3228,15 +3228,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\": \"35debafd-519c-4640-868f-544b17335686\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"6bd42e8f-5d3a-4e9d-a3cc-49190ac89ba8\",\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_0c3303252e084bb28fe9530f99d68f90\",\r\n + \ \"osType\": \"Linux\",\r\n \"name\": \"vm2_OsDisk_1_71a3b75af68e4c8b95b0b2649d99aa03\",\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_IM53OGKDMW5HJDG5NO2JRXN6M3FPSZRFGRFYPGHFIAK/providers/Microsoft.Compute/disks/vm2_OsDisk_1_0c3303252e084bb28fe9530f99d68f90\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_TEST_SPECIALIZED_IMAGE_5QR45RXTB2TX6RNGIOC32HUIZSLEHUVW3NWJ4AHZ33W/providers/Microsoft.Compute/disks/vm2_OsDisk_1_71a3b75af68e4c8b95b0b2649d99aa03\"\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\": @@ -3244,18 +3244,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-09-03T03:35:14+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2020-10-15T08:24:00+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"vm2_OsDisk_1_0c3303252e084bb28fe9530f99d68f90\",\r\n \"statuses\": + \"vm2_OsDisk_1_71a3b75af68e4c8b95b0b2649d99aa03\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2020-09-03T03:34:46.7438266+00:00\"\r\n + succeeded\",\r\n \"time\": \"2020-10-15T08:23:21.6660435+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-09-03T03:34:54.4313546+00:00\"\r\n + succeeded\",\r\n \"time\": \"2020-10-15T08:23:30.3224353+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}" @@ -3267,7 +3267,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:35:14 GMT + - Thu, 15 Oct 2020 08:23:59 GMT expires: - '-1' pragma: @@ -3284,7 +3284,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3989,Microsoft.Compute/LowCostGet30Min;31934 + - Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31970 status: code: 200 message: OK @@ -3303,7 +3303,7 @@ 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.18 msrest_azure/0.6.3 - azure-mgmt-network/11.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -3311,12 +3311,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/\\\"84d49f47-ffee-4c44-a426-a1d67ef8bf45\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"1a8b0add-07bc-4752-bf61-abaf01b3d4e2\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"fb0cb599-bd76-4c01-b3de-af8312817d9c\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"e206d240-76c3-4ba7-8da2-af6199998893\",\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/\\\"84d49f47-ffee-4c44-a426-a1d67ef8bf45\\\"\",\r\n + \ \"etag\": \"W/\\\"1a8b0add-07bc-4752-bf61-abaf01b3d4e2\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": @@ -3325,8 +3325,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\": - \"rrglnpgtgtoexaszu3wdzr41eb.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-22-48-04-6D-F4\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"gnwxen50ccvutngjcxfpvxztmf.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-22-48-02-9F-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/vm2NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -3340,9 +3340,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:35:14 GMT + - Thu, 15 Oct 2020 08:24:00 GMT etag: - - W/"84d49f47-ffee-4c44-a426-a1d67ef8bf45" + - W/"1a8b0add-07bc-4752-bf61-abaf01b3d4e2" expires: - '-1' pragma: @@ -3359,7 +3359,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 54dab3fa-79d6-4089-a497-43c1bfef6459 + - 6a922412-a2c2-49b3-a31f-ebb8ce842bb9 status: code: 200 message: OK @@ -3378,7 +3378,7 @@ 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.18 msrest_azure/0.6.3 - azure-mgmt-network/11.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -3386,11 +3386,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/\\\"d327b40f-aa08-47e2-88e0-0934ff2c52fb\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"c39edcd7-7ce6-4d50-b830-b4d18da5d490\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"91808ef0-f7f9-48c1-a6bb-ef01f6879c5c\",\r\n - \ \"ipAddress\": \"104.45.208.52\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n - \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + \"Succeeded\",\r\n \"resourceGuid\": \"5e7b4bc8-df05-4536-86fd-7bd36e229c6f\",\r\n + \ \"ipAddress\": \"138.91.147.169\",\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}" @@ -3398,13 +3398,13 @@ interactions: cache-control: - no-cache content-length: - - '997' + - '998' content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:35:14 GMT + - Thu, 15 Oct 2020 08:24:00 GMT etag: - - W/"d327b40f-aa08-47e2-88e0-0934ff2c52fb" + - W/"c39edcd7-7ce6-4d50-b830-b4d18da5d490" expires: - '-1' pragma: @@ -3421,7 +3421,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 724e71f3-85b7-4776-943e-9cb46cdf5429 + - 1a0575f6-ca63-4bd1-bf04-19fe01731411 status: code: 200 message: OK @@ -3440,14 +3440,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.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.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-06-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-09-03T03:20:06Z"},"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":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3456,7 +3456,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:35:15 GMT + - Thu, 15 Oct 2020 08:24:00 GMT expires: - '-1' pragma: @@ -3485,11 +3485,11 @@ 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.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.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/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?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?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"image1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1\",\r\n @@ -3507,7 +3507,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:35:16 GMT + - Thu, 15 Oct 2020 08:24:02 GMT expires: - '-1' pragma: @@ -3524,7 +3524,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;597,Microsoft.Compute/GetGalleryImage30Min;2979 + - Microsoft.Compute/GetGalleryImage3Min;596,Microsoft.Compute/GetGalleryImage30Min;2967 status: code: 200 message: OK @@ -3543,7 +3543,7 @@ 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.18 msrest_azure/0.6.3 - azure-mgmt-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -3556,7 +3556,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-09-03T03:22:54.2009109+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-10-15T08:11:37.5609493+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 @@ -3570,7 +3570,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:35:16 GMT + - Thu, 15 Oct 2020 08:24:02 GMT expires: - '-1' pragma: @@ -3587,7 +3587,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;9984 status: code: 200 message: OK @@ -3606,7 +3606,7 @@ 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.18 msrest_azure/0.6.3 - azure-mgmt-network/11.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-network/12.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -3615,31 +3615,31 @@ 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/\\\"fab74bdc-50ef-47e6-b74d-b0f921af62a5\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"cfb871d8-5400-499f-ad40-7ed76fde80a7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"bcb64c8c-34d3-4bdc-8259-a76c3cc7db21\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"37726d33-10fa-49ab-b4c9-15cafadf3365\",\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/\\\"fab74bdc-50ef-47e6-b74d-b0f921af62a5\\\"\",\r\n + \ \"etag\": \"W/\\\"cfb871d8-5400-499f-ad40-7ed76fde80a7\\\"\",\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 \"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 },\r\n \"type\": - \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n - \ \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + \ }\r\n ],\r\n \"subnetID\": 0\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}" headers: cache-control: - no-cache content-length: - - '2043' + - '2073' content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:35:17 GMT + - Thu, 15 Oct 2020 08:24:03 GMT expires: - '-1' pragma: @@ -3656,7 +3656,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 66c60cc9-7867-460e-9076-e43be8c179c8 + - 8c05c895-57ca-44eb-b148-7231242524e7 status: code: 200 message: OK @@ -3681,8 +3681,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": "vmss16ecfNic", - "properties": {"primary": "true", "ipConfigurations": [{"name": "vmss16ecfIPConfig", + "networkProfile": {"networkInterfaceConfigurations": [{"name": "vmss1a004Nic", + "properties": {"primary": "true", "ipConfigurations": [{"name": "vmss1a004IPConfig", "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"}]}}]}}]}}, @@ -3707,17 +3707,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.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.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-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_hbLB1cfFcoaF3bRAcDpPRSfhWkAKSp9R","name":"vmss_deploy_hbLB1cfFcoaF3bRAcDpPRSfhWkAKSp9R","type":"Microsoft.Resources/deployments","properties":{"templateHash":"1377669563141341699","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-09-03T03:35:22.659804Z","duration":"PT2.3988456S","correlationId":"4b4598c4-9477-44eb-8164-b9a0f0747cf1","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_5sCRzJnDWpUG73HuwvxncgjSXOmL3rvH","name":"vmss_deploy_5sCRzJnDWpUG73HuwvxncgjSXOmL3rvH","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4330595497158790111","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-10-15T08:24:08.373081Z","duration":"PT2.6620748S","correlationId":"a047bdb6-9b2a-484e-996b-b65f0341fbd9","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_hbLB1cfFcoaF3bRAcDpPRSfhWkAKSp9R/operationStatuses/08586025027652166703?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_5sCRzJnDWpUG73HuwvxncgjSXOmL3rvH/operationStatuses/08585988566397666248?api-version=2020-06-01 cache-control: - no-cache content-length: @@ -3725,7 +3725,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:35:24 GMT + - Thu, 15 Oct 2020 08:24:10 GMT expires: - '-1' pragma: @@ -3735,7 +3735,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1195' status: code: 201 message: Created @@ -3754,52 +3754,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.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1 - 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/08586025027652166703?api-version=2020-06-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 03 Sep 2020 03:35:55 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/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.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/08586025027652166703?api-version=2020-06-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/08585988566397666248?api-version=2020-06-01 response: body: string: '{"status":"Running"}' @@ -3811,7 +3768,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:36:25 GMT + - Thu, 15 Oct 2020 08:24:41 GMT expires: - '-1' pragma: @@ -3840,9 +3797,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.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.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/08586025027652166703?api-version=2020-06-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/08585988566397666248?api-version=2020-06-01 response: body: string: '{"status":"Succeeded"}' @@ -3854,7 +3811,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:36:56 GMT + - Thu, 15 Oct 2020 08:25:11 GMT expires: - '-1' pragma: @@ -3883,21 +3840,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.18 msrest_azure/0.6.3 - azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.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-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_hbLB1cfFcoaF3bRAcDpPRSfhWkAKSp9R","name":"vmss_deploy_hbLB1cfFcoaF3bRAcDpPRSfhWkAKSp9R","type":"Microsoft.Resources/deployments","properties":{"templateHash":"1377669563141341699","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-09-03T03:36:44.7755246Z","duration":"PT1M24.5145662S","correlationId":"4b4598c4-9477-44eb-8164-b9a0f0747cf1","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":"vmss16ecfNic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss16ecfIPConfig","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":"60ac948e-ef7b-4623-bf33-f544496ef43f"}}},"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_5sCRzJnDWpUG73HuwvxncgjSXOmL3rvH","name":"vmss_deploy_5sCRzJnDWpUG73HuwvxncgjSXOmL3rvH","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4330595497158790111","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-10-15T08:25:06.4767992Z","duration":"PT1M0.765793S","correlationId":"a047bdb6-9b2a-484e-996b-b65f0341fbd9","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":"vmss1a004Nic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss1a004IPConfig","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":"7f47133d-d69a-4e43-b88a-32204c3d77b9"}}},"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: - - '4512' + - '4510' content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:36:57 GMT + - Thu, 15 Oct 2020 08:25:11 GMT expires: - '-1' pragma: @@ -3926,14 +3883,14 @@ interactions: - -g -n --specialized 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.11.1 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.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-06-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-09-03T03:20:06Z"},"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":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3942,7 +3899,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:36:58 GMT + - Thu, 15 Oct 2020 08:25:13 GMT expires: - '-1' pragma: @@ -3971,14 +3928,14 @@ interactions: - -g -n --specialized 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.11.1 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.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-06-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-09-03T03:20:06Z"},"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":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3987,7 +3944,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 03 Sep 2020 03:36:58 GMT + - Thu, 15 Oct 2020 08:25:13 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 a9223b997f5..f16fdb701a3 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.11.1 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.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-06-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-09-04T02:40:20Z"},"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":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:40:24 GMT + - Thu, 15 Oct 2020 08:08:53 GMT expires: - '-1' pragma: @@ -65,7 +65,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT @@ -81,7 +81,7 @@ interactions: \ \"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/1200553f-398c-4db7-8f37-784858d6ba8a?api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/0d5e43ab-9ddc-4d2e-951a-3f59ab6e0763?api-version=2020-06-30 cache-control: - no-cache content-length: @@ -89,11 +89,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:40:30 GMT + - Thu, 15 Oct 2020 08:08:59 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1200553f-398c-4db7-8f37-784858d6ba8a?monitor=true&api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/0d5e43ab-9ddc-4d2e-951a-3f59ab6e0763?monitor=true&api-version=2020-06-30 pragma: - no-cache server: @@ -104,7 +104,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7997 + - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -125,13 +125,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/DiskOperations/1200553f-398c-4db7-8f37-784858d6ba8a?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/0d5e43ab-9ddc-4d2e-951a-3f59ab6e0763?api-version=2020-06-30 response: body: - string: "{\r\n \"startTime\": \"2020-09-04T02:40:31.1427992+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"1200553f-398c-4db7-8f37-784858d6ba8a\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:09:00.5623634+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"0d5e43ab-9ddc-4d2e-951a-3f59ab6e0763\"\r\n}" headers: cache-control: - no-cache @@ -140,7 +140,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:40:33 GMT + - Thu, 15 Oct 2020 08:09:02 GMT expires: - '-1' pragma: @@ -157,7 +157,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399995 + - Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399999 status: code: 200 message: OK @@ -176,13 +176,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/DiskOperations/1200553f-398c-4db7-8f37-784858d6ba8a?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/0d5e43ab-9ddc-4d2e-951a-3f59ab6e0763?api-version=2020-06-30 response: body: - string: "{\r\n \"startTime\": \"2020-09-04T02:40:31.1427992+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"1200553f-398c-4db7-8f37-784858d6ba8a\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:09:00.5623634+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"0d5e43ab-9ddc-4d2e-951a-3f59ab6e0763\"\r\n}" headers: cache-control: - no-cache @@ -191,7 +191,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:40:43 GMT + - Thu, 15 Oct 2020 08:09:12 GMT expires: - '-1' pragma: @@ -208,7 +208,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399993 + - Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399997 status: code: 200 message: OK @@ -227,15 +227,15 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/DiskOperations/1200553f-398c-4db7-8f37-784858d6ba8a?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/0d5e43ab-9ddc-4d2e-951a-3f59ab6e0763?api-version=2020-06-30 response: body: - string: "{\r\n \"startTime\": \"2020-09-04T02:40:31.1427992+00:00\",\r\n \"endTime\": - \"2020-09-04T02:41:01.7218349+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\":{\"hyperVGeneration\":\"V1\",\"creationData\":{\"createOption\":\"Empty\",\"logicalSectorSize\":4096},\"diskSizeGB\":10,\"diskIOPSReadWrite\":100,\"diskMBpsReadWrite\":13,\"readOnly\":false,\"diskIOPSReadOnly\":200,\"diskMBpsReadOnly\":30,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"maxShares\":1,\"timeCreated\":\"2020-09-04T02:40:31.1584142+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":10737418240,\"uniqueId\":\"721c7fe1-6fba-470c-ada8-cc3edba035b6\",\"networkAccessPolicy\":\"AllowAll\"}}\r\n - \ },\r\n \"name\": \"1200553f-398c-4db7-8f37-784858d6ba8a\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:09:00.5623634+00:00\",\r\n \"endTime\": + \"2020-10-15T08:09:27.9843154+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\":{\"hyperVGeneration\":\"V1\",\"creationData\":{\"createOption\":\"Empty\",\"logicalSectorSize\":4096},\"diskSizeGB\":10,\"diskIOPSReadWrite\":100,\"diskMBpsReadWrite\":13,\"readOnly\":false,\"diskIOPSReadOnly\":200,\"diskMBpsReadOnly\":30,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"maxShares\":1,\"timeCreated\":\"2020-10-15T08:09:00.5779835+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":10737418240,\"uniqueId\":\"d80736fd-6d96-4e9e-854b-30f0532895f3\",\"networkAccessPolicy\":\"AllowAll\"}}\r\n + \ },\r\n \"name\": \"0d5e43ab-9ddc-4d2e-951a-3f59ab6e0763\"\r\n}" headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:41:14 GMT + - Thu, 15 Oct 2020 08:09:43 GMT expires: - '-1' pragma: @@ -261,7 +261,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49994,Microsoft.Compute/GetOperation30Min;399990 + - Microsoft.Compute/GetOperation3Min;49994,Microsoft.Compute/GetOperation30Min;399994 status: code: 200 message: OK @@ -280,7 +280,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-06-30 response: @@ -294,9 +294,9 @@ interactions: \ \"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-09-04T02:40:31.1584142+00:00\",\r\n \"provisioningState\": + \ \"timeCreated\": \"2020-10-15T08:09:00.5779835+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 10737418240,\r\n \"uniqueId\": \"721c7fe1-6fba-470c-ada8-cc3edba035b6\",\r\n + 10737418240,\r\n \"uniqueId\": \"d80736fd-6d96-4e9e-854b-30f0532895f3\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -306,7 +306,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:41:14 GMT + - Thu, 15 Oct 2020 08:09:44 GMT expires: - '-1' pragma: @@ -323,7 +323,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4994,Microsoft.Compute/LowCostGet30Min;39987 + - Microsoft.Compute/LowCostGet3Min;4991,Microsoft.Compute/LowCostGet30Min;39983 status: code: 200 message: OK @@ -342,7 +342,7 @@ interactions: - -g -n --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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -358,9 +358,9 @@ interactions: \ \"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-09-04T02:40:31.1584142+00:00\",\r\n \"provisioningState\": + \ \"timeCreated\": \"2020-10-15T08:09:00.5779835+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 10737418240,\r\n \"uniqueId\": \"721c7fe1-6fba-470c-ada8-cc3edba035b6\",\r\n + 10737418240,\r\n \"uniqueId\": \"d80736fd-6d96-4e9e-854b-30f0532895f3\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -370,7 +370,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:41:15 GMT + - Thu, 15 Oct 2020 08:09:45 GMT expires: - '-1' pragma: @@ -387,7 +387,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4993,Microsoft.Compute/LowCostGet30Min;39986 + - Microsoft.Compute/LowCostGet3Min;4990,Microsoft.Compute/LowCostGet30Min;39982 status: code: 200 message: OK @@ -415,7 +415,7 @@ interactions: - -g -n --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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT @@ -434,7 +434,7 @@ interactions: 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/1fe602dc-3249-4ea3-8f18-022fa11e167b?api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/9a824aaa-c182-45ec-bdae-673f7ab90d4b?api-version=2020-06-30 cache-control: - no-cache content-length: @@ -442,11 +442,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:41:17 GMT + - Thu, 15 Oct 2020 08:09:47 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1fe602dc-3249-4ea3-8f18-022fa11e167b?monitor=true&api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/9a824aaa-c182-45ec-bdae-673f7ab90d4b?monitor=true&api-version=2020-06-30 pragma: - no-cache server: @@ -457,9 +457,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7996 + - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7998 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -478,13 +478,13 @@ interactions: - -g -n --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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/DiskOperations/1fe602dc-3249-4ea3-8f18-022fa11e167b?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/9a824aaa-c182-45ec-bdae-673f7ab90d4b?api-version=2020-06-30 response: body: - string: "{\r\n \"startTime\": \"2020-09-04T02:41:17.7136097+00:00\",\r\n \"endTime\": - \"2020-09-04T02:41:17.8698813+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2020-10-15T08:09:47.6345638+00:00\",\r\n \"endTime\": + \"2020-10-15T08:09:47.7594788+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 @@ -495,11 +495,11 @@ interactions: \ \"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-09-04T02:40:31.1584142+00:00\",\r\n \"provisioningState\": + \ \"timeCreated\": \"2020-10-15T08:09:00.5779835+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 10737418240,\r\n \"uniqueId\": \"721c7fe1-6fba-470c-ada8-cc3edba035b6\",\r\n + 10737418240,\r\n \"uniqueId\": \"d80736fd-6d96-4e9e-854b-30f0532895f3\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"1fe602dc-3249-4ea3-8f18-022fa11e167b\"\r\n}" + \"9a824aaa-c182-45ec-bdae-673f7ab90d4b\"\r\n}" headers: cache-control: - no-cache @@ -508,7 +508,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:41:19 GMT + - Thu, 15 Oct 2020 08:09:49 GMT expires: - '-1' pragma: @@ -525,7 +525,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49993,Microsoft.Compute/GetOperation30Min;399989 + - Microsoft.Compute/GetOperation3Min;49993,Microsoft.Compute/GetOperation30Min;399993 status: code: 200 message: OK @@ -544,7 +544,7 @@ interactions: - -g -n --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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-06-30 response: @@ -558,9 +558,9 @@ interactions: \ \"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-09-04T02:40:31.1584142+00:00\",\r\n \"provisioningState\": + \ \"timeCreated\": \"2020-10-15T08:09:00.5779835+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 10737418240,\r\n \"uniqueId\": \"721c7fe1-6fba-470c-ada8-cc3edba035b6\",\r\n + 10737418240,\r\n \"uniqueId\": \"d80736fd-6d96-4e9e-854b-30f0532895f3\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -570,7 +570,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:41:19 GMT + - Thu, 15 Oct 2020 08:09:49 GMT expires: - '-1' pragma: @@ -587,7 +587,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4992,Microsoft.Compute/LowCostGet30Min;39985 + - Microsoft.Compute/LowCostGet3Min;4988,Microsoft.Compute/LowCostGet30Min;39980 status: code: 200 message: OK @@ -606,14 +606,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.11.1 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.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-06-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-09-04T02:40:20Z"},"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":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -622,7 +622,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:41:21 GMT + - Thu, 15 Oct 2020 08:09:51 GMT expires: - '-1' pragma: @@ -657,7 +657,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT @@ -673,7 +673,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/531eae44-433d-41ff-a827-f62bb7355cc2?api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1cebd28d-5b8a-4092-8f8d-8fc41a2c2721?api-version=2020-06-30 cache-control: - no-cache content-length: @@ -681,11 +681,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:41:26 GMT + - Thu, 15 Oct 2020 08:09:57 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/531eae44-433d-41ff-a827-f62bb7355cc2?monitor=true&api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1cebd28d-5b8a-4092-8f8d-8fc41a2c2721?monitor=true&api-version=2020-06-30 pragma: - no-cache server: @@ -696,9 +696,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7995 + - Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7997 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 202 message: Accepted @@ -717,13 +717,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/DiskOperations/531eae44-433d-41ff-a827-f62bb7355cc2?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1cebd28d-5b8a-4092-8f8d-8fc41a2c2721?api-version=2020-06-30 response: body: - string: "{\r\n \"startTime\": \"2020-09-04T02:41:26.9323534+00:00\",\r\n \"endTime\": - \"2020-09-04T02:41:27.8698725+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2020-10-15T08:09:57.6044365+00:00\",\r\n \"endTime\": + \"2020-10-15T08:09:58.4640233+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 @@ -733,20 +733,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\": \"2020-09-04T02:41:26.9636231+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-10-15T08:09:57.635708+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"00907fb9-319a-4add-8371-9b242dcb7ada\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"eeaa2ddd-9502-4c2a-b978-039ecec0b2e7\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"531eae44-433d-41ff-a827-f62bb7355cc2\"\r\n}" + \ },\r\n \"name\": \"1cebd28d-5b8a-4092-8f8d-8fc41a2c2721\"\r\n}" headers: cache-control: - no-cache content-length: - - '1424' + - '1423' content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:41:29 GMT + - Thu, 15 Oct 2020 08:10:00 GMT expires: - '-1' pragma: @@ -763,7 +763,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49991,Microsoft.Compute/GetOperation30Min;399987 + - Microsoft.Compute/GetOperation3Min;49991,Microsoft.Compute/GetOperation30Min;399991 status: code: 200 message: OK @@ -782,7 +782,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d2?api-version=2020-06-30 response: @@ -795,19 +795,19 @@ 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-09-04T02:41:26.9636231+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-10-15T08:09:57.635708+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"00907fb9-319a-4add-8371-9b242dcb7ada\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"eeaa2ddd-9502-4c2a-b978-039ecec0b2e7\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1199' + - '1198' content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:41:29 GMT + - Thu, 15 Oct 2020 08:10:00 GMT expires: - '-1' pragma: @@ -824,7 +824,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4989,Microsoft.Compute/LowCostGet30Min;39982 + - Microsoft.Compute/LowCostGet3Min;4987,Microsoft.Compute/LowCostGet30Min;39978 status: code: 200 message: OK @@ -843,14 +843,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.11.1 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.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-06-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-09-04T02:40:20Z"},"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":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -859,7 +859,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:41:30 GMT + - Thu, 15 Oct 2020 08:10:00 GMT expires: - '-1' pragma: @@ -888,7 +888,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -910,7 +910,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:41:31 GMT + - Thu, 15 Oct 2020 08:10:01 GMT expires: - '-1' pragma: @@ -950,7 +950,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT @@ -966,7 +966,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/02ebb11d-9491-4116-b2cd-33d5414c323f?api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/090373c5-6ea2-458a-b5ca-014b2f6ce50f?api-version=2020-06-30 cache-control: - no-cache content-length: @@ -974,11 +974,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:41:37 GMT + - Thu, 15 Oct 2020 08:10:06 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/02ebb11d-9491-4116-b2cd-33d5414c323f?monitor=true&api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/090373c5-6ea2-458a-b5ca-014b2f6ce50f?monitor=true&api-version=2020-06-30 pragma: - no-cache server: @@ -989,7 +989,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;996,Microsoft.Compute/CreateUpdateDisks30Min;7994 + - Microsoft.Compute/CreateUpdateDisks3Min;996,Microsoft.Compute/CreateUpdateDisks30Min;7996 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1010,13 +1010,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/DiskOperations/02ebb11d-9491-4116-b2cd-33d5414c323f?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/090373c5-6ea2-458a-b5ca-014b2f6ce50f?api-version=2020-06-30 response: body: - string: "{\r\n \"startTime\": \"2020-09-04T02:41:38.0261253+00:00\",\r\n \"endTime\": - \"2020-09-04T02:41:38.3698535+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2020-10-15T08:10:06.7010454+00:00\",\r\n \"endTime\": + \"2020-10-15T08:10:07.0605235+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 @@ -1026,20 +1026,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\": \"2020-09-04T02:41:38.041728+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-10-15T08:10:06.7010454+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"2e2bf046-494a-4636-a419-105c71b0a715\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"29e69e4d-a63b-413b-9f8a-0d26f40982e7\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"02ebb11d-9491-4116-b2cd-33d5414c323f\"\r\n}" + \ },\r\n \"name\": \"090373c5-6ea2-458a-b5ca-014b2f6ce50f\"\r\n}" headers: cache-control: - no-cache content-length: - - '1423' + - '1424' content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:41:39 GMT + - Thu, 15 Oct 2020 08:10:08 GMT expires: - '-1' pragma: @@ -1056,7 +1056,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399985 + - Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399989 status: code: 200 message: OK @@ -1075,7 +1075,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d3?api-version=2020-06-30 response: @@ -1088,19 +1088,19 @@ 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-09-04T02:41:38.041728+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-10-15T08:10:06.7010454+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"2e2bf046-494a-4636-a419-105c71b0a715\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"29e69e4d-a63b-413b-9f8a-0d26f40982e7\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1198' + - '1199' content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:41:40 GMT + - Thu, 15 Oct 2020 08:10:08 GMT expires: - '-1' pragma: @@ -1117,7 +1117,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4985,Microsoft.Compute/LowCostGet30Min;39978 + - Microsoft.Compute/LowCostGet3Min;4984,Microsoft.Compute/LowCostGet30Min;39975 status: code: 200 message: OK @@ -1136,14 +1136,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.11.1 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.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-06-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-09-04T02:40:20Z"},"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":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1152,7 +1152,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:41:41 GMT + - Thu, 15 Oct 2020 08:10:09 GMT expires: - '-1' pragma: @@ -1185,7 +1185,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT @@ -1195,11 +1195,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-G1F7566FOJUCBCHIY2J4\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-G1CJFMI3CARUODY46Z5U\"\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/e5c0a1b8-deb5-40dc-894f-993b5a08ae71?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/efa6f8ee-8395-4258-add3-3a65fe924953?api-version=2019-12-01 cache-control: - no-cache content-length: @@ -1207,7 +1207,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:41:50 GMT + - Thu, 15 Oct 2020 08:10:13 GMT expires: - '-1' pragma: @@ -1220,9 +1220,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 @@ -1241,14 +1241,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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/capsOperations/e5c0a1b8-deb5-40dc-894f-993b5a08ae71?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/efa6f8ee-8395-4258-add3-3a65fe924953?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-04T02:41:48.1879595+00:00\",\r\n \"endTime\": - \"2020-09-04T02:41:48.4848461+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"e5c0a1b8-deb5-40dc-894f-993b5a08ae71\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:10:12.9043807+00:00\",\r\n \"endTime\": + \"2020-10-15T08:10:13.0137606+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"efa6f8ee-8395-4258-add3-3a65fe924953\"\r\n}" headers: cache-control: - no-cache @@ -1257,7 +1257,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:42:21 GMT + - Thu, 15 Oct 2020 08:10:43 GMT expires: - '-1' pragma: @@ -1274,7 +1274,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;2398 + - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4192 status: code: 200 message: OK @@ -1293,7 +1293,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002?api-version=2019-12-01 response: @@ -1301,7 +1301,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-G1F7566FOJUCBCHIY2J4\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-G1CJFMI3CARUODY46Z5U\"\r\n },\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -1311,7 +1311,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:42:21 GMT + - Thu, 15 Oct 2020 08:10:43 GMT expires: - '-1' pragma: @@ -1328,7 +1328,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 @@ -1347,14 +1347,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.11.1 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.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-06-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-09-04T02:40:20Z"},"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":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1363,7 +1363,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:42:22 GMT + - Thu, 15 Oct 2020 08:10:45 GMT expires: - '-1' pragma: @@ -1398,11 +1398,11 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US 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=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?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 @@ -1414,7 +1414,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/f5303dd0-a70b-45e6-bd67-dc64d10078e8?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/ed2c7a83-0d11-4540-9988-0c53616c7ff6?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -1422,7 +1422,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:42:28 GMT + - Thu, 15 Oct 2020 08:10:50 GMT expires: - '-1' pragma: @@ -1435,7 +1435,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: - '1197' status: @@ -1456,14 +1456,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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/capsOperations/f5303dd0-a70b-45e6-bd67-dc64d10078e8?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/ed2c7a83-0d11-4540-9988-0c53616c7ff6?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2020-09-04T02:42:27.5182089+00:00\",\r\n \"endTime\": - \"2020-09-04T02:42:27.6432651+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"f5303dd0-a70b-45e6-bd67-dc64d10078e8\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:10:49.5608299+00:00\",\r\n \"endTime\": + \"2020-10-15T08:10:49.6702188+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"ed2c7a83-0d11-4540-9988-0c53616c7ff6\"\r\n}" headers: cache-control: - no-cache @@ -1472,7 +1472,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:43:00 GMT + - Thu, 15 Oct 2020 08:11:22 GMT expires: - '-1' pragma: @@ -1489,7 +1489,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;2396 + - Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4188 status: code: 200 message: OK @@ -1508,9 +1508,9 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image?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?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 @@ -1528,7 +1528,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:43:00 GMT + - Thu, 15 Oct 2020 08:11:22 GMT expires: - '-1' pragma: @@ -1545,7 +1545,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;596,Microsoft.Compute/GetGalleryImage30Min;2996 + - Microsoft.Compute/GetGalleryImage3Min;587,Microsoft.Compute/GetGalleryImage30Min;2987 status: code: 200 message: OK @@ -1564,14 +1564,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.11.1 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.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-06-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-09-04T02:40:20Z"},"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":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1580,7 +1580,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:43:01 GMT + - Thu, 15 Oct 2020 08:11:23 GMT expires: - '-1' pragma: @@ -1615,7 +1615,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT @@ -1630,7 +1630,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/b1f9dd65-ed95-461a-a209-3bd961517659?api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/04399d85-c1da-4c7f-bfc5-ef6284ce2b16?api-version=2020-06-30 cache-control: - no-cache content-length: @@ -1638,11 +1638,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:43:07 GMT + - Thu, 15 Oct 2020 08:11:28 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/b1f9dd65-ed95-461a-a209-3bd961517659?monitor=true&api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/04399d85-c1da-4c7f-bfc5-ef6284ce2b16?monitor=true&api-version=2020-06-30 pragma: - no-cache server: @@ -1653,9 +1653,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;995,Microsoft.Compute/CreateUpdateDisks30Min;7993 + - Microsoft.Compute/CreateUpdateDisks3Min;995,Microsoft.Compute/CreateUpdateDisks30Min;7995 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' status: code: 202 message: Accepted @@ -1674,13 +1674,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/DiskOperations/b1f9dd65-ed95-461a-a209-3bd961517659?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/04399d85-c1da-4c7f-bfc5-ef6284ce2b16?api-version=2020-06-30 response: body: - string: "{\r\n \"startTime\": \"2020-09-04T02:43:08.0266433+00:00\",\r\n \"endTime\": - \"2020-09-04T02:43:08.1360692+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2020-10-15T08:11:28.3931012+00:00\",\r\n \"endTime\": + \"2020-10-15T08:11:28.5181193+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 @@ -1689,11 +1689,11 @@ interactions: \ \"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-09-04T02:43:08.0266433+00:00\",\r\n + \ },\r\n \"timeCreated\": \"2020-10-15T08:11:28.3931012+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"6bf20d52-adfa-44cf-9286-2a8954b8d2e7\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"23c2a253-1b9a-4215-8b9a-5094564b41c5\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"b1f9dd65-ed95-461a-a209-3bd961517659\"\r\n}" + \ },\r\n \"name\": \"04399d85-c1da-4c7f-bfc5-ef6284ce2b16\"\r\n}" headers: cache-control: - no-cache @@ -1702,7 +1702,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:43:10 GMT + - Thu, 15 Oct 2020 08:11:30 GMT expires: - '-1' pragma: @@ -1719,7 +1719,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49987,Microsoft.Compute/GetOperation30Min;399983 + - Microsoft.Compute/GetOperation3Min;49987,Microsoft.Compute/GetOperation30Min;399987 status: code: 200 message: OK @@ -1738,7 +1738,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk?api-version=2020-06-30 response: @@ -1750,9 +1750,9 @@ interactions: \ \"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-09-04T02:43:08.0266433+00:00\",\r\n + \ },\r\n \"timeCreated\": \"2020-10-15T08:11:28.3931012+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"6bf20d52-adfa-44cf-9286-2a8954b8d2e7\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"23c2a253-1b9a-4215-8b9a-5094564b41c5\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: @@ -1762,7 +1762,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:43:10 GMT + - Thu, 15 Oct 2020 08:11:31 GMT expires: - '-1' pragma: @@ -1779,7 +1779,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4982,Microsoft.Compute/LowCostGet30Min;39975 + - Microsoft.Compute/LowCostGet3Min;4984,Microsoft.Compute/LowCostGet30Min;39969 status: code: 200 message: OK @@ -1798,7 +1798,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -1816,7 +1816,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:43:12 GMT + - Thu, 15 Oct 2020 08:11:32 GMT expires: - '-1' pragma: @@ -1845,7 +1845,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -1859,9 +1859,9 @@ interactions: \ \"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-09-04T02:43:08.0266433+00:00\",\r\n + \ },\r\n \"timeCreated\": \"2020-10-15T08:11:28.3931012+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"6bf20d52-adfa-44cf-9286-2a8954b8d2e7\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"23c2a253-1b9a-4215-8b9a-5094564b41c5\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: @@ -1871,7 +1871,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:43:12 GMT + - Thu, 15 Oct 2020 08:11:32 GMT expires: - '-1' pragma: @@ -1888,7 +1888,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4981,Microsoft.Compute/LowCostGet30Min;39974 + - Microsoft.Compute/LowCostGet3Min;4982,Microsoft.Compute/LowCostGet30Min;39967 status: code: 200 message: OK @@ -1907,14 +1907,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.11.1 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.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-06-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-09-04T02:40:20Z"},"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":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1923,7 +1923,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:43:12 GMT + - Thu, 15 Oct 2020 08:11:33 GMT expires: - '-1' pragma: @@ -1958,7 +1958,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT @@ -1969,12 +1969,12 @@ interactions: \ \"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_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk\",\r\n - \ \"sourceUniqueId\": \"6bf20d52-adfa-44cf-9286-2a8954b8d2e7\"\r\n },\r\n + \ \"sourceUniqueId\": \"23c2a253-1b9a-4215-8b9a-5094564b41c5\"\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/d39ae65e-45ef-42f8-8a19-439ae932080e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/6fa84859-b7bc-4279-983c-cbe57d040753?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1982,11 +1982,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:43:17 GMT + - Thu, 15 Oct 2020 08:11:38 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/d39ae65e-45ef-42f8-8a19-439ae932080e?monitor=true&api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/6fa84859-b7bc-4279-983c-cbe57d040753?monitor=true&api-version=2020-05-01 pragma: - no-cache server: @@ -1997,9 +1997,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: - - '1198' + - '1195' status: code: 202 message: Accepted @@ -2018,13 +2018,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/DiskOperations/d39ae65e-45ef-42f8-8a19-439ae932080e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/6fa84859-b7bc-4279-983c-cbe57d040753?api-version=2020-05-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-04T02:43:17.1204055+00:00\",\r\n \"endTime\": - \"2020-09-04T02:43:17.7454093+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2020-10-15T08:11:38.1900072+00:00\",\r\n \"endTime\": + \"2020-10-15T08:11:38.7525409+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 @@ -2032,13 +2032,13 @@ interactions: \"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_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk\",\r\n - \ \"sourceUniqueId\": \"6bf20d52-adfa-44cf-9286-2a8954b8d2e7\"\r\n },\r\n + \ \"sourceUniqueId\": \"23c2a253-1b9a-4215-8b9a-5094564b41c5\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-09-04T02:43:17.1360461+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-10-15T08:11:38.1900072+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"a97d8fb6-f11d-4250-81e7-7e0221941d3d\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"d8c050ed-5a1a-4de9-a7a4-b0c2372a54ae\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"d39ae65e-45ef-42f8-8a19-439ae932080e\"\r\n}" + \"6fa84859-b7bc-4279-983c-cbe57d040753\"\r\n}" headers: cache-control: - no-cache @@ -2047,7 +2047,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:43:19 GMT + - Thu, 15 Oct 2020 08:11:40 GMT expires: - '-1' pragma: @@ -2064,7 +2064,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49985,Microsoft.Compute/GetOperation30Min;399981 + - Microsoft.Compute/GetOperation3Min;49982,Microsoft.Compute/GetOperation30Min;399982 status: code: 200 message: OK @@ -2083,7 +2083,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01 response: @@ -2094,11 +2094,11 @@ interactions: \"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_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk\",\r\n - \ \"sourceUniqueId\": \"6bf20d52-adfa-44cf-9286-2a8954b8d2e7\"\r\n },\r\n + \ \"sourceUniqueId\": \"23c2a253-1b9a-4215-8b9a-5094564b41c5\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-09-04T02:43:17.1360461+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-10-15T08:11:38.1900072+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"a97d8fb6-f11d-4250-81e7-7e0221941d3d\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"d8c050ed-5a1a-4de9-a7a4-b0c2372a54ae\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -2108,7 +2108,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:43:19 GMT + - Thu, 15 Oct 2020 08:11:40 GMT expires: - '-1' pragma: @@ -2125,7 +2125,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4979,Microsoft.Compute/LowCostGet30Min;39972 + - Microsoft.Compute/LowCostGet3Min;4976,Microsoft.Compute/LowCostGet30Min;39961 status: code: 200 message: OK @@ -2144,14 +2144,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.11.1 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.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-06-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-09-04T02:40:20Z"},"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":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2160,7 +2160,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:43:20 GMT + - Thu, 15 Oct 2020 08:11:41 GMT expires: - '-1' pragma: @@ -2195,7 +2195,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT @@ -2208,7 +2208,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-09-04T02:43:26.2239935+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-10-15T08:11:46.6078375+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 @@ -2216,7 +2216,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/34dd696d-8d8a-40fd-8559-804349b5b263?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/fac2890f-ff03-4ecd-8e0c-231b8113ea7f?api-version=2019-12-01 cache-control: - no-cache content-length: @@ -2224,7 +2224,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:43:26 GMT + - Thu, 15 Oct 2020 08:11:47 GMT expires: - '-1' pragma: @@ -2237,9 +2237,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: - - '1197' + - '1198' status: code: 201 message: Created @@ -2258,13 +2258,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/capsOperations/34dd696d-8d8a-40fd-8559-804349b5b263?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/fac2890f-ff03-4ecd-8e0c-231b8113ea7f?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-04T02:43:26.2239935+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"34dd696d-8d8a-40fd-8559-804349b5b263\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:11:46.6078375+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"fac2890f-ff03-4ecd-8e0c-231b8113ea7f\"\r\n}" headers: cache-control: - no-cache @@ -2273,7 +2273,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:43:57 GMT + - Thu, 15 Oct 2020 08:12:17 GMT expires: - '-1' pragma: @@ -2290,7 +2290,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;2394 + - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4183 status: code: 200 message: OK @@ -2309,13 +2309,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/capsOperations/34dd696d-8d8a-40fd-8559-804349b5b263?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/fac2890f-ff03-4ecd-8e0c-231b8113ea7f?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-04T02:43:26.2239935+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"34dd696d-8d8a-40fd-8559-804349b5b263\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:11:46.6078375+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"fac2890f-ff03-4ecd-8e0c-231b8113ea7f\"\r\n}" headers: cache-control: - no-cache @@ -2324,7 +2324,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:44:28 GMT + - Thu, 15 Oct 2020 08:12:47 GMT expires: - '-1' pragma: @@ -2341,7 +2341,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;2391 + - Microsoft.Compute/GetOperationStatus3Min;1180,Microsoft.Compute/GetOperationStatus30Min;4177 status: code: 200 message: OK @@ -2360,13 +2360,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/capsOperations/34dd696d-8d8a-40fd-8559-804349b5b263?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/fac2890f-ff03-4ecd-8e0c-231b8113ea7f?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-04T02:43:26.2239935+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"34dd696d-8d8a-40fd-8559-804349b5b263\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:11:46.6078375+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"fac2890f-ff03-4ecd-8e0c-231b8113ea7f\"\r\n}" headers: cache-control: - no-cache @@ -2375,7 +2375,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:44:58 GMT + - Thu, 15 Oct 2020 08:13:18 GMT expires: - '-1' pragma: @@ -2392,7 +2392,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;2388 + - Microsoft.Compute/GetOperationStatus3Min;1178,Microsoft.Compute/GetOperationStatus30Min;4172 status: code: 200 message: OK @@ -2411,13 +2411,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/capsOperations/34dd696d-8d8a-40fd-8559-804349b5b263?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/fac2890f-ff03-4ecd-8e0c-231b8113ea7f?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-04T02:43:26.2239935+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"34dd696d-8d8a-40fd-8559-804349b5b263\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:11:46.6078375+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"fac2890f-ff03-4ecd-8e0c-231b8113ea7f\"\r\n}" headers: cache-control: - no-cache @@ -2426,7 +2426,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:45:29 GMT + - Thu, 15 Oct 2020 08:13:48 GMT expires: - '-1' pragma: @@ -2443,7 +2443,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;2385 + - Microsoft.Compute/GetOperationStatus3Min;1175,Microsoft.Compute/GetOperationStatus30Min;4166 status: code: 200 message: OK @@ -2462,13 +2462,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/capsOperations/34dd696d-8d8a-40fd-8559-804349b5b263?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/fac2890f-ff03-4ecd-8e0c-231b8113ea7f?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-04T02:43:26.2239935+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"34dd696d-8d8a-40fd-8559-804349b5b263\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:11:46.6078375+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"fac2890f-ff03-4ecd-8e0c-231b8113ea7f\"\r\n}" headers: cache-control: - no-cache @@ -2477,7 +2477,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:45:58 GMT + - Thu, 15 Oct 2020 08:14:18 GMT expires: - '-1' pragma: @@ -2494,7 +2494,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;2383 + - Microsoft.Compute/GetOperationStatus3Min;1172,Microsoft.Compute/GetOperationStatus30Min;4160 status: code: 200 message: OK @@ -2513,13 +2513,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/capsOperations/34dd696d-8d8a-40fd-8559-804349b5b263?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/fac2890f-ff03-4ecd-8e0c-231b8113ea7f?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-04T02:43:26.2239935+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"34dd696d-8d8a-40fd-8559-804349b5b263\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:11:46.6078375+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"fac2890f-ff03-4ecd-8e0c-231b8113ea7f\"\r\n}" headers: cache-control: - no-cache @@ -2528,7 +2528,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:46:29 GMT + - Thu, 15 Oct 2020 08:14:49 GMT expires: - '-1' pragma: @@ -2545,7 +2545,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2380 + - Microsoft.Compute/GetOperationStatus3Min;1168,Microsoft.Compute/GetOperationStatus30Min;4155 status: code: 200 message: OK @@ -2564,13 +2564,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/capsOperations/34dd696d-8d8a-40fd-8559-804349b5b263?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/fac2890f-ff03-4ecd-8e0c-231b8113ea7f?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-04T02:43:26.2239935+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"34dd696d-8d8a-40fd-8559-804349b5b263\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:11:46.6078375+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"fac2890f-ff03-4ecd-8e0c-231b8113ea7f\"\r\n}" headers: cache-control: - no-cache @@ -2579,7 +2579,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:47:00 GMT + - Thu, 15 Oct 2020 08:15:19 GMT expires: - '-1' pragma: @@ -2596,7 +2596,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;2377 + - Microsoft.Compute/GetOperationStatus3Min;1168,Microsoft.Compute/GetOperationStatus30Min;4149 status: code: 200 message: OK @@ -2615,13 +2615,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/capsOperations/34dd696d-8d8a-40fd-8559-804349b5b263?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/fac2890f-ff03-4ecd-8e0c-231b8113ea7f?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-04T02:43:26.2239935+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"34dd696d-8d8a-40fd-8559-804349b5b263\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:11:46.6078375+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"fac2890f-ff03-4ecd-8e0c-231b8113ea7f\"\r\n}" headers: cache-control: - no-cache @@ -2630,7 +2630,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:47:30 GMT + - Thu, 15 Oct 2020 08:15:49 GMT expires: - '-1' pragma: @@ -2647,7 +2647,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;2374 + - Microsoft.Compute/GetOperationStatus3Min;1167,Microsoft.Compute/GetOperationStatus30Min;4143 status: code: 200 message: OK @@ -2666,13 +2666,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/capsOperations/34dd696d-8d8a-40fd-8559-804349b5b263?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/fac2890f-ff03-4ecd-8e0c-231b8113ea7f?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-04T02:43:26.2239935+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"34dd696d-8d8a-40fd-8559-804349b5b263\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:11:46.6078375+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"fac2890f-ff03-4ecd-8e0c-231b8113ea7f\"\r\n}" headers: cache-control: - no-cache @@ -2681,7 +2681,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:48:00 GMT + - Thu, 15 Oct 2020 08:16:19 GMT expires: - '-1' pragma: @@ -2698,7 +2698,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;2372 + - Microsoft.Compute/GetOperationStatus3Min;1167,Microsoft.Compute/GetOperationStatus30Min;4137 status: code: 200 message: OK @@ -2717,13 +2717,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/capsOperations/34dd696d-8d8a-40fd-8559-804349b5b263?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/fac2890f-ff03-4ecd-8e0c-231b8113ea7f?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-04T02:43:26.2239935+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"34dd696d-8d8a-40fd-8559-804349b5b263\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:11:46.6078375+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"fac2890f-ff03-4ecd-8e0c-231b8113ea7f\"\r\n}" headers: cache-control: - no-cache @@ -2732,7 +2732,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:48:30 GMT + - Thu, 15 Oct 2020 08:16:50 GMT expires: - '-1' pragma: @@ -2749,7 +2749,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;2369 + - Microsoft.Compute/GetOperationStatus3Min;1168,Microsoft.Compute/GetOperationStatus30Min;4132 status: code: 200 message: OK @@ -2768,13 +2768,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/capsOperations/34dd696d-8d8a-40fd-8559-804349b5b263?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/fac2890f-ff03-4ecd-8e0c-231b8113ea7f?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-04T02:43:26.2239935+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"34dd696d-8d8a-40fd-8559-804349b5b263\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:11:46.6078375+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"fac2890f-ff03-4ecd-8e0c-231b8113ea7f\"\r\n}" headers: cache-control: - no-cache @@ -2783,7 +2783,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:49:01 GMT + - Thu, 15 Oct 2020 08:17:20 GMT expires: - '-1' pragma: @@ -2800,7 +2800,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;2366 + - Microsoft.Compute/GetOperationStatus3Min;1168,Microsoft.Compute/GetOperationStatus30Min;4127 status: code: 200 message: OK @@ -2819,13 +2819,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/capsOperations/34dd696d-8d8a-40fd-8559-804349b5b263?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/fac2890f-ff03-4ecd-8e0c-231b8113ea7f?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-04T02:43:26.2239935+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"34dd696d-8d8a-40fd-8559-804349b5b263\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:11:46.6078375+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"fac2890f-ff03-4ecd-8e0c-231b8113ea7f\"\r\n}" headers: cache-control: - no-cache @@ -2834,7 +2834,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:49:31 GMT + - Thu, 15 Oct 2020 08:17:51 GMT expires: - '-1' pragma: @@ -2851,7 +2851,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;2363 + - Microsoft.Compute/GetOperationStatus3Min;1168,Microsoft.Compute/GetOperationStatus30Min;4121 status: code: 200 message: OK @@ -2870,13 +2870,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/capsOperations/34dd696d-8d8a-40fd-8559-804349b5b263?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/fac2890f-ff03-4ecd-8e0c-231b8113ea7f?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-04T02:43:26.2239935+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"34dd696d-8d8a-40fd-8559-804349b5b263\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:11:46.6078375+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"fac2890f-ff03-4ecd-8e0c-231b8113ea7f\"\r\n}" headers: cache-control: - no-cache @@ -2885,7 +2885,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:50:01 GMT + - Thu, 15 Oct 2020 08:18:22 GMT expires: - '-1' pragma: @@ -2902,7 +2902,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;2361 + - Microsoft.Compute/GetOperationStatus3Min;1167,Microsoft.Compute/GetOperationStatus30Min;4115 status: code: 200 message: OK @@ -2921,13 +2921,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/capsOperations/34dd696d-8d8a-40fd-8559-804349b5b263?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/fac2890f-ff03-4ecd-8e0c-231b8113ea7f?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-04T02:43:26.2239935+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"34dd696d-8d8a-40fd-8559-804349b5b263\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:11:46.6078375+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"fac2890f-ff03-4ecd-8e0c-231b8113ea7f\"\r\n}" headers: cache-control: - no-cache @@ -2936,7 +2936,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:50:31 GMT + - Thu, 15 Oct 2020 08:18:52 GMT expires: - '-1' pragma: @@ -2953,7 +2953,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;2358 + - Microsoft.Compute/GetOperationStatus3Min;1167,Microsoft.Compute/GetOperationStatus30Min;4109 status: code: 200 message: OK @@ -2972,13 +2972,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/capsOperations/34dd696d-8d8a-40fd-8559-804349b5b263?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/fac2890f-ff03-4ecd-8e0c-231b8113ea7f?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-04T02:43:26.2239935+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"34dd696d-8d8a-40fd-8559-804349b5b263\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:11:46.6078375+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"fac2890f-ff03-4ecd-8e0c-231b8113ea7f\"\r\n}" headers: cache-control: - no-cache @@ -2987,7 +2987,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:51:02 GMT + - Thu, 15 Oct 2020 08:19:22 GMT expires: - '-1' pragma: @@ -3004,7 +3004,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;2355 + - Microsoft.Compute/GetOperationStatus3Min;1165,Microsoft.Compute/GetOperationStatus30Min;4102 status: code: 200 message: OK @@ -3023,13 +3023,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/capsOperations/34dd696d-8d8a-40fd-8559-804349b5b263?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/fac2890f-ff03-4ecd-8e0c-231b8113ea7f?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-04T02:43:26.2239935+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"34dd696d-8d8a-40fd-8559-804349b5b263\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:11:46.6078375+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"fac2890f-ff03-4ecd-8e0c-231b8113ea7f\"\r\n}" headers: cache-control: - no-cache @@ -3038,7 +3038,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:51:33 GMT + - Thu, 15 Oct 2020 08:19:52 GMT expires: - '-1' pragma: @@ -3055,7 +3055,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;2352 + - Microsoft.Compute/GetOperationStatus3Min;1163,Microsoft.Compute/GetOperationStatus30Min;4094 status: code: 200 message: OK @@ -3074,14 +3074,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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/capsOperations/34dd696d-8d8a-40fd-8559-804349b5b263?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/fac2890f-ff03-4ecd-8e0c-231b8113ea7f?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-09-04T02:43:26.2239935+00:00\",\r\n \"endTime\": - \"2020-09-04T02:51:56.8415125+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"34dd696d-8d8a-40fd-8559-804349b5b263\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T08:11:46.6078375+00:00\",\r\n \"endTime\": + \"2020-10-15T08:20:17.1736671+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"fac2890f-ff03-4ecd-8e0c-231b8113ea7f\"\r\n}" headers: cache-control: - no-cache @@ -3090,7 +3090,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:52:03 GMT + - Thu, 15 Oct 2020 08:20:22 GMT expires: - '-1' pragma: @@ -3107,7 +3107,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;2349 + - Microsoft.Compute/GetOperationStatus3Min;1162,Microsoft.Compute/GetOperationStatus30Min;4087 status: code: 200 message: OK @@ -3126,7 +3126,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/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: @@ -3137,7 +3137,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-09-04T02:43:26.2239935+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-10-15T08:11:46.6078375+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 @@ -3151,7 +3151,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:52:03 GMT + - Thu, 15 Oct 2020 08:20:23 GMT expires: - '-1' pragma: @@ -3168,7 +3168,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9997 + - Microsoft.Compute/GetGalleryImageVersion3Min;1997,Microsoft.Compute/GetGalleryImageVersion30Min;9993 status: code: 200 message: OK @@ -3187,14 +3187,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.11.1 + azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.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-06-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-09-04T02:40:20Z"},"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":"2020-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3203,7 +3203,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:52:04 GMT + - Thu, 15 Oct 2020 08:20:23 GMT expires: - '-1' pragma: @@ -3238,7 +3238,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT @@ -3254,7 +3254,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/8213665a-b529-44a5-83a4-5872351cd05e?api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/b2f71921-9039-406d-9372-ab0be4048306?api-version=2020-06-30 cache-control: - no-cache content-length: @@ -3262,11 +3262,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:52:09 GMT + - Thu, 15 Oct 2020 08:20:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/8213665a-b529-44a5-83a4-5872351cd05e?monitor=true&api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/b2f71921-9039-406d-9372-ab0be4048306?monitor=true&api-version=2020-06-30 pragma: - no-cache server: @@ -3277,9 +3277,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7991 + - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7992 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1194' status: code: 202 message: Accepted @@ -3298,13 +3298,13 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/westus/DiskOperations/8213665a-b529-44a5-83a4-5872351cd05e?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/b2f71921-9039-406d-9372-ab0be4048306?api-version=2020-06-30 response: body: - string: "{\r\n \"startTime\": \"2020-09-04T02:52:09.2810768+00:00\",\r\n \"endTime\": - \"2020-09-04T02:52:09.8123201+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2020-10-15T08:20:29.4675862+00:00\",\r\n \"endTime\": + \"2020-10-15T08:20:30.0769202+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 @@ -3315,11 +3315,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\": \"2020-09-04T02:52:09.3123285+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-10-15T08:20:29.5144508+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"5b5cb0c5-0dfc-425c-8dc7-fcf9c721d008\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"e1957bbd-fe15-4d80-ad63-03af53723dbf\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"8213665a-b529-44a5-83a4-5872351cd05e\"\r\n}" + \ },\r\n \"name\": \"b2f71921-9039-406d-9372-ab0be4048306\"\r\n}" headers: cache-control: - no-cache @@ -3328,7 +3328,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:52:11 GMT + - Thu, 15 Oct 2020 08:20:31 GMT expires: - '-1' pragma: @@ -3345,7 +3345,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399963 + - Microsoft.Compute/GetOperation3Min;49988,Microsoft.Compute/GetOperation30Min;399945 status: code: 200 message: OK @@ -3364,7 +3364,7 @@ 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-compute/13.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d4?api-version=2020-06-30 response: @@ -3378,9 +3378,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\": \"2020-09-04T02:52:09.3123285+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-10-15T08:20:29.5144508+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"5b5cb0c5-0dfc-425c-8dc7-fcf9c721d008\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"e1957bbd-fe15-4d80-ad63-03af53723dbf\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: @@ -3390,7 +3390,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:52:11 GMT + - Thu, 15 Oct 2020 08:20:31 GMT expires: - '-1' pragma: @@ -3407,7 +3407,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4987,Microsoft.Compute/LowCostGet30Min;39955 + - Microsoft.Compute/LowCostGet3Min;4987,Microsoft.Compute/LowCostGet30Min;39939 status: code: 200 message: OK @@ -3432,7 +3432,7 @@ interactions: - -g -n --size-gb --max-shares -l 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.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT @@ -3447,7 +3447,7 @@ interactions: true,\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/25c41b2d-dbe1-4247-8239-2877f921ebbc?api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/30e91040-8f19-4a3a-905d-6e0164c33362?api-version=2020-06-30 cache-control: - no-cache content-length: @@ -3455,11 +3455,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:52:19 GMT + - Thu, 15 Oct 2020 08:20:38 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/25c41b2d-dbe1-4247-8239-2877f921ebbc?monitor=true&api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/30e91040-8f19-4a3a-905d-6e0164c33362?monitor=true&api-version=2020-06-30 pragma: - no-cache server: @@ -3472,7 +3472,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 @@ -3491,13 +3491,13 @@ interactions: - -g -n --size-gb --max-shares -l 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.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/centraluseuap/DiskOperations/25c41b2d-dbe1-4247-8239-2877f921ebbc?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/30e91040-8f19-4a3a-905d-6e0164c33362?api-version=2020-06-30 response: body: - string: "{\r\n \"startTime\": \"2020-09-04T02:52:19.6318963+00:00\",\r\n \"endTime\": - \"2020-09-04T02:52:19.8429242+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2020-10-15T08:20:38.999416+00:00\",\r\n \"endTime\": + \"2020-10-15T08:20:39.1894141+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 @@ -3506,20 +3506,20 @@ interactions: \ \"creationData\": {\r\n \"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-09-04T02:52:19.6418973+00:00\",\r\n + \ },\r\n \"maxShares\": 2,\r\n \"timeCreated\": \"2020-10-15T08:20:38.999416+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 274877906944,\r\n \"uniqueId\": \"ff69d58b-f46d-4768-82f7-f1c05e768703\",\r\n + \ \"diskSizeBytes\": 274877906944,\r\n \"uniqueId\": \"0e43c152-e4a1-404f-8b93-727719e17799\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"25c41b2d-dbe1-4247-8239-2877f921ebbc\"\r\n}" + \ },\r\n \"name\": \"30e91040-8f19-4a3a-905d-6e0164c33362\"\r\n}" headers: cache-control: - no-cache content-length: - - '1175' + - '1173' content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:52:22 GMT + - Thu, 15 Oct 2020 08:20:40 GMT expires: - '-1' pragma: @@ -3555,7 +3555,7 @@ interactions: - -g -n --size-gb --max-shares -l 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.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6?api-version=2020-06-30 response: @@ -3567,19 +3567,19 @@ interactions: \ \"creationData\": {\r\n \"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-09-04T02:52:19.6418973+00:00\",\r\n + \ },\r\n \"maxShares\": 2,\r\n \"timeCreated\": \"2020-10-15T08:20:38.999416+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 274877906944,\r\n \"uniqueId\": \"ff69d58b-f46d-4768-82f7-f1c05e768703\",\r\n + \ \"diskSizeBytes\": 274877906944,\r\n \"uniqueId\": \"0e43c152-e4a1-404f-8b93-727719e17799\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '950' + - '949' content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:52:23 GMT + - Thu, 15 Oct 2020 08:20:41 GMT expires: - '-1' pragma: @@ -3615,7 +3615,7 @@ interactions: - -g -n --max-shares 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.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -3629,19 +3629,19 @@ interactions: \ \"creationData\": {\r\n \"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-09-04T02:52:19.6418973+00:00\",\r\n + \ },\r\n \"maxShares\": 2,\r\n \"timeCreated\": \"2020-10-15T08:20:38.999416+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 274877906944,\r\n \"uniqueId\": \"ff69d58b-f46d-4768-82f7-f1c05e768703\",\r\n + \ \"diskSizeBytes\": 274877906944,\r\n \"uniqueId\": \"0e43c152-e4a1-404f-8b93-727719e17799\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '950' + - '949' content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:52:24 GMT + - Thu, 15 Oct 2020 08:20:42 GMT expires: - '-1' pragma: @@ -3685,7 +3685,7 @@ interactions: - -g -n --max-shares 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.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + azure-mgmt-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT @@ -3702,7 +3702,7 @@ interactions: \"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/7bb11ea6-bac8-45ff-847b-aa68d54e4bb2?api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/e9e917f8-347e-4569-be99-49486c646cee?api-version=2020-06-30 cache-control: - no-cache content-length: @@ -3710,11 +3710,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:52:25 GMT + - Thu, 15 Oct 2020 08:20:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/7bb11ea6-bac8-45ff-847b-aa68d54e4bb2?monitor=true&api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/e9e917f8-347e-4569-be99-49486c646cee?monitor=true&api-version=2020-06-30 pragma: - no-cache server: @@ -3727,7 +3727,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7998 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1195' status: code: 202 message: Accepted @@ -3746,13 +3746,13 @@ interactions: - -g -n --max-shares 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.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/centraluseuap/DiskOperations/7bb11ea6-bac8-45ff-847b-aa68d54e4bb2?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/e9e917f8-347e-4569-be99-49486c646cee?api-version=2020-06-30 response: body: - string: "{\r\n \"startTime\": \"2020-09-04T02:52:26.4888691+00:00\",\r\n \"endTime\": - \"2020-09-04T02:52:26.7297905+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2020-10-15T08:20:44.1487848+00:00\",\r\n \"endTime\": + \"2020-10-15T08:20:44.3337679+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 @@ -3761,20 +3761,20 @@ interactions: \ \"creationData\": {\r\n \"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-09-04T02:52:19.6418973+00:00\",\r\n + \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2020-10-15T08:20:38.999416+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 274877906944,\r\n \"uniqueId\": \"ff69d58b-f46d-4768-82f7-f1c05e768703\",\r\n + \ \"diskSizeBytes\": 274877906944,\r\n \"uniqueId\": \"0e43c152-e4a1-404f-8b93-727719e17799\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"7bb11ea6-bac8-45ff-847b-aa68d54e4bb2\"\r\n}" + \ },\r\n \"name\": \"e9e917f8-347e-4569-be99-49486c646cee\"\r\n}" headers: cache-control: - no-cache content-length: - - '1175' + - '1174' content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:52:29 GMT + - Thu, 15 Oct 2020 08:20:46 GMT expires: - '-1' pragma: @@ -3810,7 +3810,7 @@ interactions: - -g -n --max-shares 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.0.0 Azure-SDK-For-Python AZURECLI/2.11.1 + 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/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6?api-version=2020-06-30 response: @@ -3822,19 +3822,19 @@ interactions: \ \"creationData\": {\r\n \"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-09-04T02:52:19.6418973+00:00\",\r\n + \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2020-10-15T08:20:38.999416+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 274877906944,\r\n \"uniqueId\": \"ff69d58b-f46d-4768-82f7-f1c05e768703\",\r\n + \ \"diskSizeBytes\": 274877906944,\r\n \"uniqueId\": \"0e43c152-e4a1-404f-8b93-727719e17799\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '950' + - '949' content-type: - application/json; charset=utf-8 date: - - Fri, 04 Sep 2020 02:52:29 GMT + - Thu, 15 Oct 2020 08:20:46 GMT expires: - '-1' pragma: From e9afac34a6b295da42df933b4d011ca633dbad5a Mon Sep 17 00:00:00 2001 From: Feiyue Yu Date: Fri, 16 Oct 2020 10:03:11 +0800 Subject: [PATCH 4/7] test --- .../azure/cli/command_modules/vm/_params.py | 2 +- .../azure/cli/command_modules/vm/custom.py | 1 + .../test_vm_disk_max_shares_etc.yaml | 2667 +---------------- .../vm/tests/latest/test_vm_commands.py | 2 +- 4 files changed, 128 insertions(+), 2544 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 c7062b4b8bb..742baa7cb6d 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/_params.py +++ b/src/azure-cli/azure/cli/command_modules/vm/_params.py @@ -856,7 +856,7 @@ def load_arguments(self, _): c.argument('release_note_uri', help='The release note uri') c.argument('end_of_life_date', help="the end of life date, e.g. '2020-12-31'") c.argument('disallowed_disk_types', nargs='*', help='disk types which would not work with the image, e.g., Standard_LRS') - c.argument('features', help='Features', min_api='2020-09-30') + c.argument('features', help='Features') with self.argument_context('sig create') as c: c.argument('description', help='the description of the gallery') 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 d36b210fb26..0044868cf39 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/custom.py +++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py @@ -3201,6 +3201,7 @@ def create_gallery_image(cmd, resource_group_name, gallery_name, gallery_image_n feature_list = None if features: + feature_list = [] for item in features.split(): try: key, value = item.split('=', 1) 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 f16fdb701a3..dc4aca55cfb 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-06-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-10-15T08:08:49Z"},"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":"2020-10-15T09:27:22Z"},"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:53 GMT + - Thu, 15 Oct 2020 09:27:26 GMT expires: - '-1' pragma: @@ -81,7 +81,7 @@ interactions: \ \"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/0d5e43ab-9ddc-4d2e-951a-3f59ab6e0763?api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/c93f8fbf-8984-42bb-a7a7-4d7cd3fda71a?api-version=2020-06-30 cache-control: - no-cache content-length: @@ -89,11 +89,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:08:59 GMT + - Thu, 15 Oct 2020 09:27:30 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/0d5e43ab-9ddc-4d2e-951a-3f59ab6e0763?monitor=true&api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/c93f8fbf-8984-42bb-a7a7-4d7cd3fda71a?monitor=true&api-version=2020-06-30 pragma: - no-cache server: @@ -104,9 +104,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;7991 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted @@ -127,11 +127,11 @@ interactions: - 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/westus/DiskOperations/0d5e43ab-9ddc-4d2e-951a-3f59ab6e0763?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/c93f8fbf-8984-42bb-a7a7-4d7cd3fda71a?api-version=2020-06-30 response: body: - string: "{\r\n \"startTime\": \"2020-10-15T08:09:00.5623634+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"0d5e43ab-9ddc-4d2e-951a-3f59ab6e0763\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T09:27:31.0296037+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"c93f8fbf-8984-42bb-a7a7-4d7cd3fda71a\"\r\n}" headers: cache-control: - no-cache @@ -140,7 +140,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:09:02 GMT + - Thu, 15 Oct 2020 09:27:33 GMT expires: - '-1' pragma: @@ -157,7 +157,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399999 + - Microsoft.Compute/GetOperation3Min;49996,Microsoft.Compute/GetOperation30Min;399963 status: code: 200 message: OK @@ -178,11 +178,11 @@ interactions: - 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/westus/DiskOperations/0d5e43ab-9ddc-4d2e-951a-3f59ab6e0763?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/c93f8fbf-8984-42bb-a7a7-4d7cd3fda71a?api-version=2020-06-30 response: body: - string: "{\r\n \"startTime\": \"2020-10-15T08:09:00.5623634+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"0d5e43ab-9ddc-4d2e-951a-3f59ab6e0763\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T09:27:31.0296037+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"c93f8fbf-8984-42bb-a7a7-4d7cd3fda71a\"\r\n}" headers: cache-control: - no-cache @@ -191,7 +191,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:09:12 GMT + - Thu, 15 Oct 2020 09:27:43 GMT expires: - '-1' pragma: @@ -208,7 +208,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399997 + - Microsoft.Compute/GetOperation3Min;49994,Microsoft.Compute/GetOperation30Min;399961 status: code: 200 message: OK @@ -229,13 +229,13 @@ interactions: - 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/westus/DiskOperations/0d5e43ab-9ddc-4d2e-951a-3f59ab6e0763?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/c93f8fbf-8984-42bb-a7a7-4d7cd3fda71a?api-version=2020-06-30 response: body: - string: "{\r\n \"startTime\": \"2020-10-15T08:09:00.5623634+00:00\",\r\n \"endTime\": - \"2020-10-15T08:09:27.9843154+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\":{\"hyperVGeneration\":\"V1\",\"creationData\":{\"createOption\":\"Empty\",\"logicalSectorSize\":4096},\"diskSizeGB\":10,\"diskIOPSReadWrite\":100,\"diskMBpsReadWrite\":13,\"readOnly\":false,\"diskIOPSReadOnly\":200,\"diskMBpsReadOnly\":30,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"maxShares\":1,\"timeCreated\":\"2020-10-15T08:09:00.5779835+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":10737418240,\"uniqueId\":\"d80736fd-6d96-4e9e-854b-30f0532895f3\",\"networkAccessPolicy\":\"AllowAll\"}}\r\n - \ },\r\n \"name\": \"0d5e43ab-9ddc-4d2e-951a-3f59ab6e0763\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T09:27:31.0296037+00:00\",\r\n \"endTime\": + \"2020-10-15T09:27:58.4203863+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\":{\"hyperVGeneration\":\"V1\",\"creationData\":{\"createOption\":\"Empty\",\"logicalSectorSize\":4096},\"diskSizeGB\":10,\"diskIOPSReadWrite\":100,\"diskMBpsReadWrite\":13,\"readOnly\":false,\"diskIOPSReadOnly\":200,\"diskMBpsReadOnly\":30,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"maxShares\":1,\"timeCreated\":\"2020-10-15T09:27:31.0296037+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":10737418240,\"uniqueId\":\"7382c8ec-2de8-4051-a5dc-affde23c2be7\",\"networkAccessPolicy\":\"AllowAll\"}}\r\n + \ },\r\n \"name\": \"c93f8fbf-8984-42bb-a7a7-4d7cd3fda71a\"\r\n}" headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:09:43 GMT + - Thu, 15 Oct 2020 09:28:13 GMT expires: - '-1' pragma: @@ -261,7 +261,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49994,Microsoft.Compute/GetOperation30Min;399994 + - Microsoft.Compute/GetOperation3Min;49994,Microsoft.Compute/GetOperation30Min;399958 status: code: 200 message: OK @@ -294,9 +294,9 @@ interactions: \ \"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-10-15T08:09:00.5779835+00:00\",\r\n \"provisioningState\": + \ \"timeCreated\": \"2020-10-15T09:27:31.0296037+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 10737418240,\r\n \"uniqueId\": \"d80736fd-6d96-4e9e-854b-30f0532895f3\",\r\n + 10737418240,\r\n \"uniqueId\": \"7382c8ec-2de8-4051-a5dc-affde23c2be7\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -306,7 +306,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:09:44 GMT + - Thu, 15 Oct 2020 09:28:14 GMT expires: - '-1' pragma: @@ -323,7 +323,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4991,Microsoft.Compute/LowCostGet30Min;39983 + - Microsoft.Compute/LowCostGet3Min;4998,Microsoft.Compute/LowCostGet30Min;39943 status: code: 200 message: OK @@ -358,9 +358,9 @@ interactions: \ \"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-10-15T08:09:00.5779835+00:00\",\r\n \"provisioningState\": + \ \"timeCreated\": \"2020-10-15T09:27:31.0296037+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 10737418240,\r\n \"uniqueId\": \"d80736fd-6d96-4e9e-854b-30f0532895f3\",\r\n + 10737418240,\r\n \"uniqueId\": \"7382c8ec-2de8-4051-a5dc-affde23c2be7\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -370,7 +370,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:09:45 GMT + - Thu, 15 Oct 2020 09:28:15 GMT expires: - '-1' pragma: @@ -387,7 +387,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4990,Microsoft.Compute/LowCostGet30Min;39982 + - Microsoft.Compute/LowCostGet3Min;4997,Microsoft.Compute/LowCostGet30Min;39942 status: code: 200 message: OK @@ -434,7 +434,7 @@ interactions: 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/9a824aaa-c182-45ec-bdae-673f7ab90d4b?api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/9a823baa-f2ba-4484-b47c-16aab1d628cd?api-version=2020-06-30 cache-control: - no-cache content-length: @@ -442,11 +442,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:09:47 GMT + - Thu, 15 Oct 2020 09:28:16 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/9a824aaa-c182-45ec-bdae-673f7ab90d4b?monitor=true&api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/9a823baa-f2ba-4484-b47c-16aab1d628cd?monitor=true&api-version=2020-06-30 pragma: - no-cache server: @@ -457,9 +457,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;7990 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted @@ -480,11 +480,11 @@ interactions: - 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/westus/DiskOperations/9a824aaa-c182-45ec-bdae-673f7ab90d4b?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/9a823baa-f2ba-4484-b47c-16aab1d628cd?api-version=2020-06-30 response: body: - string: "{\r\n \"startTime\": \"2020-10-15T08:09:47.6345638+00:00\",\r\n \"endTime\": - \"2020-10-15T08:09:47.7594788+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2020-10-15T09:28:16.8446074+00:00\",\r\n \"endTime\": + \"2020-10-15T09:28:17.0321087+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 @@ -495,11 +495,11 @@ interactions: \ \"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-10-15T08:09:00.5779835+00:00\",\r\n \"provisioningState\": + \ \"timeCreated\": \"2020-10-15T09:27:31.0296037+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 10737418240,\r\n \"uniqueId\": \"d80736fd-6d96-4e9e-854b-30f0532895f3\",\r\n + 10737418240,\r\n \"uniqueId\": \"7382c8ec-2de8-4051-a5dc-affde23c2be7\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"9a824aaa-c182-45ec-bdae-673f7ab90d4b\"\r\n}" + \"9a823baa-f2ba-4484-b47c-16aab1d628cd\"\r\n}" headers: cache-control: - no-cache @@ -508,7 +508,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:09:49 GMT + - Thu, 15 Oct 2020 09:28:18 GMT expires: - '-1' pragma: @@ -525,7 +525,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;399957 status: code: 200 message: OK @@ -558,9 +558,9 @@ interactions: \ \"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-10-15T08:09:00.5779835+00:00\",\r\n \"provisioningState\": + \ \"timeCreated\": \"2020-10-15T09:27:31.0296037+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 10737418240,\r\n \"uniqueId\": \"d80736fd-6d96-4e9e-854b-30f0532895f3\",\r\n + 10737418240,\r\n \"uniqueId\": \"7382c8ec-2de8-4051-a5dc-affde23c2be7\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -570,7 +570,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:09:49 GMT + - Thu, 15 Oct 2020 09:28:19 GMT expires: - '-1' pragma: @@ -587,7 +587,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4988,Microsoft.Compute/LowCostGet30Min;39980 + - Microsoft.Compute/LowCostGet3Min;4995,Microsoft.Compute/LowCostGet30Min;39940 status: code: 200 message: OK @@ -613,7 +613,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-06-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-10-15T08:08:49Z"},"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":"2020-10-15T09:27:22Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -622,7 +622,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:09:51 GMT + - Thu, 15 Oct 2020 09:28:19 GMT expires: - '-1' pragma: @@ -673,7 +673,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/1cebd28d-5b8a-4092-8f8d-8fc41a2c2721?api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f48eacef-3ce3-4583-8765-434f7229171b?api-version=2020-06-30 cache-control: - no-cache content-length: @@ -681,11 +681,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:09:57 GMT + - Thu, 15 Oct 2020 09:28:24 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1cebd28d-5b8a-4092-8f8d-8fc41a2c2721?monitor=true&api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f48eacef-3ce3-4583-8765-434f7229171b?monitor=true&api-version=2020-06-30 pragma: - no-cache server: @@ -696,9 +696,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;7989 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 202 message: Accepted @@ -719,11 +719,11 @@ interactions: - 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/westus/DiskOperations/1cebd28d-5b8a-4092-8f8d-8fc41a2c2721?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f48eacef-3ce3-4583-8765-434f7229171b?api-version=2020-06-30 response: body: - string: "{\r\n \"startTime\": \"2020-10-15T08:09:57.6044365+00:00\",\r\n \"endTime\": - \"2020-10-15T08:09:58.4640233+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2020-10-15T09:28:25.1883661+00:00\",\r\n \"endTime\": + \"2020-10-15T09:28:26.0008765+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 @@ -733,20 +733,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\": \"2020-10-15T08:09:57.635708+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-10-15T09:28:25.2040027+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"eeaa2ddd-9502-4c2a-b978-039ecec0b2e7\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"29a67a12-5058-44b5-bbf5-65434b8d33c6\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"1cebd28d-5b8a-4092-8f8d-8fc41a2c2721\"\r\n}" + \ },\r\n \"name\": \"f48eacef-3ce3-4583-8765-434f7229171b\"\r\n}" headers: cache-control: - no-cache content-length: - - '1423' + - '1424' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:10:00 GMT + - Thu, 15 Oct 2020 09:28:27 GMT expires: - '-1' pragma: @@ -763,7 +763,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49991,Microsoft.Compute/GetOperation30Min;399991 + - Microsoft.Compute/GetOperation3Min;49991,Microsoft.Compute/GetOperation30Min;399955 status: code: 200 message: OK @@ -795,19 +795,19 @@ 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-10-15T08:09:57.635708+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-10-15T09:28:25.2040027+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"eeaa2ddd-9502-4c2a-b978-039ecec0b2e7\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"29a67a12-5058-44b5-bbf5-65434b8d33c6\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1198' + - '1199' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:10:00 GMT + - Thu, 15 Oct 2020 09:28:27 GMT expires: - '-1' pragma: @@ -824,7 +824,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4987,Microsoft.Compute/LowCostGet30Min;39978 + - Microsoft.Compute/LowCostGet3Min;4993,Microsoft.Compute/LowCostGet30Min;39938 status: code: 200 message: OK @@ -850,7 +850,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-06-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-10-15T08:08:49Z"},"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":"2020-10-15T09:27:22Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -859,7 +859,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:10:00 GMT + - Thu, 15 Oct 2020 09:28:28 GMT expires: - '-1' pragma: @@ -910,7 +910,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:10:01 GMT + - Thu, 15 Oct 2020 09:28:29 GMT expires: - '-1' pragma: @@ -966,7 +966,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/090373c5-6ea2-458a-b5ca-014b2f6ce50f?api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4caffb0d-0cd6-4827-8355-82acd44db08e?api-version=2020-06-30 cache-control: - no-cache content-length: @@ -974,11 +974,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:10:06 GMT + - Thu, 15 Oct 2020 09:28:33 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/090373c5-6ea2-458a-b5ca-014b2f6ce50f?monitor=true&api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4caffb0d-0cd6-4827-8355-82acd44db08e?monitor=true&api-version=2020-06-30 pragma: - no-cache server: @@ -989,9 +989,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;7988 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 202 message: Accepted @@ -1012,11 +1012,11 @@ interactions: - 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/westus/DiskOperations/090373c5-6ea2-458a-b5ca-014b2f6ce50f?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4caffb0d-0cd6-4827-8355-82acd44db08e?api-version=2020-06-30 response: body: - string: "{\r\n \"startTime\": \"2020-10-15T08:10:06.7010454+00:00\",\r\n \"endTime\": - \"2020-10-15T08:10:07.0605235+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2020-10-15T09:28:33.735459+00:00\",\r\n \"endTime\": + \"2020-10-15T09:28:34.2198292+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 @@ -1026,20 +1026,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\": \"2020-10-15T08:10:06.7010454+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-10-15T09:28:33.7667098+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"29e69e4d-a63b-413b-9f8a-0d26f40982e7\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"de7e874d-c3df-4482-8849-8ebc72290c6c\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"090373c5-6ea2-458a-b5ca-014b2f6ce50f\"\r\n}" + \ },\r\n \"name\": \"4caffb0d-0cd6-4827-8355-82acd44db08e\"\r\n}" headers: cache-control: - no-cache content-length: - - '1424' + - '1423' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:10:08 GMT + - Thu, 15 Oct 2020 09:28:36 GMT expires: - '-1' pragma: @@ -1056,7 +1056,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399989 + - Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399953 status: code: 200 message: OK @@ -1088,9 +1088,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-10-15T08:10:06.7010454+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-10-15T09:28:33.7667098+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"29e69e4d-a63b-413b-9f8a-0d26f40982e7\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"de7e874d-c3df-4482-8849-8ebc72290c6c\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}" headers: cache-control: @@ -1100,7 +1100,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:10:08 GMT + - Thu, 15 Oct 2020 09:28:36 GMT expires: - '-1' pragma: @@ -1117,7 +1117,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4984,Microsoft.Compute/LowCostGet30Min;39975 + - Microsoft.Compute/LowCostGet3Min;4989,Microsoft.Compute/LowCostGet30Min;39934 status: code: 200 message: OK @@ -1143,7 +1143,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-06-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-10-15T08:08:49Z"},"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":"2020-10-15T09:27:22Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1152,7 +1152,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:10:09 GMT + - Thu, 15 Oct 2020 09:28:36 GMT expires: - '-1' pragma: @@ -1195,11 +1195,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-G1CJFMI3CARUODY46Z5U\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-G1RFQEQ37UD5NNBW4GTM\"\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/efa6f8ee-8395-4258-add3-3a65fe924953?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/20d91368-57a4-423e-a7f3-ef5b34a786db?api-version=2019-12-01 cache-control: - no-cache content-length: @@ -1207,7 +1207,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:10:13 GMT + - Thu, 15 Oct 2020 09:28:43 GMT expires: - '-1' pragma: @@ -1220,9 +1220,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGallery3Min;47,Microsoft.Compute/CreateUpdateGallery30Min;297 + - Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;297 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 201 message: Created @@ -1243,12 +1243,12 @@ interactions: - 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/westus/capsOperations/efa6f8ee-8395-4258-add3-3a65fe924953?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/20d91368-57a4-423e-a7f3-ef5b34a786db?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-10-15T08:10:12.9043807+00:00\",\r\n \"endTime\": - \"2020-10-15T08:10:13.0137606+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"efa6f8ee-8395-4258-add3-3a65fe924953\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-15T09:28:42.1496872+00:00\",\r\n \"endTime\": + \"2020-10-15T09:28:42.4934798+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"20d91368-57a4-423e-a7f3-ef5b34a786db\"\r\n}" headers: cache-control: - no-cache @@ -1257,7 +1257,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:10:43 GMT + - Thu, 15 Oct 2020 09:29:14 GMT expires: - '-1' pragma: @@ -1274,7 +1274,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4192 + - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4190 status: code: 200 message: OK @@ -1301,7 +1301,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-G1CJFMI3CARUODY46Z5U\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-G1RFQEQ37UD5NNBW4GTM\"\r\n },\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -1311,7 +1311,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:10:43 GMT + - Thu, 15 Oct 2020 09:29:14 GMT expires: - '-1' pragma: @@ -1328,7 +1328,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGallery3Min;337,Microsoft.Compute/GetGallery30Min;2487 + - Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2479 status: code: 200 message: OK @@ -1344,7 +1344,7 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g --gallery-name --gallery-image-definition --os-type -p -f -s + - -g --gallery-name --gallery-image-definition --os-type -p -f -s --features 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 @@ -1354,7 +1354,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-06-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-10-15T08:08:49Z"},"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":"2020-10-15T09:27:22Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1363,7 +1363,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:10:45 GMT + - Thu, 15 Oct 2020 09:29:15 GMT expires: - '-1' pragma: @@ -1379,8 +1379,10 @@ interactions: message: OK - request: body: '{"location": "westus", "tags": {}, "properties": {"osType": "Linux", "osState": - "Generalized", "hyperVGeneration": "V1", "identifier": {"publisher": "publisher1", - "offer": "offer1", "sku": "sku1"}, "disallowed": {}}}' + "Generalized", "hyperVGeneration": "V1", "features": [{"name": "IsSecureBootSupported", + "value": "true"}, {"name": "IsMeasuredBootSupported", "value": "false"}], "identifier": + {"publisher": "publisher1", "offer": "offer1", "sku": "sku1"}, "disallowed": + {}}}' headers: Accept: - application/json @@ -1391,11 +1393,11 @@ interactions: Connection: - keep-alive Content-Length: - - '216' + - '337' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -g --gallery-name --gallery-image-definition --os-type -p -f -s + - -g --gallery-name --gallery-image-definition --os-type -p -f -s --features 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 @@ -1405,244 +1407,21 @@ interactions: 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 - \ \"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/ed2c7a83-0d11-4540-9988-0c53616c7ff6?api-version=2020-09-30 - cache-control: - - no-cache - content-length: - - '597' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:10:50 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;147,Microsoft.Compute/CreateUpdateGalleryImage30Min;747 - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 201 - message: Created -- 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-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/westus/capsOperations/ed2c7a83-0d11-4540-9988-0c53616c7ff6?api-version=2020-09-30 - response: - body: - string: "{\r\n \"startTime\": \"2020-10-15T08:10:49.5608299+00:00\",\r\n \"endTime\": - \"2020-10-15T08:10:49.6702188+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"ed2c7a83-0d11-4540-9988-0c53616c7ff6\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '184' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:11:22 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;4188 - 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-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/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 - \ \"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: - - '598' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:11:22 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;587,Microsoft.Compute/GetGalleryImage30Min;2987 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - disk create - Connection: - - keep-alive - 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/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.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-06-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-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '428' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:11: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: '{"location": "westus", "tags": {}, "sku": {"name": "Premium_LRS"}, "properties": - {"hyperVGeneration": "V1", "creationData": {"createOption": "Empty"}, "diskSizeGB": - 10}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - disk create - Connection: - - keep-alive - Content-Length: - - '169' - Content-Type: - - application/json; charset=utf-8 - 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 - 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: - body: - string: "{\r\n \"name\": \"disk\",\r\n \"location\": \"westus\",\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 + string: "{\r\n \"error\": {\r\n \"code\": \"BadRequest\",\r\n \"message\": + \"Could not find member 'features' on object of type 'GalleryImageProperties'. + Path 'properties.features', line 1, position 132.\",\r\n \"target\": \"galleryImage.properties.features\"\r\n \ }\r\n}" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/04399d85-c1da-4c7f-bfc5-ef6284ce2b16?api-version=2020-06-30 cache-control: - no-cache content-length: - - '332' + - '246' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 08:11:28 GMT + - Thu, 15 Oct 2020 09:29:22 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/04399d85-c1da-4c7f-bfc5-ef6284ce2b16?monitor=true&api-version=2020-06-30 pragma: - no-cache server: @@ -1653,2206 +1432,10 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;995,Microsoft.Compute/CreateUpdateDisks30Min;7995 + - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;748 x-ms-ratelimit-remaining-subscription-writes: - - '1195' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - disk create - Connection: - - keep-alive - 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 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/04399d85-c1da-4c7f-bfc5-ef6284ce2b16?api-version=2020-06-30 - response: - body: - string: "{\r\n \"startTime\": \"2020-10-15T08:11:28.3931012+00:00\",\r\n \"endTime\": - \"2020-10-15T08:11:28.5181193+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 - \ \"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:11:28.3931012+00:00\",\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"23c2a253-1b9a-4215-8b9a-5094564b41c5\",\r\n - \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"04399d85-c1da-4c7f-bfc5-ef6284ce2b16\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1146' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:11: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;49987,Microsoft.Compute/GetOperation30Min;399987 + - '1196' status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - disk create - Connection: - - keep-alive - 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 - 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: - 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 - \ \"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 \"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:11:28.3931012+00:00\",\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"23c2a253-1b9a-4215-8b9a-5094564b41c5\",\r\n - \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '921' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:11: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/LowCostGet3Min;4984,Microsoft.Compute/LowCostGet30Min;39969 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - snapshot create - Connection: - - keep-alive - 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 - 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: - body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/disk'' - under resource group ''cli_test_vm_disk_max_shares_etc_000001'' was not found. - For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' - headers: - cache-control: - - no-cache - content-length: - - '279' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:11:32 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-failure-cause: - - gateway - status: - code: 404 - message: Not Found -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - snapshot create - Connection: - - keep-alive - 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 - 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: - 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 - \ \"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 \"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:11:28.3931012+00:00\",\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"23c2a253-1b9a-4215-8b9a-5094564b41c5\",\r\n - \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '921' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:11: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;4982,Microsoft.Compute/LowCostGet30Min;39967 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - snapshot create - Connection: - - keep-alive - 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/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.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-06-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-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '428' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:11:33 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": {}, "sku": {"name": "Standard_LRS"}, "properties": - {"hyperVGeneration": "V1", "creationData": {"createOption": "Copy", "sourceResourceId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - snapshot create - Connection: - - keep-alive - Content-Length: - - '356' - Content-Type: - - application/json; charset=utf-8 - 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 - 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: - body: - string: "{\r\n \"location\": \"westus\",\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_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk\",\r\n - \ \"sourceUniqueId\": \"23c2a253-1b9a-4215-8b9a-5094564b41c5\"\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/6fa84859-b7bc-4279-983c-cbe57d040753?api-version=2020-05-01 - cache-control: - - no-cache - content-length: - - '548' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:11:38 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/6fa84859-b7bc-4279-983c-cbe57d040753?monitor=true&api-version=2020-05-01 - 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/HighCostSnapshotCreateHydrate3Min;998,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7998 - x-ms-ratelimit-remaining-subscription-writes: - - '1195' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - snapshot create - Connection: - - keep-alive - 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 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/6fa84859-b7bc-4279-983c-cbe57d040753?api-version=2020-05-01 - response: - body: - string: "{\r\n \"startTime\": \"2020-10-15T08:11:38.1900072+00:00\",\r\n \"endTime\": - \"2020-10-15T08:11:38.7525409+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 \"hyperVGeneration\": \"V1\",\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\": \"23c2a253-1b9a-4215-8b9a-5094564b41c5\"\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:38.1900072+00:00\",\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"d8c050ed-5a1a-4de9-a7a4-b0c2372a54ae\",\r\n - \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"6fa84859-b7bc-4279-983c-cbe57d040753\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1375' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:11: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/GetOperation3Min;49982,Microsoft.Compute/GetOperation30Min;399982 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - snapshot create - Connection: - - keep-alive - 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 - 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: - 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 - \ \"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 \"hyperVGeneration\": \"V1\",\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\": \"23c2a253-1b9a-4215-8b9a-5094564b41c5\"\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:38.1900072+00:00\",\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"d8c050ed-5a1a-4de9-a7a4-b0c2372a54ae\",\r\n - \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1150' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:11: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/LowCostGet3Min;4976,Microsoft.Compute/LowCostGet30Min;39961 - 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 - 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 - 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-06-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-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '428' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:11:41 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"}]}, "storageProfile": {"osDiskImage": {"source": - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1"}}}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version create - Connection: - - keep-alive - Content-Length: - - '354' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -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-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 - accept-language: - - en-US - 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: - 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 - \ \"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\": \"2020-10-15T08:11:46.6078375+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 - \ }\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/fac2890f-ff03-4ecd-8e0c-231b8113ea7f?api-version=2019-12-01 - cache-control: - - no-cache - content-length: - - '1139' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:11:47 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;373,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1198 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 201 - message: Created -- 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 - 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/westus/capsOperations/fac2890f-ff03-4ecd-8e0c-231b8113ea7f?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2020-10-15T08:11:46.6078375+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"fac2890f-ff03-4ecd-8e0c-231b8113ea7f\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:12:17 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;1184,Microsoft.Compute/GetOperationStatus30Min;4183 - 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 - 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/westus/capsOperations/fac2890f-ff03-4ecd-8e0c-231b8113ea7f?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2020-10-15T08:11:46.6078375+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"fac2890f-ff03-4ecd-8e0c-231b8113ea7f\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:12: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;1180,Microsoft.Compute/GetOperationStatus30Min;4177 - 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 - 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/westus/capsOperations/fac2890f-ff03-4ecd-8e0c-231b8113ea7f?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2020-10-15T08:11:46.6078375+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"fac2890f-ff03-4ecd-8e0c-231b8113ea7f\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:13: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;1178,Microsoft.Compute/GetOperationStatus30Min;4172 - 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 - 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/westus/capsOperations/fac2890f-ff03-4ecd-8e0c-231b8113ea7f?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2020-10-15T08:11:46.6078375+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"fac2890f-ff03-4ecd-8e0c-231b8113ea7f\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:13:48 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;4166 - 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 - 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/westus/capsOperations/fac2890f-ff03-4ecd-8e0c-231b8113ea7f?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2020-10-15T08:11:46.6078375+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"fac2890f-ff03-4ecd-8e0c-231b8113ea7f\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:14: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;1172,Microsoft.Compute/GetOperationStatus30Min;4160 - 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 - 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/westus/capsOperations/fac2890f-ff03-4ecd-8e0c-231b8113ea7f?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2020-10-15T08:11:46.6078375+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"fac2890f-ff03-4ecd-8e0c-231b8113ea7f\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:14:49 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;1168,Microsoft.Compute/GetOperationStatus30Min;4155 - 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 - 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/westus/capsOperations/fac2890f-ff03-4ecd-8e0c-231b8113ea7f?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2020-10-15T08:11:46.6078375+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"fac2890f-ff03-4ecd-8e0c-231b8113ea7f\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:15: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;1168,Microsoft.Compute/GetOperationStatus30Min;4149 - 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 - 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/westus/capsOperations/fac2890f-ff03-4ecd-8e0c-231b8113ea7f?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2020-10-15T08:11:46.6078375+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"fac2890f-ff03-4ecd-8e0c-231b8113ea7f\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:15:49 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;1167,Microsoft.Compute/GetOperationStatus30Min;4143 - 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 - 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/westus/capsOperations/fac2890f-ff03-4ecd-8e0c-231b8113ea7f?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2020-10-15T08:11:46.6078375+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"fac2890f-ff03-4ecd-8e0c-231b8113ea7f\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:16: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;1167,Microsoft.Compute/GetOperationStatus30Min;4137 - 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 - 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/westus/capsOperations/fac2890f-ff03-4ecd-8e0c-231b8113ea7f?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2020-10-15T08:11:46.6078375+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"fac2890f-ff03-4ecd-8e0c-231b8113ea7f\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:16:50 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;1168,Microsoft.Compute/GetOperationStatus30Min;4132 - 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 - 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/westus/capsOperations/fac2890f-ff03-4ecd-8e0c-231b8113ea7f?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2020-10-15T08:11:46.6078375+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"fac2890f-ff03-4ecd-8e0c-231b8113ea7f\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:17: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;1168,Microsoft.Compute/GetOperationStatus30Min;4127 - 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 - 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/westus/capsOperations/fac2890f-ff03-4ecd-8e0c-231b8113ea7f?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2020-10-15T08:11:46.6078375+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"fac2890f-ff03-4ecd-8e0c-231b8113ea7f\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:17: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;1168,Microsoft.Compute/GetOperationStatus30Min;4121 - 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 - 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/westus/capsOperations/fac2890f-ff03-4ecd-8e0c-231b8113ea7f?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2020-10-15T08:11:46.6078375+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"fac2890f-ff03-4ecd-8e0c-231b8113ea7f\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:18:22 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;1167,Microsoft.Compute/GetOperationStatus30Min;4115 - 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 - 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/westus/capsOperations/fac2890f-ff03-4ecd-8e0c-231b8113ea7f?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2020-10-15T08:11:46.6078375+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"fac2890f-ff03-4ecd-8e0c-231b8113ea7f\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:18:52 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;1167,Microsoft.Compute/GetOperationStatus30Min;4109 - 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 - 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/westus/capsOperations/fac2890f-ff03-4ecd-8e0c-231b8113ea7f?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2020-10-15T08:11:46.6078375+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"fac2890f-ff03-4ecd-8e0c-231b8113ea7f\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:19:22 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;1165,Microsoft.Compute/GetOperationStatus30Min;4102 - 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 - 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/westus/capsOperations/fac2890f-ff03-4ecd-8e0c-231b8113ea7f?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2020-10-15T08:11:46.6078375+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"fac2890f-ff03-4ecd-8e0c-231b8113ea7f\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:19:52 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;1163,Microsoft.Compute/GetOperationStatus30Min;4094 - 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 - 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/westus/capsOperations/fac2890f-ff03-4ecd-8e0c-231b8113ea7f?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2020-10-15T08:11:46.6078375+00:00\",\r\n \"endTime\": - \"2020-10-15T08:20:17.1736671+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"fac2890f-ff03-4ecd-8e0c-231b8113ea7f\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '184' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:20:22 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;1162,Microsoft.Compute/GetOperationStatus30Min;4087 - 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 - 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/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: - 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 - \ \"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\": \"2020-10-15T08:11:46.6078375+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 - \ }\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n - \ }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1165' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:20: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/GetGalleryImageVersion3Min;1997,Microsoft.Compute/GetGalleryImageVersion30Min;9993 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - disk create - Connection: - - keep-alive - ParameterSetName: - - -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.13.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-06-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-10-15T08:08:49Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '428' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:20: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: '{"location": "westus", "tags": {}, "sku": {"name": "Premium_LRS"}, "properties": - {"hyperVGeneration": "V1", "creationData": {"createOption": "FromImage", "galleryImageReference": - {"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"}}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - disk create - Connection: - - keep-alive - Content-Length: - - '421' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -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-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 - accept-language: - - en-US - 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 \"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/b2f71921-9039-406d-9372-ab0be4048306?api-version=2020-06-30 - cache-control: - - no-cache - content-length: - - '607' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:20:29 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/b2f71921-9039-406d-9372-ab0be4048306?monitor=true&api-version=2020-06-30 - 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/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7992 - x-ms-ratelimit-remaining-subscription-writes: - - '1194' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - disk create - Connection: - - keep-alive - ParameterSetName: - - -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-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/westus/DiskOperations/b2f71921-9039-406d-9372-ab0be4048306?api-version=2020-06-30 - response: - body: - string: "{\r\n \"startTime\": \"2020-10-15T08:20:29.4675862+00:00\",\r\n \"endTime\": - \"2020-10-15T08:20:30.0769202+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\": - \"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-10-15T08:20:29.5144508+00:00\",\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"e1957bbd-fe15-4d80-ad63-03af53723dbf\",\r\n - \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"b2f71921-9039-406d-9372-ab0be4048306\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1745' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:20: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;49988,Microsoft.Compute/GetOperation30Min;399945 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - disk create - Connection: - - keep-alive - ParameterSetName: - - -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-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/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 \"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\": - \"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-10-15T08:20:29.5144508+00:00\",\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"e1957bbd-fe15-4d80-ad63-03af53723dbf\",\r\n - \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1520' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:20: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/LowCostGet3Min;4987,Microsoft.Compute/LowCostGet30Min;39939 - status: - code: 200 - message: OK -- request: - body: '{"location": "centraluseuap", "tags": {}, "sku": {"name": "Premium_LRS"}, - "properties": {"hyperVGeneration": "V1", "creationData": {"createOption": "Empty"}, - "diskSizeGB": 256, "maxShares": 2}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - disk create - Connection: - - keep-alive - Content-Length: - - '193' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --size-gb --max-shares -l - 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 - 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: - body: - string: "{\r\n \"name\": \"d6\",\r\n \"location\": \"centraluseuap\",\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\": 256,\r\n - \ \"maxShares\": 2,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": - true,\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/30e91040-8f19-4a3a-905d-6e0164c33362?api-version=2020-06-30 - cache-control: - - no-cache - content-length: - - '360' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:20:38 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/30e91040-8f19-4a3a-905d-6e0164c33362?monitor=true&api-version=2020-06-30 - 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/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999 - x-ms-ratelimit-remaining-subscription-writes: - - '1196' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - disk create - Connection: - - keep-alive - ParameterSetName: - - -g -n --size-gb --max-shares -l - 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/centraluseuap/DiskOperations/30e91040-8f19-4a3a-905d-6e0164c33362?api-version=2020-06-30 - response: - body: - string: "{\r\n \"startTime\": \"2020-10-15T08:20:38.999416+00:00\",\r\n \"endTime\": - \"2020-10-15T08:20:39.1894141+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 - \ \"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\": 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-10-15T08:20:38.999416+00:00\",\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 274877906944,\r\n \"uniqueId\": \"0e43c152-e4a1-404f-8b93-727719e17799\",\r\n - \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"30e91040-8f19-4a3a-905d-6e0164c33362\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1173' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:20: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/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399999 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - disk create - Connection: - - keep-alive - ParameterSetName: - - -g -n --size-gb --max-shares -l - 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/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6?api-version=2020-06-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 - \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"centraluseuap\",\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\": 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-10-15T08:20:38.999416+00:00\",\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 274877906944,\r\n \"uniqueId\": \"0e43c152-e4a1-404f-8b93-727719e17799\",\r\n - \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '949' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:20: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/LowCostGet3Min;4999,Microsoft.Compute/LowCostGet30Min;39999 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - disk update - Connection: - - keep-alive - ParameterSetName: - - -g -n --max-shares - 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 - 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: - 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 - \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"centraluseuap\",\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\": 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-10-15T08:20:38.999416+00:00\",\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 274877906944,\r\n \"uniqueId\": \"0e43c152-e4a1-404f-8b93-727719e17799\",\r\n - \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '949' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:20:42 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;4998,Microsoft.Compute/LowCostGet30Min;39998 - status: - code: 200 - message: OK -- request: - body: '{"location": "centraluseuap", "tags": {}, "sku": {"name": "Premium_LRS"}, - "properties": {"hyperVGeneration": "V1", "creationData": {"createOption": "Empty"}, - "diskSizeGB": 256, "diskIOPSReadWrite": 1100, "diskMBpsReadWrite": 125, "diskState": - "Unattached", "encryption": {"type": "EncryptionAtRestWithPlatformKey"}, "maxShares": - 1, "networkAccessPolicy": "AllowAll", "tier": "P15"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - disk update - Connection: - - keep-alive - Content-Length: - - '382' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --max-shares - 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 - 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: - body: - string: "{\r\n \"name\": \"d6\",\r\n \"location\": \"centraluseuap\",\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\": 256,\r\n - \ \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"maxShares\": 1,\r\n \"provisioningState\": \"Updating\",\r\n - \ \"diskState\": \"Unattached\",\r\n \"isArmResource\": true,\r\n \"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/e9e917f8-347e-4569-be99-49486c646cee?api-version=2020-06-30 - cache-control: - - no-cache - content-length: - - '510' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:20:43 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/e9e917f8-347e-4569-be99-49486c646cee?monitor=true&api-version=2020-06-30 - 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/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7998 - x-ms-ratelimit-remaining-subscription-writes: - - '1195' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - disk update - Connection: - - keep-alive - ParameterSetName: - - -g -n --max-shares - 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/centraluseuap/DiskOperations/e9e917f8-347e-4569-be99-49486c646cee?api-version=2020-06-30 - response: - body: - string: "{\r\n \"startTime\": \"2020-10-15T08:20:44.1487848+00:00\",\r\n \"endTime\": - \"2020-10-15T08:20:44.3337679+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 - \ \"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\": 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-10-15T08:20:38.999416+00:00\",\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 274877906944,\r\n \"uniqueId\": \"0e43c152-e4a1-404f-8b93-727719e17799\",\r\n - \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"e9e917f8-347e-4569-be99-49486c646cee\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1174' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:20:46 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;49997,Microsoft.Compute/GetOperation30Min;399997 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - disk update - Connection: - - keep-alive - ParameterSetName: - - -g -n --max-shares - 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/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6?api-version=2020-06-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 - \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"centraluseuap\",\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\": 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-10-15T08:20:38.999416+00:00\",\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 274877906944,\r\n \"uniqueId\": \"0e43c152-e4a1-404f-8b93-727719e17799\",\r\n - \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '949' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 15 Oct 2020 08:20:46 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;4996,Microsoft.Compute/LowCostGet30Min;39996 - 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/test_vm_commands.py b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py index 9afbf22123b..9a8dbf7dc77 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 @@ -768,7 +768,7 @@ def test_vm_disk_max_shares_etc(self, resource_group): ]) self.cmd('sig create -g {rg} --gallery-name {g1}') - self.cmd('sig image-definition create -g {rg} --gallery-name {g1} --gallery-image-definition image --os-type linux -p publisher1 -f offer1 -s sku1') + self.cmd('sig image-definition create -g {rg} --gallery-name {g1} --gallery-image-definition image --os-type linux -p publisher1 -f offer1 -s sku1 --features "IsSecureBootSupported=true IsMeasuredBootSupported=false"') self.cmd('disk create -g {rg} -n disk --size-gb 10') self.cmd('snapshot create -g {rg} -n s1 --source disk') gallery_image = self.cmd('sig image-version create -g {rg} --gallery-name {g1} --gallery-image-definition image --gallery-image-version 1.0.0 --os-snapshot s1').get_output_in_json()['id'] From c1863c0a44e80348b392f37d62c4fe357f9c42fa Mon Sep 17 00:00:00 2001 From: Feiyue Yu Date: Mon, 19 Oct 2020 10:23:54 +0800 Subject: [PATCH 5/7] version; test; help --- .../azure/cli/command_modules/vm/_params.py | 2 +- .../test_vm_disk_max_shares_etc.yaml | 2289 ++++++++++++++++- .../vm/tests/latest/test_vm_commands.py | 7 +- src/azure-cli/requirements.py3.Darwin.txt | 2 +- src/azure-cli/requirements.py3.Linux.txt | 2 +- src/azure-cli/requirements.py3.windows.txt | 2 +- src/azure-cli/setup.py | 2 +- 7 files changed, 2165 insertions(+), 141 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 742baa7cb6d..85ad74ca477 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/_params.py +++ b/src/azure-cli/azure/cli/command_modules/vm/_params.py @@ -856,7 +856,7 @@ def load_arguments(self, _): c.argument('release_note_uri', help='The release note uri') c.argument('end_of_life_date', help="the end of life date, e.g. '2020-12-31'") c.argument('disallowed_disk_types', nargs='*', help='disk types which would not work with the image, e.g., Standard_LRS') - c.argument('features', help='Features') + c.argument('features', help='A list of gallery image features. E.g. "IsSecureBootSupported=true IsMeasuredBootSupported=false"') with self.argument_context('sig create') as c: c.argument('description', help='the description of the gallery') 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 dc4aca55cfb..9e2243b9518 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-06-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-10-15T09:27:22Z"},"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":"2020-10-19T02:04:41Z"},"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 09:27:26 GMT + - Mon, 19 Oct 2020 02:04:45 GMT expires: - '-1' pragma: @@ -65,7 +65,7 @@ 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-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-compute/14.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT @@ -81,7 +81,7 @@ interactions: \ \"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/c93f8fbf-8984-42bb-a7a7-4d7cd3fda71a?api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/96580393-0ee8-4f78-bc23-c09a06b8b218?api-version=2020-06-30 cache-control: - no-cache content-length: @@ -89,11 +89,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 09:27:30 GMT + - Mon, 19 Oct 2020 02:04:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/c93f8fbf-8984-42bb-a7a7-4d7cd3fda71a?monitor=true&api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/96580393-0ee8-4f78-bc23-c09a06b8b218?monitor=true&api-version=2020-06-30 pragma: - no-cache server: @@ -104,9 +104,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7991 + - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -125,13 +125,13 @@ 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-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-compute/14.0.0 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/westus/DiskOperations/c93f8fbf-8984-42bb-a7a7-4d7cd3fda71a?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/96580393-0ee8-4f78-bc23-c09a06b8b218?api-version=2020-06-30 response: body: - string: "{\r\n \"startTime\": \"2020-10-15T09:27:31.0296037+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"c93f8fbf-8984-42bb-a7a7-4d7cd3fda71a\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-19T02:04:51.9877288+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"96580393-0ee8-4f78-bc23-c09a06b8b218\"\r\n}" headers: cache-control: - no-cache @@ -140,7 +140,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 09:27:33 GMT + - Mon, 19 Oct 2020 02:04:54 GMT expires: - '-1' pragma: @@ -157,7 +157,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49996,Microsoft.Compute/GetOperation30Min;399963 + - Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399999 status: code: 200 message: OK @@ -176,13 +176,13 @@ 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-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-compute/14.0.0 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/westus/DiskOperations/c93f8fbf-8984-42bb-a7a7-4d7cd3fda71a?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/96580393-0ee8-4f78-bc23-c09a06b8b218?api-version=2020-06-30 response: body: - string: "{\r\n \"startTime\": \"2020-10-15T09:27:31.0296037+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"c93f8fbf-8984-42bb-a7a7-4d7cd3fda71a\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-19T02:04:51.9877288+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"96580393-0ee8-4f78-bc23-c09a06b8b218\"\r\n}" headers: cache-control: - no-cache @@ -191,7 +191,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 09:27:43 GMT + - Mon, 19 Oct 2020 02:05:04 GMT expires: - '-1' pragma: @@ -208,7 +208,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49994,Microsoft.Compute/GetOperation30Min;399961 + - Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399997 status: code: 200 message: OK @@ -227,15 +227,15 @@ 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-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-compute/14.0.0 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/westus/DiskOperations/c93f8fbf-8984-42bb-a7a7-4d7cd3fda71a?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/96580393-0ee8-4f78-bc23-c09a06b8b218?api-version=2020-06-30 response: body: - string: "{\r\n \"startTime\": \"2020-10-15T09:27:31.0296037+00:00\",\r\n \"endTime\": - \"2020-10-15T09:27:58.4203863+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\":{\"hyperVGeneration\":\"V1\",\"creationData\":{\"createOption\":\"Empty\",\"logicalSectorSize\":4096},\"diskSizeGB\":10,\"diskIOPSReadWrite\":100,\"diskMBpsReadWrite\":13,\"readOnly\":false,\"diskIOPSReadOnly\":200,\"diskMBpsReadOnly\":30,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"maxShares\":1,\"timeCreated\":\"2020-10-15T09:27:31.0296037+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":10737418240,\"uniqueId\":\"7382c8ec-2de8-4051-a5dc-affde23c2be7\",\"networkAccessPolicy\":\"AllowAll\"}}\r\n - \ },\r\n \"name\": \"c93f8fbf-8984-42bb-a7a7-4d7cd3fda71a\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-19T02:04:51.9877288+00:00\",\r\n \"endTime\": + \"2020-10-19T02:05:19.5353981+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\":{\"hyperVGeneration\":\"V1\",\"creationData\":{\"createOption\":\"Empty\",\"logicalSectorSize\":4096},\"diskSizeGB\":10,\"diskIOPSReadWrite\":100,\"diskMBpsReadWrite\":13,\"readOnly\":false,\"diskIOPSReadOnly\":200,\"diskMBpsReadOnly\":30,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"maxShares\":1,\"timeCreated\":\"2020-10-19T02:04:51.9877288+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":10737418240,\"uniqueId\":\"6c267f48-ad21-4956-a85a-1b40efa65bbb\",\"networkAccessPolicy\":\"AllowAll\"}}\r\n + \ },\r\n \"name\": \"96580393-0ee8-4f78-bc23-c09a06b8b218\"\r\n}" headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 09:28:13 GMT + - Mon, 19 Oct 2020 02:05:34 GMT expires: - '-1' pragma: @@ -261,7 +261,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49994,Microsoft.Compute/GetOperation30Min;399958 + - Microsoft.Compute/GetOperation3Min;49994,Microsoft.Compute/GetOperation30Min;399994 status: code: 200 message: OK @@ -280,7 +280,7 @@ 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-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-compute/14.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 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: @@ -294,9 +294,9 @@ interactions: \ \"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-10-15T09:27:31.0296037+00:00\",\r\n \"provisioningState\": + \ \"timeCreated\": \"2020-10-19T02:04:51.9877288+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 10737418240,\r\n \"uniqueId\": \"7382c8ec-2de8-4051-a5dc-affde23c2be7\",\r\n + 10737418240,\r\n \"uniqueId\": \"6c267f48-ad21-4956-a85a-1b40efa65bbb\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -306,7 +306,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 09:28:14 GMT + - Mon, 19 Oct 2020 02:05:35 GMT expires: - '-1' pragma: @@ -323,7 +323,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4998,Microsoft.Compute/LowCostGet30Min;39943 + - Microsoft.Compute/LowCostGet3Min;4998,Microsoft.Compute/LowCostGet30Min;39997 status: code: 200 message: OK @@ -342,7 +342,7 @@ interactions: - -g -n --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-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-compute/14.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -358,9 +358,9 @@ interactions: \ \"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-10-15T09:27:31.0296037+00:00\",\r\n \"provisioningState\": + \ \"timeCreated\": \"2020-10-19T02:04:51.9877288+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 10737418240,\r\n \"uniqueId\": \"7382c8ec-2de8-4051-a5dc-affde23c2be7\",\r\n + 10737418240,\r\n \"uniqueId\": \"6c267f48-ad21-4956-a85a-1b40efa65bbb\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -370,7 +370,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 09:28:15 GMT + - Mon, 19 Oct 2020 02:05:35 GMT expires: - '-1' pragma: @@ -387,7 +387,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4997,Microsoft.Compute/LowCostGet30Min;39942 + - Microsoft.Compute/LowCostGet3Min;4997,Microsoft.Compute/LowCostGet30Min;39996 status: code: 200 message: OK @@ -415,7 +415,7 @@ interactions: - -g -n --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-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-compute/14.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT @@ -434,7 +434,7 @@ interactions: 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/9a823baa-f2ba-4484-b47c-16aab1d628cd?api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1241bc50-213c-4345-a9a2-9cc2e788d938?api-version=2020-06-30 cache-control: - no-cache content-length: @@ -442,11 +442,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 09:28:16 GMT + - Mon, 19 Oct 2020 02:05:36 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/9a823baa-f2ba-4484-b47c-16aab1d628cd?monitor=true&api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1241bc50-213c-4345-a9a2-9cc2e788d938?monitor=true&api-version=2020-06-30 pragma: - no-cache server: @@ -457,7 +457,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7990 + - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7998 x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -478,13 +478,13 @@ interactions: - -g -n --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-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-compute/14.0.0 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/westus/DiskOperations/9a823baa-f2ba-4484-b47c-16aab1d628cd?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1241bc50-213c-4345-a9a2-9cc2e788d938?api-version=2020-06-30 response: body: - string: "{\r\n \"startTime\": \"2020-10-15T09:28:16.8446074+00:00\",\r\n \"endTime\": - \"2020-10-15T09:28:17.0321087+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2020-10-19T02:05:36.879894+00:00\",\r\n \"endTime\": + \"2020-10-19T02:05:37.0674122+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 @@ -495,20 +495,20 @@ interactions: \ \"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-10-15T09:27:31.0296037+00:00\",\r\n \"provisioningState\": + \ \"timeCreated\": \"2020-10-19T02:04:51.9877288+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 10737418240,\r\n \"uniqueId\": \"7382c8ec-2de8-4051-a5dc-affde23c2be7\",\r\n + 10737418240,\r\n \"uniqueId\": \"6c267f48-ad21-4956-a85a-1b40efa65bbb\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"9a823baa-f2ba-4484-b47c-16aab1d628cd\"\r\n}" + \"1241bc50-213c-4345-a9a2-9cc2e788d938\"\r\n}" headers: cache-control: - no-cache content-length: - - '1260' + - '1259' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 09:28:18 GMT + - Mon, 19 Oct 2020 02:05:39 GMT expires: - '-1' pragma: @@ -525,7 +525,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49993,Microsoft.Compute/GetOperation30Min;399957 + - Microsoft.Compute/GetOperation3Min;49993,Microsoft.Compute/GetOperation30Min;399993 status: code: 200 message: OK @@ -544,7 +544,7 @@ interactions: - -g -n --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-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-compute/14.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 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: @@ -558,9 +558,9 @@ interactions: \ \"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-10-15T09:27:31.0296037+00:00\",\r\n \"provisioningState\": + \ \"timeCreated\": \"2020-10-19T02:04:51.9877288+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 10737418240,\r\n \"uniqueId\": \"7382c8ec-2de8-4051-a5dc-affde23c2be7\",\r\n + 10737418240,\r\n \"uniqueId\": \"6c267f48-ad21-4956-a85a-1b40efa65bbb\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -570,7 +570,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 09:28:19 GMT + - Mon, 19 Oct 2020 02:05:39 GMT expires: - '-1' pragma: @@ -587,7 +587,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4995,Microsoft.Compute/LowCostGet30Min;39940 + - Microsoft.Compute/LowCostGet3Min;4996,Microsoft.Compute/LowCostGet30Min;39995 status: code: 200 message: OK @@ -613,7 +613,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-06-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-10-15T09:27:22Z"},"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":"2020-10-19T02:04:41Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -622,7 +622,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 09:28:19 GMT + - Mon, 19 Oct 2020 02:05:39 GMT expires: - '-1' pragma: @@ -657,7 +657,7 @@ 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-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-compute/14.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT @@ -673,7 +673,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/f48eacef-3ce3-4583-8765-434f7229171b?api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/06519b2f-0e7e-4388-b5c8-747cfbb1379c?api-version=2020-06-30 cache-control: - no-cache content-length: @@ -681,11 +681,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 09:28:24 GMT + - Mon, 19 Oct 2020 02:05:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f48eacef-3ce3-4583-8765-434f7229171b?monitor=true&api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/06519b2f-0e7e-4388-b5c8-747cfbb1379c?monitor=true&api-version=2020-06-30 pragma: - no-cache server: @@ -696,9 +696,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7989 + - Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7997 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 202 message: Accepted @@ -717,13 +717,13 @@ 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-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-compute/14.0.0 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/westus/DiskOperations/f48eacef-3ce3-4583-8765-434f7229171b?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/06519b2f-0e7e-4388-b5c8-747cfbb1379c?api-version=2020-06-30 response: body: - string: "{\r\n \"startTime\": \"2020-10-15T09:28:25.1883661+00:00\",\r\n \"endTime\": - \"2020-10-15T09:28:26.0008765+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2020-10-19T02:05:44.4435587+00:00\",\r\n \"endTime\": + \"2020-10-19T02:05:45.5529699+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 @@ -733,11 +733,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-10-15T09:28:25.2040027+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-10-19T02:05:44.4748341+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"29a67a12-5058-44b5-bbf5-65434b8d33c6\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"e6f8a851-1c64-4a1a-af74-ec0497d5ad5d\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"f48eacef-3ce3-4583-8765-434f7229171b\"\r\n}" + \ },\r\n \"name\": \"06519b2f-0e7e-4388-b5c8-747cfbb1379c\"\r\n}" headers: cache-control: - no-cache @@ -746,7 +746,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 09:28:27 GMT + - Mon, 19 Oct 2020 02:05:47 GMT expires: - '-1' pragma: @@ -763,7 +763,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49991,Microsoft.Compute/GetOperation30Min;399955 + - Microsoft.Compute/GetOperation3Min;49991,Microsoft.Compute/GetOperation30Min;399991 status: code: 200 message: OK @@ -782,7 +782,7 @@ 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-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-compute/14.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 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: @@ -795,9 +795,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-10-15T09:28:25.2040027+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-10-19T02:05:44.4748341+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"29a67a12-5058-44b5-bbf5-65434b8d33c6\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"e6f8a851-1c64-4a1a-af74-ec0497d5ad5d\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}" headers: cache-control: @@ -807,7 +807,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 09:28:27 GMT + - Mon, 19 Oct 2020 02:05:47 GMT expires: - '-1' pragma: @@ -824,7 +824,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4993,Microsoft.Compute/LowCostGet30Min;39938 + - Microsoft.Compute/LowCostGet3Min;4993,Microsoft.Compute/LowCostGet30Min;39992 status: code: 200 message: OK @@ -850,7 +850,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-06-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-10-15T09:27:22Z"},"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":"2020-10-19T02:04:41Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -859,7 +859,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 09:28:28 GMT + - Mon, 19 Oct 2020 02:05:47 GMT expires: - '-1' pragma: @@ -888,7 +888,7 @@ 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-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-compute/14.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: GET @@ -910,7 +910,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 09:28:29 GMT + - Mon, 19 Oct 2020 02:05:49 GMT expires: - '-1' pragma: @@ -950,7 +950,7 @@ 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-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-compute/14.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT @@ -966,7 +966,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/4caffb0d-0cd6-4827-8355-82acd44db08e?api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1edc20e0-e07e-4aae-b79b-dcac3e24d7b5?api-version=2020-06-30 cache-control: - no-cache content-length: @@ -974,11 +974,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 09:28:33 GMT + - Mon, 19 Oct 2020 02:05:52 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4caffb0d-0cd6-4827-8355-82acd44db08e?monitor=true&api-version=2020-06-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1edc20e0-e07e-4aae-b79b-dcac3e24d7b5?monitor=true&api-version=2020-06-30 pragma: - no-cache server: @@ -989,9 +989,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;996,Microsoft.Compute/CreateUpdateDisks30Min;7988 + - Microsoft.Compute/CreateUpdateDisks3Min;996,Microsoft.Compute/CreateUpdateDisks30Min;7996 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 202 message: Accepted @@ -1010,13 +1010,13 @@ 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-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-compute/14.0.0 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/westus/DiskOperations/4caffb0d-0cd6-4827-8355-82acd44db08e?api-version=2020-06-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1edc20e0-e07e-4aae-b79b-dcac3e24d7b5?api-version=2020-06-30 response: body: - string: "{\r\n \"startTime\": \"2020-10-15T09:28:33.735459+00:00\",\r\n \"endTime\": - \"2020-10-15T09:28:34.2198292+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2020-10-19T02:05:53.1779831+00:00\",\r\n \"endTime\": + \"2020-10-19T02:05:53.5998645+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 @@ -1026,20 +1026,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\": \"2020-10-15T09:28:33.7667098+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-10-19T02:05:53.1936273+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"de7e874d-c3df-4482-8849-8ebc72290c6c\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"27d9f8b3-0a40-47ba-b69d-4bf62222b8f5\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"4caffb0d-0cd6-4827-8355-82acd44db08e\"\r\n}" + \ },\r\n \"name\": \"1edc20e0-e07e-4aae-b79b-dcac3e24d7b5\"\r\n}" headers: cache-control: - no-cache content-length: - - '1423' + - '1424' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 09:28:36 GMT + - Mon, 19 Oct 2020 02:05:55 GMT expires: - '-1' pragma: @@ -1056,7 +1056,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399953 + - Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399989 status: code: 200 message: OK @@ -1075,7 +1075,7 @@ 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-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-compute/14.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 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: @@ -1088,9 +1088,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-10-15T09:28:33.7667098+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-10-19T02:05:53.1936273+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"de7e874d-c3df-4482-8849-8ebc72290c6c\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"27d9f8b3-0a40-47ba-b69d-4bf62222b8f5\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}" headers: cache-control: @@ -1100,7 +1100,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 09:28:36 GMT + - Mon, 19 Oct 2020 02:05:55 GMT expires: - '-1' pragma: @@ -1117,7 +1117,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4989,Microsoft.Compute/LowCostGet30Min;39934 + - Microsoft.Compute/LowCostGet3Min;4990,Microsoft.Compute/LowCostGet30Min;39989 status: code: 200 message: OK @@ -1143,7 +1143,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-06-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-10-15T09:27:22Z"},"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":"2020-10-19T02:04:41Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1152,7 +1152,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 09:28:36 GMT + - Mon, 19 Oct 2020 02:05:56 GMT expires: - '-1' pragma: @@ -1185,7 +1185,7 @@ 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-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-compute/14.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US method: PUT @@ -1195,11 +1195,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-G1RFQEQ37UD5NNBW4GTM\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-G1WUQIX73NR7HJTKM2S2\"\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/20d91368-57a4-423e-a7f3-ef5b34a786db?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/6f6048a0-453d-41d1-bc5c-9fd1c33e4d87?api-version=2019-12-01 cache-control: - no-cache content-length: @@ -1207,7 +1207,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 09:28:43 GMT + - Mon, 19 Oct 2020 02:06:00 GMT expires: - '-1' pragma: @@ -1220,7 +1220,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;298 x-ms-ratelimit-remaining-subscription-writes: - '1197' status: @@ -1241,14 +1241,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-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-compute/14.0.0 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/westus/capsOperations/20d91368-57a4-423e-a7f3-ef5b34a786db?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/6f6048a0-453d-41d1-bc5c-9fd1c33e4d87?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2020-10-15T09:28:42.1496872+00:00\",\r\n \"endTime\": - \"2020-10-15T09:28:42.4934798+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"20d91368-57a4-423e-a7f3-ef5b34a786db\"\r\n}" + string: "{\r\n \"startTime\": \"2020-10-19T02:06:00.0133166+00:00\",\r\n \"endTime\": + \"2020-10-19T02:06:00.2633301+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"6f6048a0-453d-41d1-bc5c-9fd1c33e4d87\"\r\n}" headers: cache-control: - no-cache @@ -1257,7 +1257,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 09:29:14 GMT + - Mon, 19 Oct 2020 02:06:31 GMT expires: - '-1' pragma: @@ -1293,7 +1293,7 @@ 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-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-compute/14.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 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: @@ -1301,7 +1301,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-G1RFQEQ37UD5NNBW4GTM\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-G1WUQIX73NR7HJTKM2S2\"\r\n },\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -1311,7 +1311,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 09:29:14 GMT + - Mon, 19 Oct 2020 02:06:31 GMT expires: - '-1' pragma: @@ -1328,7 +1328,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2479 + - Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2487 status: code: 200 message: OK @@ -1345,6 +1345,7 @@ interactions: - keep-alive ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s --features + --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.13.0 @@ -1354,7 +1355,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-06-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-10-15T09:27:22Z"},"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":"2020-10-19T02:04:41Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1363,7 +1364,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 09:29:15 GMT + - Mon, 19 Oct 2020 02:06:32 GMT expires: - '-1' pragma: @@ -1379,7 +1380,7 @@ interactions: message: OK - request: body: '{"location": "westus", "tags": {}, "properties": {"osType": "Linux", "osState": - "Generalized", "hyperVGeneration": "V1", "features": [{"name": "IsSecureBootSupported", + "Generalized", "hyperVGeneration": "V2", "features": [{"name": "IsSecureBootSupported", "value": "true"}, {"name": "IsMeasuredBootSupported", "value": "false"}], "identifier": {"publisher": "publisher1", "offer": "offer1", "sku": "sku1"}, "disallowed": {}}}' @@ -1398,30 +1399,260 @@ interactions: - application/json; charset=utf-8 ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s --features + --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-compute/13.1.1 Azure-SDK-For-Python AZURECLI/2.13.0 + azure-mgmt-compute/14.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 accept-language: - en-US 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 \"error\": {\r\n \"code\": \"BadRequest\",\r\n \"message\": - \"Could not find member 'features' on object of type 'GalleryImageProperties'. - Path 'properties.features', line 1, position 132.\",\r\n \"target\": \"galleryImage.properties.features\"\r\n + 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\": \"V2\",\r\n + \ \"features\": [\r\n {\r\n \"name\": \"IsSecureBootSupported\",\r\n + \ \"value\": \"true\"\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/b05fbf35-0cb3-424f-b28a-3542078a3443?api-version=2020-09-30 + cache-control: + - no-cache + content-length: + - '798' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 02:06:40 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;747 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- 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 --features + --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-compute/14.0.0 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/westus/capsOperations/b05fbf35-0cb3-424f-b28a-3542078a3443?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2020-10-19T02:06:40.1558756+00:00\",\r\n \"endTime\": + \"2020-10-19T02:06:40.280904+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"b05fbf35-0cb3-424f-b28a-3542078a3443\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '183' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 02:07: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;1196,Microsoft.Compute/GetOperationStatus30Min;4188 + 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 --features + --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-compute/14.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + 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\": \"V2\",\r\n + \ \"features\": [\r\n {\r\n \"name\": \"IsSecureBootSupported\",\r\n + \ \"value\": \"true\"\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}" + headers: + cache-control: + - no-cache + content-length: + - '799' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 02:07:13 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;594,Microsoft.Compute/GetGalleryImage30Min;2978 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - disk create + Connection: + - keep-alive + 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/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.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-06-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-10-19T02:04:41Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 02:07:13 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": {}, "sku": {"name": "Premium_LRS"}, "properties": + {"hyperVGeneration": "V1", "creationData": {"createOption": "Empty"}, "diskSizeGB": + 10}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - disk create + Connection: + - keep-alive + Content-Length: + - '169' + Content-Type: + - application/json; charset=utf-8 + 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/14.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + 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: + body: + string: "{\r\n \"name\": \"disk\",\r\n \"location\": \"westus\",\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}" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/46903fc7-bcfe-42ee-8e16-172e9f1f492c?api-version=2020-06-30 cache-control: - no-cache content-length: - - '246' + - '332' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Oct 2020 09:29:22 GMT + - Mon, 19 Oct 2020 02:07:20 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/46903fc7-bcfe-42ee-8e16-172e9f1f492c?monitor=true&api-version=2020-06-30 pragma: - no-cache server: @@ -1432,10 +1663,1798 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;748 + - Microsoft.Compute/CreateUpdateDisks3Min;995,Microsoft.Compute/CreateUpdateDisks30Min;7995 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - disk create + Connection: + - keep-alive + 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/14.0.0 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/westus/DiskOperations/46903fc7-bcfe-42ee-8e16-172e9f1f492c?api-version=2020-06-30 + response: + body: + string: "{\r\n \"startTime\": \"2020-10-19T02:07:20.4946492+00:00\",\r\n \"endTime\": + \"2020-10-19T02:07:20.6196566+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 + \ \"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-19T02:07:20.4946492+00:00\",\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"1fcff157-54b5-4dd1-94c1-03d3560b093a\",\r\n + \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n + \ },\r\n \"name\": \"46903fc7-bcfe-42ee-8e16-172e9f1f492c\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1146' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 02:07: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/GetOperation3Min;49987,Microsoft.Compute/GetOperation30Min;399987 status: - code: 400 - message: Bad Request + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - disk create + Connection: + - keep-alive + 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/14.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + 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: + 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 + \ \"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 \"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-19T02:07:20.4946492+00:00\",\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"1fcff157-54b5-4dd1-94c1-03d3560b093a\",\r\n + \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '921' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 02:07: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/LowCostGet3Min;4986,Microsoft.Compute/LowCostGet30Min;39985 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - snapshot create + Connection: + - keep-alive + 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/14.0.0 Azure-SDK-For-Python AZURECLI/2.13.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/providers/Microsoft.Compute/snapshots/disk?api-version=2020-05-01 + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/disk'' + under resource group ''cli_test_vm_disk_max_shares_etc_000001'' was not found. + For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '279' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 02:07:23 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - snapshot create + Connection: + - keep-alive + 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/14.0.0 Azure-SDK-For-Python AZURECLI/2.13.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/providers/Microsoft.Compute/disks/disk?api-version=2020-06-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 + \ \"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 \"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-19T02:07:20.4946492+00:00\",\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"1fcff157-54b5-4dd1-94c1-03d3560b093a\",\r\n + \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '921' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 02:07: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/LowCostGet3Min;4985,Microsoft.Compute/LowCostGet30Min;39984 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - snapshot create + Connection: + - keep-alive + 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/10.2.0 Azure-SDK-For-Python AZURECLI/2.13.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-06-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-10-19T02:04:41Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 02:07:24 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": {}, "sku": {"name": "Standard_LRS"}, "properties": + {"hyperVGeneration": "V1", "creationData": {"createOption": "Copy", "sourceResourceId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - snapshot create + Connection: + - keep-alive + Content-Length: + - '356' + Content-Type: + - application/json; charset=utf-8 + 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/14.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + 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: + body: + string: "{\r\n \"location\": \"westus\",\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_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk\",\r\n + \ \"sourceUniqueId\": \"1fcff157-54b5-4dd1-94c1-03d3560b093a\"\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/d5cc84ab-a48d-4aa4-985a-014d4185aa6c?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '548' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 02:07:30 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/d5cc84ab-a48d-4aa4-985a-014d4185aa6c?monitor=true&api-version=2020-05-01 + 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/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7999 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - snapshot create + Connection: + - keep-alive + 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/14.0.0 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/westus/DiskOperations/d5cc84ab-a48d-4aa4-985a-014d4185aa6c?api-version=2020-05-01 + response: + body: + string: "{\r\n \"startTime\": \"2020-10-19T02:07:30.5270462+00:00\",\r\n \"endTime\": + \"2020-10-19T02:07:31.261422+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 \"hyperVGeneration\": \"V1\",\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\": \"1fcff157-54b5-4dd1-94c1-03d3560b093a\"\r\n },\r\n + \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-10-19T02:07:30.542642+00:00\",\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"44ff027b-fc27-4742-bd70-7bb4c8282634\",\r\n + \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": + \"d5cc84ab-a48d-4aa4-985a-014d4185aa6c\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1373' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 02:07: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/GetOperation3Min;49986,Microsoft.Compute/GetOperation30Min;399985 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - snapshot create + Connection: + - keep-alive + 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/14.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + 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: + 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 + \ \"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 \"hyperVGeneration\": \"V1\",\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\": \"1fcff157-54b5-4dd1-94c1-03d3560b093a\"\r\n },\r\n + \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2020-10-19T02:07:30.542642+00:00\",\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"44ff027b-fc27-4742-bd70-7bb4c8282634\",\r\n + \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1149' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 02:07: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;4983,Microsoft.Compute/LowCostGet30Min;39982 + 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 + 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 + 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-06-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-10-19T02:04:41Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 02:07:33 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"}]}, "storageProfile": {"osDiskImage": {"source": + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1"}}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + Content-Length: + - '354' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -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-compute/14.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + 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: + 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 + \ \"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\": \"2020-10-19T02:07:40.3463014+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 + \ }\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/f692cd5b-35f0-4567-8af1-09ce134cc8d2?api-version=2019-12-01 + cache-control: + - no-cache + content-length: + - '1139' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 02:07:41 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;1199 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- 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 + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-compute/14.0.0 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/westus/capsOperations/f692cd5b-35f0-4567-8af1-09ce134cc8d2?api-version=2019-12-01 + response: + body: + string: "{\r\n \"startTime\": \"2020-10-19T02:07:40.3306325+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"f692cd5b-35f0-4567-8af1-09ce134cc8d2\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 02:08: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;1194,Microsoft.Compute/GetOperationStatus30Min;4186 + 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 + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-compute/14.0.0 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/westus/capsOperations/f692cd5b-35f0-4567-8af1-09ce134cc8d2?api-version=2019-12-01 + response: + body: + string: "{\r\n \"startTime\": \"2020-10-19T02:07:40.3306325+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"f692cd5b-35f0-4567-8af1-09ce134cc8d2\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 02:09:42 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;4185 + 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 + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-compute/14.0.0 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/westus/capsOperations/f692cd5b-35f0-4567-8af1-09ce134cc8d2?api-version=2019-12-01 + response: + body: + string: "{\r\n \"startTime\": \"2020-10-19T02:07:40.3306325+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"f692cd5b-35f0-4567-8af1-09ce134cc8d2\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 02:10: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;1195,Microsoft.Compute/GetOperationStatus30Min;4183 + 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 + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-compute/14.0.0 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/westus/capsOperations/f692cd5b-35f0-4567-8af1-09ce134cc8d2?api-version=2019-12-01 + response: + body: + string: "{\r\n \"startTime\": \"2020-10-19T02:07:40.3306325+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"f692cd5b-35f0-4567-8af1-09ce134cc8d2\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 02:11: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;4181 + 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 + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-compute/14.0.0 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/westus/capsOperations/f692cd5b-35f0-4567-8af1-09ce134cc8d2?api-version=2019-12-01 + response: + body: + string: "{\r\n \"startTime\": \"2020-10-19T02:07:40.3306325+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"f692cd5b-35f0-4567-8af1-09ce134cc8d2\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 02:12:45 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;4179 + 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 + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-compute/14.0.0 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/westus/capsOperations/f692cd5b-35f0-4567-8af1-09ce134cc8d2?api-version=2019-12-01 + response: + body: + string: "{\r\n \"startTime\": \"2020-10-19T02:07:40.3306325+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"f692cd5b-35f0-4567-8af1-09ce134cc8d2\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 02:13:46 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;4177 + 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 + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-compute/14.0.0 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/westus/capsOperations/f692cd5b-35f0-4567-8af1-09ce134cc8d2?api-version=2019-12-01 + response: + body: + string: "{\r\n \"startTime\": \"2020-10-19T02:07:40.3306325+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"f692cd5b-35f0-4567-8af1-09ce134cc8d2\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 02:14: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;1195,Microsoft.Compute/GetOperationStatus30Min;4175 + 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 + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-compute/14.0.0 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/westus/capsOperations/f692cd5b-35f0-4567-8af1-09ce134cc8d2?api-version=2019-12-01 + response: + body: + string: "{\r\n \"startTime\": \"2020-10-19T02:07:40.3306325+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"f692cd5b-35f0-4567-8af1-09ce134cc8d2\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 02:15: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;1195,Microsoft.Compute/GetOperationStatus30Min;4175 + 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 + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-compute/14.0.0 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/westus/capsOperations/f692cd5b-35f0-4567-8af1-09ce134cc8d2?api-version=2019-12-01 + response: + body: + string: "{\r\n \"startTime\": \"2020-10-19T02:07:40.3306325+00:00\",\r\n \"endTime\": + \"2020-10-19T02:16:10.8397124+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"f692cd5b-35f0-4567-8af1-09ce134cc8d2\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '184' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 02:16:48 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;4173 + 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 + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-compute/14.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + 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: + 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 + \ \"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\": \"2020-10-19T02:07:40.3463014+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 + \ }\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n + \ }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1165' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 02:16:48 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;9997 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - disk create + Connection: + - keep-alive + ParameterSetName: + - -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.13.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-06-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-10-19T02:04:41Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 02:16:49 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": {}, "sku": {"name": "Premium_LRS"}, "properties": + {"hyperVGeneration": "V1", "creationData": {"createOption": "FromImage", "galleryImageReference": + {"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"}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - disk create + Connection: + - keep-alive + Content-Length: + - '421' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -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-compute/14.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + 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 \"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/6ce5d10b-b847-4c26-a4a6-ba99ba4fd374?api-version=2020-06-30 + cache-control: + - no-cache + content-length: + - '607' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 02:16:54 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/6ce5d10b-b847-4c26-a4a6-ba99ba4fd374?monitor=true&api-version=2020-06-30 + 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/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7993 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - disk create + Connection: + - keep-alive + ParameterSetName: + - -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-compute/14.0.0 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/westus/DiskOperations/6ce5d10b-b847-4c26-a4a6-ba99ba4fd374?api-version=2020-06-30 + response: + body: + string: "{\r\n \"startTime\": \"2020-10-19T02:16:54.9837971+00:00\",\r\n \"endTime\": + \"2020-10-19T02:16:55.5931348+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\": + \"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-10-19T02:16:55.0462645+00:00\",\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"3d4e64e4-062f-4c17-a2ab-81a54ad7bafe\",\r\n + \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n + \ },\r\n \"name\": \"6ce5d10b-b847-4c26-a4a6-ba99ba4fd374\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1745' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 02: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/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399967 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - disk create + Connection: + - keep-alive + ParameterSetName: + - -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-compute/14.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + 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: + 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 + \ \"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\": + \"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-10-19T02:16:55.0462645+00:00\",\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"3d4e64e4-062f-4c17-a2ab-81a54ad7bafe\",\r\n + \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1520' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 02: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/LowCostGet3Min;4985,Microsoft.Compute/LowCostGet30Min;39963 + status: + code: 200 + message: OK +- request: + body: '{"location": "centraluseuap", "tags": {}, "sku": {"name": "Premium_LRS"}, + "properties": {"hyperVGeneration": "V1", "creationData": {"createOption": "Empty"}, + "diskSizeGB": 256, "maxShares": 2}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - disk create + Connection: + - keep-alive + Content-Length: + - '193' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --size-gb --max-shares -l + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-compute/14.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + 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: + body: + string: "{\r\n \"name\": \"d6\",\r\n \"location\": \"centraluseuap\",\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\": 256,\r\n + \ \"maxShares\": 2,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": + true,\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/b653cd8d-72d5-4283-a980-af3f61bc65c5?api-version=2020-06-30 + cache-control: + - no-cache + content-length: + - '360' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 02:17:04 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/b653cd8d-72d5-4283-a980-af3f61bc65c5?monitor=true&api-version=2020-06-30 + 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/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - disk create + Connection: + - keep-alive + ParameterSetName: + - -g -n --size-gb --max-shares -l + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-compute/14.0.0 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/centraluseuap/DiskOperations/b653cd8d-72d5-4283-a980-af3f61bc65c5?api-version=2020-06-30 + response: + body: + string: "{\r\n \"startTime\": \"2020-10-19T02:17:04.2611643+00:00\",\r\n \"endTime\": + \"2020-10-19T02:17:04.4261672+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 + \ \"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\": 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-10-19T02:17:04.2661868+00:00\",\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n + \ \"diskSizeBytes\": 274877906944,\r\n \"uniqueId\": \"694fa023-9682-4fcc-b886-9fd4ceb9cd82\",\r\n + \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}\r\n + \ },\r\n \"name\": \"b653cd8d-72d5-4283-a980-af3f61bc65c5\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1175' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 02:17: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;49999,Microsoft.Compute/GetOperation30Min;399999 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - disk create + Connection: + - keep-alive + ParameterSetName: + - -g -n --size-gb --max-shares -l + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-compute/14.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + 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: + 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 + \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"centraluseuap\",\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\": 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-10-19T02:17:04.2661868+00:00\",\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n + \ \"diskSizeBytes\": 274877906944,\r\n \"uniqueId\": \"694fa023-9682-4fcc-b886-9fd4ceb9cd82\",\r\n + \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '950' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 02:17:07 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;4999,Microsoft.Compute/LowCostGet30Min;39999 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - disk update + Connection: + - keep-alive + ParameterSetName: + - -g -n --max-shares + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-compute/14.0.0 Azure-SDK-For-Python AZURECLI/2.13.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/providers/Microsoft.Compute/disks/d6?api-version=2020-06-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 + \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"centraluseuap\",\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\": 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-10-19T02:17:04.2661868+00:00\",\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n + \ \"diskSizeBytes\": 274877906944,\r\n \"uniqueId\": \"694fa023-9682-4fcc-b886-9fd4ceb9cd82\",\r\n + \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '950' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 02:17: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/LowCostGet3Min;4998,Microsoft.Compute/LowCostGet30Min;39998 + status: + code: 200 + message: OK +- request: + body: '{"location": "centraluseuap", "tags": {}, "sku": {"name": "Premium_LRS"}, + "properties": {"hyperVGeneration": "V1", "creationData": {"createOption": "Empty"}, + "diskSizeGB": 256, "diskIOPSReadWrite": 1100, "diskMBpsReadWrite": 125, "diskState": + "Unattached", "encryption": {"type": "EncryptionAtRestWithPlatformKey"}, "maxShares": + 1, "networkAccessPolicy": "AllowAll", "tier": "P15"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - disk update + Connection: + - keep-alive + Content-Length: + - '382' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --max-shares + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-compute/14.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + accept-language: + - en-US + 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: + body: + string: "{\r\n \"name\": \"d6\",\r\n \"location\": \"centraluseuap\",\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\": 256,\r\n + \ \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n + \ },\r\n \"maxShares\": 1,\r\n \"provisioningState\": \"Updating\",\r\n + \ \"diskState\": \"Unattached\",\r\n \"isArmResource\": true,\r\n \"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/36bd53e0-2010-4353-8a28-9d263563ed9b?api-version=2020-06-30 + cache-control: + - no-cache + content-length: + - '510' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 02:17:11 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/36bd53e0-2010-4353-8a28-9d263563ed9b?monitor=true&api-version=2020-06-30 + 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/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7998 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - disk update + Connection: + - keep-alive + ParameterSetName: + - -g -n --max-shares + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-compute/14.0.0 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/centraluseuap/DiskOperations/36bd53e0-2010-4353-8a28-9d263563ed9b?api-version=2020-06-30 + response: + body: + string: "{\r\n \"startTime\": \"2020-10-19T02:17:11.4162228+00:00\",\r\n \"endTime\": + \"2020-10-19T02:17:11.666214+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 + \ \"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\": 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-10-19T02:17:04.2661868+00:00\",\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n + \ \"diskSizeBytes\": 274877906944,\r\n \"uniqueId\": \"694fa023-9682-4fcc-b886-9fd4ceb9cd82\",\r\n + \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}\r\n + \ },\r\n \"name\": \"36bd53e0-2010-4353-8a28-9d263563ed9b\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1174' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 02:17: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/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399997 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - disk update + Connection: + - keep-alive + ParameterSetName: + - -g -n --max-shares + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-compute/14.0.0 Azure-SDK-For-Python AZURECLI/2.13.0 + 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: + 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 + \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"centraluseuap\",\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\": 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-10-19T02:17:04.2661868+00:00\",\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n + \ \"diskSizeBytes\": 274877906944,\r\n \"uniqueId\": \"694fa023-9682-4fcc-b886-9fd4ceb9cd82\",\r\n + \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '950' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 19 Oct 2020 02:17: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/LowCostGet3Min;4996,Microsoft.Compute/LowCostGet30Min;39996 + 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 9a8dbf7dc77..8d7f3bd3369 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 @@ -768,7 +768,12 @@ def test_vm_disk_max_shares_etc(self, resource_group): ]) self.cmd('sig create -g {rg} --gallery-name {g1}') - self.cmd('sig image-definition create -g {rg} --gallery-name {g1} --gallery-image-definition image --os-type linux -p publisher1 -f offer1 -s sku1 --features "IsSecureBootSupported=true IsMeasuredBootSupported=false"') + self.cmd('sig image-definition create -g {rg} --gallery-name {g1} --gallery-image-definition image --os-type linux -p publisher1 -f offer1 -s sku1 --features "IsSecureBootSupported=true IsMeasuredBootSupported=false" --hyper-v-generation V2', checks=[ + self.check('features[0].name', 'IsSecureBootSupported'), + self.check('features[0].value', 'true'), + self.check('features[1].name', 'IsMeasuredBootSupported'), + self.check('features[1].value', 'false'), + ]) self.cmd('disk create -g {rg} -n disk --size-gb 10') self.cmd('snapshot create -g {rg} -n s1 --source disk') gallery_image = self.cmd('sig image-version create -g {rg} --gallery-name {g1} --gallery-image-definition image --gallery-image-version 1.0.0 --os-snapshot s1').get_output_in_json()['id'] diff --git a/src/azure-cli/requirements.py3.Darwin.txt b/src/azure-cli/requirements.py3.Darwin.txt index 728e5fc7092..b5cab7853a0 100644 --- a/src/azure-cli/requirements.py3.Darwin.txt +++ b/src/azure-cli/requirements.py3.Darwin.txt @@ -26,7 +26,7 @@ azure-mgmt-billing==0.2.0 azure-mgmt-botservice==0.2.0 azure-mgmt-cdn==5.0.0 azure-mgmt-cognitiveservices==6.2.0 -azure-mgmt-compute==13.1.1 +azure-mgmt-compute==14.0.0 azure-mgmt-consumption==2.0.0 azure-mgmt-containerinstance==1.5.0 azure-mgmt-containerregistry==3.0.0rc15 diff --git a/src/azure-cli/requirements.py3.Linux.txt b/src/azure-cli/requirements.py3.Linux.txt index 728e5fc7092..b5cab7853a0 100644 --- a/src/azure-cli/requirements.py3.Linux.txt +++ b/src/azure-cli/requirements.py3.Linux.txt @@ -26,7 +26,7 @@ azure-mgmt-billing==0.2.0 azure-mgmt-botservice==0.2.0 azure-mgmt-cdn==5.0.0 azure-mgmt-cognitiveservices==6.2.0 -azure-mgmt-compute==13.1.1 +azure-mgmt-compute==14.0.0 azure-mgmt-consumption==2.0.0 azure-mgmt-containerinstance==1.5.0 azure-mgmt-containerregistry==3.0.0rc15 diff --git a/src/azure-cli/requirements.py3.windows.txt b/src/azure-cli/requirements.py3.windows.txt index 0839db77093..b42ce579834 100644 --- a/src/azure-cli/requirements.py3.windows.txt +++ b/src/azure-cli/requirements.py3.windows.txt @@ -26,7 +26,7 @@ azure-mgmt-billing==0.2.0 azure-mgmt-botservice==0.2.0 azure-mgmt-cdn==5.0.0 azure-mgmt-cognitiveservices==6.2.0 -azure-mgmt-compute==13.1.1 +azure-mgmt-compute==14.0.0 azure-mgmt-consumption==2.0.0 azure-mgmt-containerinstance==1.5.0 azure-mgmt-containerregistry==3.0.0rc15 diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py index 9c36484a382..481d7a06feb 100644 --- a/src/azure-cli/setup.py +++ b/src/azure-cli/setup.py @@ -71,7 +71,7 @@ 'azure-mgmt-botservice~=0.2.0', 'azure-mgmt-cdn==5.0.0', 'azure-mgmt-cognitiveservices~=6.2.0', - 'azure-mgmt-compute~=13.0', + 'azure-mgmt-compute~=14.0', 'azure-mgmt-consumption~=2.0', 'azure-mgmt-containerinstance~=1.4', 'azure-mgmt-containerregistry==3.0.0rc15', From 467fa55eb71dbb9d87aa8424fbf697203a203d43 Mon Sep 17 00:00:00 2001 From: Feiyue Yu Date: Mon, 19 Oct 2020 13:27:31 +0800 Subject: [PATCH 6/7] style --- src/azure-cli/azure/cli/command_modules/vm/custom.py | 6 ++---- 1 file changed, 2 insertions(+), 4 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 0044868cf39..d73867d081a 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/custom.py +++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py @@ -3179,10 +3179,8 @@ def create_gallery_image(cmd, resource_group_name, gallery_name, gallery_image_n disallowed_disk_types=None, plan_name=None, plan_publisher=None, plan_product=None, tags=None, hyper_v_generation='V1', features=None): # pylint: disable=line-too-long - GalleryImage, GalleryImageIdentifier, RecommendedMachineConfiguration, ResourceRange, Disallowed, \ - ImagePurchasePlan, GalleryImageFeature = cmd.get_models( - 'GalleryImage', 'GalleryImageIdentifier', 'RecommendedMachineConfiguration', 'ResourceRange', 'Disallowed',\ - 'ImagePurchasePlan', 'GalleryImageFeature') + GalleryImage, GalleryImageIdentifier, RecommendedMachineConfiguration, ResourceRange, Disallowed, ImagePurchasePlan, GalleryImageFeature = cmd.get_models( + 'GalleryImage', 'GalleryImageIdentifier', 'RecommendedMachineConfiguration', 'ResourceRange', 'Disallowed', 'ImagePurchasePlan', 'GalleryImageFeature') client = _compute_client_factory(cmd.cli_ctx) location = location or _get_resource_group_location(cmd.cli_ctx, resource_group_name) From f5cf65752f17376e48d5ee28c5bd841f576b5517 Mon Sep 17 00:00:00 2001 From: Feiyue Yu Date: Mon, 19 Oct 2020 13:40:09 +0800 Subject: [PATCH 7/7] remove unrelated change --- scripts/live_test/index.html | 30 ------------------- .../azure/cli/command_modules/vm/_format.py | 1 - 2 files changed, 31 deletions(-) delete mode 100644 scripts/live_test/index.html diff --git a/scripts/live_test/index.html b/scripts/live_test/index.html deleted file mode 100644 index a3859cffdcd..00000000000 --- a/scripts/live_test/index.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - -

Testing results in https://clitestresultstac.blob.core.windows.net/20200919213646live

- -

acr.report.parallel.html

- -

acr.report.sequential.html

- -

appservice.report.parallel.html

- -

appservice.report.sequential.html

- -

netappfiles.report.parallel.html

- -

netappfiles.report.sequential.html

- - - - \ No newline at end of file diff --git a/src/azure-cli/azure/cli/command_modules/vm/_format.py b/src/azure-cli/azure/cli/command_modules/vm/_format.py index f411b22dce2..3701be1deb5 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/_format.py +++ b/src/azure-cli/azure/cli/command_modules/vm/_format.py @@ -84,7 +84,6 @@ def transform_sku_for_table_output(skus): else: order_dict['zones'] = 'None' if k['restrictions']: - # for restriction in k['restrictions']: reasons = [x['reasonCode'] for x in k['restrictions']] order_dict['restrictions'] = str(reasons) if len(reasons) > 1 else reasons[0] else: