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 dd7883acb07..5f136d6de37 100644 --- a/src/azure-cli-core/azure/cli/core/profiles/_shared.py +++ b/src/azure-cli-core/azure/cli/core/profiles/_shared.py @@ -145,7 +145,7 @@ def default_api_version(self): 'snapshots': '2020-12-01', 'galleries': '2019-12-01', 'gallery_images': '2020-09-30', - 'gallery_image_versions': '2019-12-01', + 'gallery_image_versions': '2020-09-30', 'virtual_machine_scale_sets': '2020-12-01' }), ResourceType.MGMT_RESOURCE_FEATURES: '2015-12-01', diff --git a/src/azure-cli/azure/cli/command_modules/vm/_help.py b/src/azure-cli/azure/cli/command_modules/vm/_help.py index 4c7f47fbd79..3a0035bee1b 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/_help.py +++ b/src/azure-cli/azure/cli/command_modules/vm/_help.py @@ -679,6 +679,9 @@ - name: Add a new image version using disks with target regions and customer managed keys for encryption. You specify which disks in the image version to encrypt. Disks encrypted in one region must be encrypted in another region with a different disk encryption set. text: > az sig image-version create -g MyResourceGroup --gallery-image-version 1.0.0 --target-regions westus=2=standard eastus --target-region-encryption WestUSDiskEncryptionSet1,0,WestUSDiskEncryptionSet2 EastUSDiskEncryptionSet1,0,EastUSDiskEncryptionSet2 --gallery-name MyGallery --gallery-image-definition MyImage --os-snapshot /subscriptions/00000000-0000-0000-0000-00000000xxxx/resourceGroups/imageGroups/providers/Microsoft.Compute/disks/MyOSDisk --data-snapshots /subscriptions/00000000-0000-0000-0000-00000000xxxx/resourceGroups/imageGroups/providers/Microsoft.Compute/disks/MyDataDisk --data-snapshot-luns 0 + - name: Add a new image version from a VHD of an OS disk. + text: > + az sig image-version create -g MyResourceGroup --gallery-name MyGallery --gallery-image-definition MyImage --gallery-image-version 1.0.0 --os-vhd-uri --os-vhd-storage-account account """ helps['sig image-version update'] = """ diff --git a/src/azure-cli/azure/cli/command_modules/vm/_params.py b/src/azure-cli/azure/cli/command_modules/vm/_params.py index 3986a72104c..9eaacfc82ec 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/_params.py +++ b/src/azure-cli/azure/cli/command_modules/vm/_params.py @@ -931,7 +931,7 @@ def load_arguments(self, _): c.argument('gallery_image_version_name', options_list=['--gallery-image-version', '-e', deprecated_option], help='Gallery image version in semantic version pattern. The allowed characters are digit and period. Digits must be within the range of a 32-bit integer, e.g. `..`') - with self.argument_context('sig image-version create') as c: + with self.argument_context('sig image-version create', resource_type=ResourceType.MGMT_COMPUTE, operation_group='gallery_image_versions') as c: c.argument('gallery_image_version', options_list=['--gallery-image-version', '-e'], help='Gallery image version in semantic version pattern. The allowed characters are digit and period. Digits must be within the range of a 32-bit integer, e.g. `..`') c.argument('description', help='the description of the gallery image version') @@ -946,6 +946,8 @@ def load_arguments(self, _): arg_type=get_enum_type(["Standard_LRS", "Standard_ZRS", "Premium_LRS"]), min_api='2019-03-01') c.argument('target_region_encryption', nargs='+', help='Space-separated list of customer managed keys for encrypting the OS and data disks in the gallery artifact for each region. Format for each region: `,,,,`. Use "null" as a placeholder.') + c.argument('os_vhd_uri', help='Source VHD URI of OS disk') + c.argument('os_vhd_storage_account', help='Name or ID of storage account of source VHD URI of OS disk') with self.argument_context('sig image-version show') as c: c.argument('expand', help="The expand expression to apply on the operation, e.g. 'ReplicationStatus'") diff --git a/src/azure-cli/azure/cli/command_modules/vm/custom.py b/src/azure-cli/azure/cli/command_modules/vm/custom.py index 32a1796d440..79de41a3e8e 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/custom.py +++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py @@ -28,6 +28,7 @@ from knack.util import CLIError from azure.cli.command_modules.vm._validators import _get_resource_group_from_vault_name +from azure.cli.core.azclierror import ValidationError from azure.cli.core.commands.validators import validate_file_or_dict from azure.cli.core.commands import LongRunningOperation, DeploymentOutputLongRunningOperation @@ -418,7 +419,7 @@ def list_managed_disks(cmd, resource_group_name=None): def update_managed_disk(cmd, resource_group_name, instance, size_gb=None, sku=None, disk_iops_read_write=None, disk_mbps_read_write=None, encryption_type=None, disk_encryption_set=None, network_access_policy=None, disk_access=None, max_shares=None, disk_iops_read_only=None, - disk_mbps_read_only=None, enable_bursting=False): + disk_mbps_read_only=None, enable_bursting=None): from msrestazure.tools import resource_id, is_valid_resource_id from azure.cli.core.commands.client_factory import get_subscription_id @@ -3390,7 +3391,7 @@ def create_image_version(cmd, resource_group_name, gallery_name, gallery_image_n location=None, target_regions=None, storage_account_type=None, end_of_life_date=None, exclude_from_latest=None, replica_count=None, tags=None, os_snapshot=None, data_snapshots=None, managed_image=None, data_snapshot_luns=None, - target_region_encryption=None): + target_region_encryption=None, os_vhd_uri=None, os_vhd_storage_account=None): # print(target_regions) from msrestazure.tools import resource_id, is_valid_resource_id from azure.cli.core.commands.client_factory import get_subscription_id @@ -3421,8 +3422,8 @@ def create_image_version(cmd, resource_group_name, gallery_name, gallery_image_n source=source, replica_count=replica_count, storage_account_type=storage_account_type) if cmd.supported_api_version(min_api='2019-07-01', operation_group='gallery_image_versions'): - if managed_image is None and os_snapshot is None: - raise CLIError('usage error: Please provide --managed-image or --os-snapshot') + if managed_image is None and os_snapshot is None and os_vhd_uri is None: + raise CLIError('usage error: Please provide --managed-image or --os-snapshot or --vhd') GalleryImageVersionStorageProfile = cmd.get_models('GalleryImageVersionStorageProfile') GalleryArtifactVersionSource = cmd.get_models('GalleryArtifactVersionSource') GalleryOSDiskImage = cmd.get_models('GalleryOSDiskImage') @@ -3443,6 +3444,18 @@ def create_image_version(cmd, resource_group_name, gallery_name, gallery_image_n for i, s in enumerate(data_snapshots): data_disk_images.append(GalleryDataDiskImage(source=GalleryArtifactVersionSource(id=s), lun=data_snapshot_luns[i])) + # from vhd, only support os image now + if cmd.supported_api_version(min_api='2020-09-30', operation_group='gallery_image_versions'): + if os_vhd_uri and os_vhd_storage_account is None or os_vhd_uri is None and os_vhd_storage_account: + raise ValidationError('--vhd and --vhd-storage-account should be used together.') + if os_vhd_uri and os_vhd_storage_account: + if not is_valid_resource_id(os_vhd_storage_account): + os_vhd_storage_account = resource_id( + subscription=get_subscription_id(cmd.cli_ctx), resource_group=resource_group_name, + namespace='Microsoft.Storage', type='storageAccounts', name=os_vhd_storage_account) + os_disk_image = GalleryOSDiskImage(source=GalleryArtifactVersionSource( + id=os_vhd_storage_account, uri=os_vhd_uri)) + storage_profile = GalleryImageVersionStorageProfile(source=source, os_disk_image=os_disk_image, data_disk_images=data_disk_images) image_version = ImageVersion(publishing_profile=profile, location=location, tags=(tags or {}), 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 ce86b8b8702..895fe4b80a7 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_e2e.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_e2e.yaml @@ -14,14 +14,14 @@ interactions: - -g --gallery-name User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:30Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:01:33 GMT + - Wed, 14 Apr 2021 09:18:56 GMT expires: - '-1' pragma: @@ -62,7 +62,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01 response: @@ -70,11 +70,11 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_3SFZ6IRIAMDZ\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_3TXBVSIM5PP7\"\r\n },\r\n \ \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/01693fb9-d9a6-4b2d-b968-f011775d3127?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/cb0f2d65-f554-4bff-b710-ecd9c093803f?api-version=2019-12-01 cache-control: - no-cache content-length: @@ -82,7 +82,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:01:41 GMT + - Wed, 14 Apr 2021 09:19:04 GMT expires: - '-1' pragma: @@ -115,14 +115,14 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/01693fb9-d9a6-4b2d-b968-f011775d3127?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/cb0f2d65-f554-4bff-b710-ecd9c093803f?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:01:40.3381041+00:00\",\r\n \"endTime\": - \"2021-04-08T03:01:40.5724379+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"01693fb9-d9a6-4b2d-b968-f011775d3127\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:19:03.3538981+00:00\",\r\n \"endTime\": + \"2021-04-14T09:19:03.9476996+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"cb0f2d65-f554-4bff-b710-ecd9c093803f\"\r\n}" headers: cache-control: - no-cache @@ -131,7 +131,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:11 GMT + - Wed, 14 Apr 2021 09:19:34 GMT expires: - '-1' pragma: @@ -166,7 +166,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01 response: @@ -174,7 +174,7 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_3SFZ6IRIAMDZ\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_3TXBVSIM5PP7\"\r\n },\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -184,7 +184,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:11 GMT + - Wed, 14 Apr 2021 09:19:34 GMT expires: - '-1' pragma: @@ -219,16 +219,16 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries?api-version=2019-12-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"gallery_000002\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGDRRIGOK5WI7WI3DS45D6KD65ECTYDCWTVSDRILUBNK43BYRIJDLW25LKT5UL2VFOX/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RG4IAXNRLBW7DB7Y353VCCPB335N7E3VNBWULTAHGMSRHTVSPPIY2GFUMNVDZL46J5X/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": - {\r\n \"uniqueName\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_3SFZ6IRIAMDZ\"\r\n + {\r\n \"uniqueName\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_3TXBVSIM5PP7\"\r\n \ },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n \ }\r\n ]\r\n}" headers: @@ -239,7 +239,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:13 GMT + - Wed, 14 Apr 2021 09:19:37 GMT expires: - '-1' pragma: @@ -274,7 +274,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01 response: @@ -282,7 +282,7 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_3SFZ6IRIAMDZ\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_3TXBVSIM5PP7\"\r\n },\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -292,7 +292,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:14 GMT + - Wed, 14 Apr 2021 09:19:37 GMT expires: - '-1' pragma: @@ -309,7 +309,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGallery3Min;342,Microsoft.Compute/GetGallery30Min;2492 + - Microsoft.Compute/GetGallery3Min;341,Microsoft.Compute/GetGallery30Min;2491 status: code: 200 message: OK @@ -328,14 +328,14 @@ interactions: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:30Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -344,7 +344,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:15 GMT + - Wed, 14 Apr 2021 09:19:39 GMT expires: - '-1' pragma: @@ -378,7 +378,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -392,7 +392,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/065d856b-c6d8-45ea-99dc-ef2886aeb8cb?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/05c7d7c7-fda7-4c16-b75c-b2901cd3846d?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -400,7 +400,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:23 GMT + - Wed, 14 Apr 2021 09:19:46 GMT expires: - '-1' pragma: @@ -415,7 +415,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;749 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -433,23 +433,23 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/065d856b-c6d8-45ea-99dc-ef2886aeb8cb?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/05c7d7c7-fda7-4c16-b75c-b2901cd3846d?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:02:21.6834754+00:00\",\r\n \"endTime\": - \"2021-04-08T03:02:21.8084348+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"065d856b-c6d8-45ea-99dc-ef2886aeb8cb\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:19:44.6054847+00:00\",\r\n \"endTime\": + \"2021-04-14T09:19:44.839861+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"05c7d7c7-fda7-4c16-b75c-b2901cd3846d\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:53 GMT + - Wed, 14 Apr 2021 09:20:16 GMT expires: - '-1' pragma: @@ -466,7 +466,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4193 + - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4192 status: code: 200 message: OK @@ -484,7 +484,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -504,7 +504,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:53 GMT + - Wed, 14 Apr 2021 09:20:17 GMT expires: - '-1' pragma: @@ -521,7 +521,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;593,Microsoft.Compute/GetGalleryImage30Min;2993 + - Microsoft.Compute/GetGalleryImage3Min;592,Microsoft.Compute/GetGalleryImage30Min;2992 status: code: 200 message: OK @@ -539,7 +539,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images?api-version=2020-09-30 response: @@ -553,7 +553,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:56 GMT + - Wed, 14 Apr 2021 09:20:19 GMT expires: - '-1' pragma: @@ -565,42 +565,42 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 6876112b-b0c9-4bbb-9e73-d2c0f2a04979 - - e9491868-f955-45dd-b5e1-2fd7af25475e - - 73433d9b-a5fa-4fa1-937d-885926a1a881 - - 19cf89e2-5d23-4532-9273-3534bc9d111e - - e08deed5-43e9-4df5-a568-0a064f5a7e66 - - c60376b0-1586-4018-b431-01b2e0278f82 - - 029e309c-c58b-4bf4-bb75-0c99a9b34d0e - - be4c67d5-a3b3-4823-bd60-9e0d5303a21d - - 9cbabc07-b9dd-4ce4-97ac-d8502f0149cb - - 9eb9b8e1-6091-4de1-8654-4bf9a309fba7 - - ba2525e5-a2f2-4632-a7f2-569a17cb9bd7 - - fccd44eb-eeb0-4657-b696-b483ce52dcf9 - - f46a349c-7f9f-4d0b-b2f1-8d1c3d0db4b1 - - 01637949-ed77-45ad-b091-cb5f062cff35 - - 5b1995f6-391e-470c-8bed-9e46caf9f1cf - - 7b372a1e-0359-4824-ae5b-90283f87dfe6 - - 16e16600-67d9-4fe2-ba38-e6a73333dfbc - - 16f3aacf-1ba8-4e6a-b33e-15bad3d85da4 - - 772d9973-32ac-4239-aae2-a04d0122da6c - - 1b494379-0bc3-4f61-a4ac-2f5b67ca842e - - 18d7f5d9-357e-4ab9-af8a-999a511476a3 - - eaf2058f-f33a-4cd8-bca1-b39a7c298181 - - 3fdcf96b-ae27-4c4f-8c13-6e0fcc8001fe - - e5d8dca7-ef78-4537-a134-d1ed837557d8 - - 0a943de6-4e68-46ac-96e6-62936fd1aae0 - - 2e54d73a-a460-43d2-8e88-4c76c3d65910 - - 01c8b641-2dd8-4ea9-8321-9753ae28cd97 - - 7060d4b3-7321-4e02-a74c-afc36e6e38cb - - 515c402f-1f28-4a83-acbf-8abcf93a63e9 - - 4926683f-1f56-42be-9047-a9b8e0bd8d7e - - 101d6397-49d9-4afc-899d-cbeef0370f40 - - 82a2156a-8e61-4f2a-a36f-4271d1566584 - - 30892071-e60f-49f9-8c1c-e645b40fee8b - - 5ec86d4d-d9a9-4c7a-aa90-9c7c05ced261 - - 8a2a80f7-c65a-46b0-9cb9-f1c5a53a6211 - - d08449e4-6564-4059-8eeb-1810c437b834 + - a81a34af-bfc2-4e70-ab45-1af6d227b514 + - 0ddc2c55-2d95-4fa3-880c-58681a5e7d22 + - 5d4e845f-274a-4ffd-863d-f7927bc55fef + - 21ac4ec8-387c-4586-95ef-22b7bded2323 + - 757825ad-3d3b-43e6-9d7b-c27e1a3ea262 + - 74b873db-97d0-497a-bfb1-e12ae215f0aa + - 97c52abe-bb18-4aca-b45d-87b21ddbf457 + - daa55035-573b-4fd8-85df-018bef296e26 + - 17573dd8-ad74-4df0-b5e8-bfc9b442679d + - 902456b7-e28a-4fe6-bc04-7c82539fb8bb + - be579484-5417-4794-87d1-7152f9936e7d + - 1d866cb8-5f18-47b6-9215-c98adcc195e6 + - 694487bb-267f-4b23-886c-b7238db27b53 + - 7686b635-5dcf-4338-aee9-cb5be975ebee + - 7ab25e5f-e32e-4e97-8f44-e1ed4c11b466 + - 8435a5f2-239f-4a1a-a311-a0e3d9406b6f + - 3618e37a-a7a6-4cc7-8bdf-d70c130ca3dd + - 6a7a07e9-32e7-40e9-af98-a60e298a81dd + - 96e40d06-436a-4c3c-ad76-8954440a77fa + - da3f2163-d623-4e46-8574-b6d21f0c918b + - 06bcb29a-2e76-4f4f-b650-7d1515246474 + - d0afe5d8-650d-4edc-8afa-8861910914b1 + - 50eaeb79-8141-4aa1-aa2f-2e41cb36eabc + - 783f1f3f-7612-44d2-bb46-70f2c6bccedd + - 42a2516f-94f8-4acf-9713-4e708a2a3bff + - 8ffd716b-16a0-42a3-b4db-05bcbb0c7f25 + - 5533daaa-fe13-4f7a-8a4a-090e14d2b5dc + - 243c97dd-9110-4a8b-a94c-1e3d1e1cf8de + - f8869430-de97-41aa-8573-2ca4b30af302 + - 5cd48238-0f6c-4e2b-bf22-1a3c20013f65 + - 6b1a2bda-449d-43ce-a090-b1b29fe38023 + - 2b5f9668-3ee3-40b3-9572-3096e703aefe + - 7702645b-ebfc-45c0-a5d2-491793b84372 + - 151ccb36-9d15-41e5-b05f-67b283c8189b + - 00534a4e-7289-4f8a-ae0e-92d7e958d218 + - 355c364d-7296-4e7a-bcc0-aada81cdcb77 status: code: 200 message: OK @@ -618,7 +618,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -638,7 +638,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:56 GMT + - Wed, 14 Apr 2021 09:20:20 GMT expires: - '-1' pragma: @@ -655,7 +655,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;592,Microsoft.Compute/GetGalleryImage30Min;2992 + - Microsoft.Compute/GetGalleryImage3Min;591,Microsoft.Compute/GetGalleryImage30Min;2991 status: code: 200 message: OK @@ -674,14 +674,14 @@ interactions: - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:30Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -690,7 +690,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:57 GMT + - Wed, 14 Apr 2021 09:20:20 GMT expires: - '-1' pragma: @@ -769,13 +769,13 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:58 GMT + - Wed, 14 Apr 2021 09:20:22 GMT etag: - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" expires: - - Thu, 08 Apr 2021 03:07:58 GMT + - Wed, 14 Apr 2021 09:25:22 GMT source-age: - - '0' + - '72' strict-transport-security: - max-age=31536000 vary: @@ -789,15 +789,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 843f0ab840bd09ece58f94e5b61757ce6f01ae10 + - 6e7ce76cff23917dce6dd5b0f205cb5f45e830de x-frame-options: - deny x-github-request-id: - - 1190:87A4:204620:263068:606E0A67 + - B82A:0EF1:2D6432:361BB8:60763DA4 x-served-by: - - cache-qpg1283-QPG + - cache-qpg1252-QPG x-timer: - - S1617850978.781213,VS0,VE229 + - S1618392022.003966,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -817,7 +817,7 @@ interactions: ParameterSetName: - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 response: @@ -831,7 +831,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:02:58 GMT + - Wed, 14 Apr 2021 09:20:21 GMT expires: - '-1' pragma: @@ -892,25 +892,25 @@ interactions: - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_1nJrX15qApWympdFscjSXT4TqpVo1YWy","name":"vm_deploy_1nJrX15qApWympdFscjSXT4TqpVo1YWy","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16759368686505382757","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-08T03:03:02.9253984Z","duration":"PT2.6391619S","correlationId":"3be4cdac-b10f-445d-898c-7ed94b5626b2","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus2"]},{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_reEynIeV4pQPIpEVqbAnnTtgssAMveMx","name":"vm_deploy_reEynIeV4pQPIpEVqbAnnTtgssAMveMx","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8948302080996803651","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-14T09:20:27.2331918Z","duration":"PT2.9257266S","correlationId":"9dd91f90-5693-4b6e-8994-3af0c257897a","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus2"]},{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_1nJrX15qApWympdFscjSXT4TqpVo1YWy/operationStatuses/08585837559051914265?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_reEynIeV4pQPIpEVqbAnnTtgssAMveMx/operationStatuses/08585832148611701683?api-version=2020-10-01 cache-control: - no-cache content-length: - - '2748' + - '2747' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:04 GMT + - Wed, 14 Apr 2021 09:20:28 GMT expires: - '-1' pragma: @@ -920,7 +920,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -939,9 +939,9 @@ interactions: - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585837559051914265?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585832148611701683?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -953,7 +953,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:03:35 GMT + - Wed, 14 Apr 2021 09:20:59 GMT expires: - '-1' pragma: @@ -982,9 +982,9 @@ interactions: - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585837559051914265?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585832148611701683?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -996,7 +996,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:04:05 GMT + - Wed, 14 Apr 2021 09:21:30 GMT expires: - '-1' pragma: @@ -1025,21 +1025,21 @@ interactions: - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_1nJrX15qApWympdFscjSXT4TqpVo1YWy","name":"vm_deploy_1nJrX15qApWympdFscjSXT4TqpVo1YWy","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16759368686505382757","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-08T03:03:50.4563863Z","duration":"PT50.1701498S","correlationId":"3be4cdac-b10f-445d-898c-7ed94b5626b2","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus2"]},{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_reEynIeV4pQPIpEVqbAnnTtgssAMveMx","name":"vm_deploy_reEynIeV4pQPIpEVqbAnnTtgssAMveMx","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8948302080996803651","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-14T09:21:16.7950596Z","duration":"PT52.4875944S","correlationId":"9dd91f90-5693-4b6e-8994-3af0c257897a","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus2"]},{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}' headers: cache-control: - no-cache content-length: - - '3813' + - '3812' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:04:06 GMT + - Wed, 14 Apr 2021 09:21:31 GMT expires: - '-1' pragma: @@ -1067,28 +1067,28 @@ interactions: ParameterSetName: - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"414b5dbf-4842-4326-9635-8fe4c5badd8c\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"c3c90b30-5cbe-49e3-8119-d01b4c9d2fb2\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202103250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"vm1_disk1_373b5b1640ac48b880f4d849fa57fae5\",\r\n + \"Linux\",\r\n \"name\": \"vm1_disk1_a9ebcddecf804119bb33f2a238f5e735\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_373b5b1640ac48b880f4d849fa57fae5\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_a9ebcddecf804119bb33f2a238f5e735\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": - [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1_disk2_5f47edf9d5a24f6ba4c0352a17f2adec\",\r\n + [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1_disk2_4d42740e01a145b78c38ed39709f2290\",\r\n \ \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_5f47edf9d5a24f6ba4c0352a17f2adec\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_4d42740e01a145b78c38ed39709f2290\"\r\n \ },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": @@ -1107,20 +1107,20 @@ interactions: [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \ \"message\": \"Guest Agent is running\",\r\n \"time\": - \"2021-04-08T03:04:03+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_disk1_373b5b1640ac48b880f4d849fa57fae5\",\r\n + \"2021-04-14T09:21:28+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_disk1_a9ebcddecf804119bb33f2a238f5e735\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-08T03:03:37.5916074+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-14T09:20:54.9117502+00:00\"\r\n \ }\r\n ]\r\n },\r\n {\r\n \"name\": - \"vm1_disk2_5f47edf9d5a24f6ba4c0352a17f2adec\",\r\n \"statuses\": + \"vm1_disk2_4d42740e01a145b78c38ed39709f2290\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-08T03:03:37.5916074+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-14T09:20:54.9117502+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-08T03:03:48.8416275+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-14T09:21:13.9598089+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n \ }\r\n ]\r\n }\r\n }\r\n}" @@ -1132,7 +1132,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:04:07 GMT + - Wed, 14 Apr 2021 09:21:33 GMT expires: - '-1' pragma: @@ -1167,18 +1167,18 @@ interactions: ParameterSetName: - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"vm1VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\r\n - \ \"etag\": \"W/\\\"b48ef775-5dc0-472f-ae4f-a9985e365491\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"1b099bed-b7ea-4dd1-942a-c0cee4695702\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"7f66d37b-9b41-4112-b2f7-1a507cdc801e\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"1a515bcf-2b03-46b1-931f-a497151013fc\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm1\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\r\n - \ \"etag\": \"W/\\\"b48ef775-5dc0-472f-ae4f-a9985e365491\\\"\",\r\n + \ \"etag\": \"W/\\\"1b099bed-b7ea-4dd1-942a-c0cee4695702\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -1187,8 +1187,8 @@ interactions: \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": - \"hwhmfvyaq5seln1byd12ibrqqa.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-7C-66-B1\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"c0tepdj3q2yutoxptvzcz3dsuc.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-22-48-4C-09-CF\",\r\n \"enableAcceleratedNetworking\": false,\r\n \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -1202,9 +1202,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:04:07 GMT + - Wed, 14 Apr 2021 09:21:33 GMT etag: - - W/"b48ef775-5dc0-472f-ae4f-a9985e365491" + - W/"1b099bed-b7ea-4dd1-942a-c0cee4695702" expires: - '-1' pragma: @@ -1221,7 +1221,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 36d7480f-b1d0-4256-9cb7-270c12730f0e + - 7960c784-9d77-4b89-8788-bfa056097eba status: code: 200 message: OK @@ -1239,17 +1239,17 @@ interactions: ParameterSetName: - -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"vm1PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\r\n - \ \"etag\": \"W/\\\"7c47f4cb-5713-45ee-9121-caf70f8c69a4\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"0b735981-05c2-42f7-ad36-744f7014c086\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"d087e1c5-e63e-4856-b85f-d7420b86b7a1\",\r\n - \ \"ipAddress\": \"52.252.107.124\",\r\n \"publicIPAddressVersion\": - \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + \"Succeeded\",\r\n \"resourceGuid\": \"d071a775-2c73-4b09-8349-3533441291df\",\r\n + \ \"ipAddress\": \"20.96.13.253\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" @@ -1257,13 +1257,13 @@ interactions: cache-control: - no-cache content-length: - - '999' + - '997' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:04:08 GMT + - Wed, 14 Apr 2021 09:21:33 GMT etag: - - W/"7c47f4cb-5713-45ee-9121-caf70f8c69a4" + - W/"0b735981-05c2-42f7-ad36-744f7014c086" expires: - '-1' pragma: @@ -1280,7 +1280,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ca1bb192-e278-48fe-a488-6b76a354d4b3 + - fe06c225-c836-4e02-92a6-686d3cac343e status: code: 200 message: OK @@ -1303,7 +1303,7 @@ interactions: ParameterSetName: - -g -n --command-id --scripts User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/runCommand?api-version=2020-12-01 response: @@ -1311,17 +1311,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/30e55c95-c7ce-4699-bd5b-b10360c52b76?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/f73a030a-3017-4604-94bb-55813121a908?api-version=2020-12-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 08 Apr 2021 03:04:09 GMT + - Wed, 14 Apr 2021 09:21:34 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/30e55c95-c7ce-4699-bd5b-b10360c52b76?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/f73a030a-3017-4604-94bb-55813121a908?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -1352,17 +1352,17 @@ interactions: ParameterSetName: - -g -n --command-id --scripts User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/30e55c95-c7ce-4699-bd5b-b10360c52b76?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/f73a030a-3017-4604-94bb-55813121a908?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:04:10.3887022+00:00\",\r\n \"endTime\": - \"2021-04-08T03:04:25.3106769+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-14T09:21:35.3203514+00:00\",\r\n \"endTime\": + \"2021-04-14T09:21:45.7737894+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\"value\":[{\"code\":\"ProvisioningState/succeeded\",\"level\":\"Info\",\"displayStatus\":\"Provisioning succeeded\",\"message\":\"Enable succeeded: \\n[stdout]\\n\\n[stderr]\\nwarning: - commands will be executed using /bin/sh\\njob 1 at Thu Apr 8 03:05:00 2021\\n\"}]}\r\n - \ },\r\n \"name\": \"30e55c95-c7ce-4699-bd5b-b10360c52b76\"\r\n}" + commands will be executed using /bin/sh\\njob 1 at Wed Apr 14 09:22:00 2021\\n\"}]}\r\n + \ },\r\n \"name\": \"f73a030a-3017-4604-94bb-55813121a908\"\r\n}" headers: cache-control: - no-cache @@ -1371,7 +1371,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:04:40 GMT + - Wed, 14 Apr 2021 09:22:05 GMT expires: - '-1' pragma: @@ -1406,14 +1406,14 @@ interactions: ParameterSetName: - -g -n --command-id --scripts User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/30e55c95-c7ce-4699-bd5b-b10360c52b76?monitor=true&api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/f73a030a-3017-4604-94bb-55813121a908?monitor=true&api-version=2020-12-01 response: body: string: '{"value":[{"code":"ProvisioningState/succeeded","level":"Info","displayStatus":"Provisioning succeeded","message":"Enable succeeded: \n[stdout]\n\n[stderr]\nwarning: commands - will be executed using /bin/sh\njob 1 at Thu Apr 8 03:05:00 2021\n"}]}' + will be executed using /bin/sh\njob 1 at Wed Apr 14 09:22:00 2021\n"}]}' headers: cache-control: - no-cache @@ -1422,7 +1422,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:04:40 GMT + - Wed, 14 Apr 2021 09:22:06 GMT expires: - '-1' pragma: @@ -1459,7 +1459,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/deallocate?api-version=2020-12-01 response: @@ -1467,17 +1467,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/7d5cd6ca-31c7-4862-a234-9c1b1779a9e0?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/b778870e-d409-4dd0-a44d-0a55ecf9c0da?api-version=2020-12-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 08 Apr 2021 03:05:52 GMT + - Wed, 14 Apr 2021 09:23:16 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/7d5cd6ca-31c7-4862-a234-9c1b1779a9e0?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/b778870e-d409-4dd0-a44d-0a55ecf9c0da?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -1508,13 +1508,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/7d5cd6ca-31c7-4862-a234-9c1b1779a9e0?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/b778870e-d409-4dd0-a44d-0a55ecf9c0da?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:05:52.2643414+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"7d5cd6ca-31c7-4862-a234-9c1b1779a9e0\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:23:17.1051932+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"b778870e-d409-4dd0-a44d-0a55ecf9c0da\"\r\n}" headers: cache-control: - no-cache @@ -1523,7 +1523,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:06:02 GMT + - Wed, 14 Apr 2021 09:23:27 GMT expires: - '-1' pragma: @@ -1558,14 +1558,14 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/7d5cd6ca-31c7-4862-a234-9c1b1779a9e0?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/b778870e-d409-4dd0-a44d-0a55ecf9c0da?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:05:52.2643414+00:00\",\r\n \"endTime\": - \"2021-04-08T03:06:16.8269667+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"7d5cd6ca-31c7-4862-a234-9c1b1779a9e0\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:23:17.1051932+00:00\",\r\n \"endTime\": + \"2021-04-14T09:23:47.3876472+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"b778870e-d409-4dd0-a44d-0a55ecf9c0da\"\r\n}" headers: cache-control: - no-cache @@ -1574,7 +1574,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:06:38 GMT + - Wed, 14 Apr 2021 09:24:03 GMT expires: - '-1' pragma: @@ -1591,7 +1591,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29991 + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29990 status: code: 200 message: OK @@ -1609,9 +1609,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/7d5cd6ca-31c7-4862-a234-9c1b1779a9e0?monitor=true&api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/b778870e-d409-4dd0-a44d-0a55ecf9c0da?monitor=true&api-version=2020-12-01 response: body: string: '' @@ -1621,7 +1621,7 @@ interactions: content-length: - '0' date: - - Thu, 08 Apr 2021 03:06:39 GMT + - Wed, 14 Apr 2021 09:24:03 GMT expires: - '-1' pragma: @@ -1634,7 +1634,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29990 + - Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29989 status: code: 200 message: OK @@ -1654,7 +1654,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/generalize?api-version=2020-12-01 response: @@ -1666,7 +1666,7 @@ interactions: content-length: - '0' date: - - Thu, 08 Apr 2021 03:06:39 GMT + - Wed, 14 Apr 2021 09:24:04 GMT expires: - '-1' pragma: @@ -1699,26 +1699,26 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"414b5dbf-4842-4326-9635-8fe4c5badd8c\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"c3c90b30-5cbe-49e3-8119-d01b4c9d2fb2\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202103250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"vm1_disk1_373b5b1640ac48b880f4d849fa57fae5\",\r\n + \"Linux\",\r\n \"name\": \"vm1_disk1_a9ebcddecf804119bb33f2a238f5e735\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n - \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_373b5b1640ac48b880f4d849fa57fae5\"\r\n + \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_a9ebcddecf804119bb33f2a238f5e735\"\r\n \ }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": - 0,\r\n \"name\": \"vm1_disk2_5f47edf9d5a24f6ba4c0352a17f2adec\",\r\n + 0,\r\n \"name\": \"vm1_disk2_4d42740e01a145b78c38ed39709f2290\",\r\n \ \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n - \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_5f47edf9d5a24f6ba4c0352a17f2adec\"\r\n + \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_4d42740e01a145b78c38ed39709f2290\"\r\n \ },\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n \ },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": @@ -1731,21 +1731,21 @@ interactions: true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"disks\": - [\r\n {\r\n \"name\": \"vm1_disk1_373b5b1640ac48b880f4d849fa57fae5\",\r\n + [\r\n {\r\n \"name\": \"vm1_disk1_a9ebcddecf804119bb33f2a238f5e735\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-08T03:06:14.7332351+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-14T09:23:45.3093656+00:00\"\r\n \ }\r\n ]\r\n },\r\n {\r\n \"name\": - \"vm1_disk2_5f47edf9d5a24f6ba4c0352a17f2adec\",\r\n \"statuses\": + \"vm1_disk2_4d42740e01a145b78c38ed39709f2290\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-08T03:06:14.7332351+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-14T09:23:45.3093656+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"OSState/generalized\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM generalized\"\r\n \ },\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-08T03:06:14.7488602+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-14T09:23:45.3249912+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/deallocated\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n \ }\r\n ]\r\n }\r\n }\r\n}" @@ -1757,7 +1757,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:06:40 GMT + - Wed, 14 Apr 2021 09:24:04 GMT expires: - '-1' pragma: @@ -1793,14 +1793,14 @@ interactions: - -g -n --source User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:30Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1809,7 +1809,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:06:40 GMT + - Wed, 14 Apr 2021 09:24:05 GMT expires: - '-1' pragma: @@ -1843,7 +1843,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1?api-version=2020-12-01 response: @@ -1854,10 +1854,10 @@ interactions: \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\"\r\n \ },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"managedDisk\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_373b5b1640ac48b880f4d849fa57fae5\"\r\n + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_a9ebcddecf804119bb33f2a238f5e735\"\r\n \ },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": - 0,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_5f47edf9d5a24f6ba4c0352a17f2adec\"\r\n + 0,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_4d42740e01a145b78c38ed39709f2290\"\r\n \ },\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Premium_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"hyperVGeneration\": \"V1\"\r\n }\r\n}" @@ -1865,7 +1865,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/90a8dd5d-f6a8-4cd0-80f8-1b12647704d1?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/acc3e0aa-5674-473a-8798-2a206f743e44?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -1873,7 +1873,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:06:48 GMT + - Wed, 14 Apr 2021 09:24:13 GMT expires: - '-1' pragma: @@ -1888,7 +1888,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateImages3Min;39,Microsoft.Compute/CreateImages30Min;199 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1196' status: code: 201 message: Created @@ -1906,23 +1906,23 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/90a8dd5d-f6a8-4cd0-80f8-1b12647704d1?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/acc3e0aa-5674-473a-8798-2a206f743e44?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:06:47.0303123+00:00\",\r\n \"endTime\": - \"2021-04-08T03:06:52.1240989+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"90a8dd5d-f6a8-4cd0-80f8-1b12647704d1\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:24:11.185392+00:00\",\r\n \"endTime\": + \"2021-04-14T09:24:16.3261615+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"acc3e0aa-5674-473a-8798-2a206f743e44\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:07:19 GMT + - Wed, 14 Apr 2021 09:24:43 GMT expires: - '-1' pragma: @@ -1939,7 +1939,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29988 + - Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29987 status: code: 200 message: OK @@ -1957,7 +1957,7 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1?api-version=2020-12-01 response: @@ -1968,11 +1968,11 @@ interactions: \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\"\r\n \ },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"diskSizeGB\": - 30,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_373b5b1640ac48b880f4d849fa57fae5\"\r\n + 30,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_a9ebcddecf804119bb33f2a238f5e735\"\r\n \ },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"diskSizeGB\": 10,\r\n \"managedDisk\": {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_5f47edf9d5a24f6ba4c0352a17f2adec\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_4d42740e01a145b78c38ed39709f2290\"\r\n \ },\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Premium_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\r\n }\r\n}" @@ -1984,7 +1984,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:07:19 GMT + - Wed, 14 Apr 2021 09:24:43 GMT expires: - '-1' pragma: @@ -2021,14 +2021,14 @@ interactions: --replica-count User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:30Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2037,7 +2037,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:07:20 GMT + - Wed, 14 Apr 2021 09:24:44 GMT expires: - '-1' pragma: @@ -2072,9 +2072,9 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"1.1.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2\",\r\n @@ -2083,13 +2083,13 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-08T03:07:25.0550396+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-14T09:24:47.9357926+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n \ }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c3555428-b75f-4cfd-826c-f4df2714fcec?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0f378fef-d2e1-4943-8917-cf4d4703e391?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -2097,7 +2097,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:07:26 GMT + - Wed, 14 Apr 2021 09:24:49 GMT expires: - '-1' pragma: @@ -2112,7 +2112,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1198 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1195' status: code: 201 message: Created @@ -2131,13 +2131,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c3555428-b75f-4cfd-826c-f4df2714fcec?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0f378fef-d2e1-4943-8917-cf4d4703e391?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:07:25.0394472+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"c3555428-b75f-4cfd-826c-f4df2714fcec\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:24:47.9201677+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"0f378fef-d2e1-4943-8917-cf4d4703e391\"\r\n}" headers: cache-control: - no-cache @@ -2146,7 +2146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:08:26 GMT + - Wed, 14 Apr 2021 09:25:50 GMT expires: - '-1' pragma: @@ -2163,7 +2163,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4183 + - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4182 status: code: 200 message: OK @@ -2182,13 +2182,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c3555428-b75f-4cfd-826c-f4df2714fcec?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0f378fef-d2e1-4943-8917-cf4d4703e391?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:07:25.0394472+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"c3555428-b75f-4cfd-826c-f4df2714fcec\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:24:47.9201677+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"0f378fef-d2e1-4943-8917-cf4d4703e391\"\r\n}" headers: cache-control: - no-cache @@ -2197,7 +2197,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:09:28 GMT + - Wed, 14 Apr 2021 09:26:50 GMT expires: - '-1' pragma: @@ -2233,13 +2233,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c3555428-b75f-4cfd-826c-f4df2714fcec?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0f378fef-d2e1-4943-8917-cf4d4703e391?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:07:25.0394472+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"c3555428-b75f-4cfd-826c-f4df2714fcec\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:24:47.9201677+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"0f378fef-d2e1-4943-8917-cf4d4703e391\"\r\n}" headers: cache-control: - no-cache @@ -2248,7 +2248,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:10:27 GMT + - Wed, 14 Apr 2021 09:27:51 GMT expires: - '-1' pragma: @@ -2284,13 +2284,64 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0f378fef-d2e1-4943-8917-cf4d4703e391?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-04-14T09:24:47.9201677+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"0f378fef-d2e1-4943-8917-cf4d4703e391\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 14 Apr 2021 09:28: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;1189,Microsoft.Compute/GetOperationStatus30Min;4171 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image + --replica-count + User-Agent: + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c3555428-b75f-4cfd-826c-f4df2714fcec?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0f378fef-d2e1-4943-8917-cf4d4703e391?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:07:25.0394472+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"c3555428-b75f-4cfd-826c-f4df2714fcec\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:24:47.9201677+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"0f378fef-d2e1-4943-8917-cf4d4703e391\"\r\n}" headers: cache-control: - no-cache @@ -2299,7 +2350,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:11:29 GMT + - Wed, 14 Apr 2021 09:29:54 GMT expires: - '-1' pragma: @@ -2316,7 +2367,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4173 + - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4168 status: code: 200 message: OK @@ -2335,13 +2386,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c3555428-b75f-4cfd-826c-f4df2714fcec?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0f378fef-d2e1-4943-8917-cf4d4703e391?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:07:25.0394472+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"c3555428-b75f-4cfd-826c-f4df2714fcec\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:24:47.9201677+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"0f378fef-d2e1-4943-8917-cf4d4703e391\"\r\n}" headers: cache-control: - no-cache @@ -2350,7 +2401,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:12:30 GMT + - Wed, 14 Apr 2021 09:30:53 GMT expires: - '-1' pragma: @@ -2367,7 +2418,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4170 + - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4164 status: code: 200 message: OK @@ -2386,13 +2437,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c3555428-b75f-4cfd-826c-f4df2714fcec?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0f378fef-d2e1-4943-8917-cf4d4703e391?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:07:25.0394472+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"c3555428-b75f-4cfd-826c-f4df2714fcec\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:24:47.9201677+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"0f378fef-d2e1-4943-8917-cf4d4703e391\"\r\n}" headers: cache-control: - no-cache @@ -2401,7 +2452,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:13:31 GMT + - Wed, 14 Apr 2021 09:31:55 GMT expires: - '-1' pragma: @@ -2418,7 +2469,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4166 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4159 status: code: 200 message: OK @@ -2437,14 +2488,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c3555428-b75f-4cfd-826c-f4df2714fcec?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0f378fef-d2e1-4943-8917-cf4d4703e391?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:07:25.0394472+00:00\",\r\n \"endTime\": - \"2021-04-08T03:14:11.4616464+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"c3555428-b75f-4cfd-826c-f4df2714fcec\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:24:47.9201677+00:00\",\r\n \"endTime\": + \"2021-04-14T09:31:56.2509304+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"0f378fef-d2e1-4943-8917-cf4d4703e391\"\r\n}" headers: cache-control: - no-cache @@ -2453,7 +2504,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:14:31 GMT + - Wed, 14 Apr 2021 09:32:54 GMT expires: - '-1' pragma: @@ -2470,7 +2521,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4163 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4156 status: code: 200 message: OK @@ -2489,9 +2540,9 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"1.1.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2\",\r\n @@ -2500,7 +2551,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-08T03:07:25.0550396+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-14T09:24:47.9357926+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n \ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": @@ -2516,7 +2567,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:14:31 GMT + - Wed, 14 Apr 2021 09:32:55 GMT expires: - '-1' pragma: @@ -2533,7 +2584,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1996,Microsoft.Compute/GetGalleryImageVersion30Min;9989 + - Microsoft.Compute/GetGalleryImageVersion3Min;1993,Microsoft.Compute/GetGalleryImageVersion30Min;9986 status: code: 200 message: OK @@ -2551,13 +2602,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions?api-version=2020-09-30 response: body: string: '{"value":[{"name":"1.1.2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2","type":"Microsoft.Compute/galleries/images/versions","location":"eastus2","tags":{},"properties":{"publishingProfile":{"targetRegions":[{"name":"East - US 2","regionalReplicaCount":1,"storageAccountType":"Standard_LRS"}],"replicaCount":1,"excludeFromLatest":false,"publishedDate":"2021-04-08T03:07:25.0550396+00:00","storageAccountType":"Standard_LRS"},"storageProfile":{"source":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1"},"osDiskImage":{"sizeInGB":30,"hostCaching":"ReadWrite","source":{}},"dataDiskImages":[{"lun":0,"sizeInGB":10,"hostCaching":"None"}]},"provisioningState":"Succeeded"}}]}' + US 2","regionalReplicaCount":1,"storageAccountType":"Standard_LRS"}],"replicaCount":1,"excludeFromLatest":false,"publishedDate":"2021-04-14T09:24:47.9357926+00:00","storageAccountType":"Standard_LRS"},"storageProfile":{"source":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1"},"osDiskImage":{"sizeInGB":30,"hostCaching":"ReadWrite","source":{}},"dataDiskImages":[{"lun":0,"sizeInGB":10,"hostCaching":"None"}]},"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache @@ -2566,7 +2617,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:14:34 GMT + - Wed, 14 Apr 2021 09:32:57 GMT expires: - '-1' pragma: @@ -2578,42 +2629,42 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - bd900704-f77f-43fc-98f5-28f4a92e6da3 - - 80da7187-e1fa-45ea-8642-25ba724d27f8 - - ccc241d9-d41e-4e31-91a5-57146af24a9b - - d893637d-b212-4c58-8638-df14fe975a98 - - d1024cbd-2fe1-47de-89c1-2869034dec5f - - 7b8389e7-7f10-4f9d-a4ef-71408e731786 - - da680bc4-c21f-40db-9f6b-9fb9ea481f6c - - b3278d4a-c9a9-4886-856a-dcea3a43ff98 - - 95e61608-dbee-46f7-b12e-ca2f4354c257 - - a3d29503-f75f-46b4-8c3a-fef466a0dbc9 - - ecca8dd4-d3c2-49cf-b1ff-b9e6603f815c - - 08d99160-5825-4f97-98f6-d54c80a1f6ab - - 546077d2-0de4-44c5-b5c3-fb9ae1cf6c25 - - 51b5b111-0fe6-4523-9499-1186e4a65cc8 - - f4aa744c-f3ad-42ef-99e8-40bf7498b25a - - 139ebee6-ebd2-4599-8329-89688dcde50c - - 8e36936e-5239-4558-8f4a-b6222fb5ed7d - - d787ee4b-0aee-4633-a31d-5ce142375b27 - - 6e67870f-de4f-4cbb-91d6-50db0c578023 - - 55a771eb-35e9-4263-b16a-0fbf35019892 - - 700dfbd7-d334-4f2e-8bb7-a69590b21b74 - - 9f2beed8-fd6b-4755-a822-d7b227b80955 - - 90bef442-f1e4-4efd-8d22-506976b8d164 - - e61f98ac-f333-429d-bfc7-8b79418d882d - - 013f402a-f59e-4496-ac04-3ef7f57e253b - - 1453964e-4315-4e0b-a03c-d7c0f442e175 - - ea5bf80f-0ee5-4a8e-91a7-e60ff249afda - - a52d9682-6a37-409c-a4a0-ffe02af0504c - - fca44b1b-5a6c-4e3c-bf1e-51581f72ef87 - - 622a269b-c71b-4261-8b93-6fa246b4e279 - - 39b8efa1-d924-4e30-a8ba-ec5c705e2d09 - - 17fa3d3d-1209-491f-b282-f2419647ede0 - - db0b240e-78e9-4b57-bbcb-d9ce8814dc04 - - 7a3a76ac-62b8-4548-9934-5e64dcd43b7b - - 4f547f66-da9f-4478-ab8c-2567b3a8cf7c - - d9da7db1-5436-4b35-97fb-f70871fd6718 + - e77e5f61-d4f2-4954-98ee-fe01f8dedbd4 + - fcbaf940-5542-4c3b-940e-f692f62302dd + - 1d3aca94-6955-4da8-8c06-e8d9cf3853be + - 5a07e9f6-67fd-4693-8bf9-b0e5dfcea5f4 + - bfda1470-6480-49d9-8de8-046f148cbd38 + - 774073d1-949a-4a59-957d-a72358b48a40 + - c666c349-9d00-4780-bc4a-3af3cd33536c + - c7638ecd-d7b8-4c4a-978d-279f484d455d + - 7434a0bb-1ee6-4a43-adc1-06479f0b181b + - 4aed1195-17d9-4f36-892c-0a244d9807ab + - bd4a4150-2f82-453b-b626-8d354f7c88d2 + - 197fb7c9-a815-4dd0-bb0f-7cdfd6e6863e + - ad7a9b37-da4d-4208-9582-183af478ce64 + - fbd87cdd-d101-4490-b12d-16ed977a69d2 + - cee4ecbd-6124-4bed-914d-7c3bbf87f6c4 + - 70d72ec2-80b6-4fa0-a7e7-67eb68768dee + - d4da8899-081b-4001-ac24-3be988537d6d + - b00e522f-c5f8-459b-9222-d400327af99a + - 1cb76b09-87c7-4745-83ef-0300bf2e86a7 + - 0f3a5ced-80fd-4da4-bf5f-f5116c6ea9ec + - 3413f732-0c8a-4030-aeea-319a9c83df58 + - 49c823d3-4c30-4097-a687-f752f177ef3e + - d085e0b7-fc6c-4b2f-8423-8697fc754ce3 + - f41712fd-c46b-4c4d-b21c-f2fb61d38d4b + - 40003990-791a-43c9-bcad-b100bb8b76de + - 43597654-2536-4f44-ba95-49281530a549 + - 162629f5-cc6a-4431-af86-d15ddcad7e4d + - bb681ff1-3d91-4854-822a-5ccae6d1eef2 + - 3eadaec1-edcc-4fdf-a791-e9f104f19fbb + - f2f7c13f-9f1f-435c-aaf5-84ea6604a75f + - 7f39d104-8b6b-4769-93e1-f376e5ae72f8 + - eb9451c3-99ca-4c79-9583-f6a9af1bce80 + - 307a39c8-403d-4745-93b9-1ed36a724241 + - edab7c4e-fb31-4840-aff5-0da21c181ad3 + - 910542eb-0338-4f5c-9cd2-0dec29a2ac61 + - a409f186-9b32-4caf-b2dc-e9bfa50dd6f0 status: code: 200 message: OK @@ -2631,9 +2682,9 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"1.1.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2\",\r\n @@ -2642,7 +2693,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-08T03:07:25.0550396+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-14T09:24:47.9357926+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n \ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": @@ -2658,7 +2709,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:14:34 GMT + - Wed, 14 Apr 2021 09:32:59 GMT expires: - '-1' pragma: @@ -2675,7 +2726,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1995,Microsoft.Compute/GetGalleryImageVersion30Min;9988 + - Microsoft.Compute/GetGalleryImageVersion3Min;1992,Microsoft.Compute/GetGalleryImageVersion30Min;9985 status: code: 200 message: OK @@ -2694,9 +2745,9 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"1.1.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2\",\r\n @@ -2705,7 +2756,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-08T03:07:25.0550396+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-14T09:24:47.9357926+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n \ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": @@ -2721,7 +2772,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:14:35 GMT + - Wed, 14 Apr 2021 09:32:59 GMT expires: - '-1' pragma: @@ -2738,7 +2789,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1994,Microsoft.Compute/GetGalleryImageVersion30Min;9987 + - Microsoft.Compute/GetGalleryImageVersion3Min;1992,Microsoft.Compute/GetGalleryImageVersion30Min;9984 status: code: 200 message: OK @@ -2765,9 +2816,9 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"1.1.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2\",\r\n @@ -2778,843 +2829,25 @@ interactions: \"Standard_LRS\"\r\n },\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 2,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 2,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-08T03:07:25.0550396+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-14T09:24:47.9357926+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": - {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n - \ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": - \"ReadWrite\",\r\n \"source\": {}\r\n },\r\n \"dataDiskImages\": - [\r\n {\r\n \"lun\": 0,\r\n \"sizeInGB\": 10,\r\n - \ \"hostCaching\": \"None\"\r\n }\r\n ]\r\n },\r\n - \ \"provisioningState\": \"Updating\"\r\n }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01 - cache-control: - - no-cache - content-length: - - '1474' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 08 Apr 2021 03:14:37 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1197 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version update - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions - --replica-count - User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 08 Apr 2021 03:15:38 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4161 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version update - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions - --replica-count - User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 08 Apr 2021 03:16:39 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4159 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version update - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions - --replica-count - User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 08 Apr 2021 03:17:40 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4157 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version update - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions - --replica-count - User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 08 Apr 2021 03:18:41 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4155 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version update - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions - --replica-count - User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 08 Apr 2021 03:19: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;1195,Microsoft.Compute/GetOperationStatus30Min;4153 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version update - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions - --replica-count - User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 08 Apr 2021 03: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/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4151 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version update - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions - --replica-count - User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 08 Apr 2021 03:21: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;4149 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version update - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions - --replica-count - User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 08 Apr 2021 03:22: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;4147 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version update - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions - --replica-count - User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 08 Apr 2021 03:23: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;4145 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version update - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions - --replica-count - User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 08 Apr 2021 03:24: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;4143 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version update - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions - --replica-count - User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 08 Apr 2021 03:25: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;4141 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version update - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions - --replica-count - User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 08 Apr 2021 03:26: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;1195,Microsoft.Compute/GetOperationStatus30Min;4139 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version update - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions - --replica-count - User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 08 Apr 2021 03:27: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;1195,Microsoft.Compute/GetOperationStatus30Min;4137 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version update - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions - --replica-count - User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 08 Apr 2021 03:28: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;1194,Microsoft.Compute/GetOperationStatus30Min;4135 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version update - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions - --replica-count - User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 08 Apr 2021 03:29: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;1194,Microsoft.Compute/GetOperationStatus30Min;4133 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - sig image-version update - Connection: - - keep-alive - ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions - --replica-count - User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01 - response: - body: - string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}" + {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n + \ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": + \"ReadWrite\",\r\n \"source\": {}\r\n },\r\n \"dataDiskImages\": + [\r\n {\r\n \"lun\": 0,\r\n \"sizeInGB\": 10,\r\n + \ \"hostCaching\": \"None\"\r\n }\r\n ]\r\n },\r\n + \ \"provisioningState\": \"Updating\"\r\n }\r\n}" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8c4c43a-5437-40c1-ade5-5519a7a55543?api-version=2020-09-30 cache-control: - no-cache content-length: - - '134' + - '1474' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:30:53 GMT + - Wed, 14 Apr 2021 09:33:00 GMT expires: - '-1' pragma: @@ -3631,7 +2864,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4139 + - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1197 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' status: code: 200 message: OK @@ -3650,13 +2885,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8c4c43a-5437-40c1-ade5-5519a7a55543?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:33:01.0325905+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e8c4c43a-5437-40c1-ade5-5519a7a55543\"\r\n}" headers: cache-control: - no-cache @@ -3665,7 +2900,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:31:54 GMT + - Wed, 14 Apr 2021 09:34:00 GMT expires: - '-1' pragma: @@ -3682,7 +2917,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4137 + - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4155 status: code: 200 message: OK @@ -3701,13 +2936,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8c4c43a-5437-40c1-ade5-5519a7a55543?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:33:01.0325905+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e8c4c43a-5437-40c1-ade5-5519a7a55543\"\r\n}" headers: cache-control: - no-cache @@ -3716,7 +2951,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:32:54 GMT + - Wed, 14 Apr 2021 09:35:02 GMT expires: - '-1' pragma: @@ -3733,7 +2968,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4135 + - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4153 status: code: 200 message: OK @@ -3752,13 +2987,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8c4c43a-5437-40c1-ade5-5519a7a55543?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:33:01.0325905+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e8c4c43a-5437-40c1-ade5-5519a7a55543\"\r\n}" headers: cache-control: - no-cache @@ -3767,7 +3002,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:33:55 GMT + - Wed, 14 Apr 2021 09:36:02 GMT expires: - '-1' pragma: @@ -3784,7 +3019,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4133 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4151 status: code: 200 message: OK @@ -3803,13 +3038,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8c4c43a-5437-40c1-ade5-5519a7a55543?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:33:01.0325905+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e8c4c43a-5437-40c1-ade5-5519a7a55543\"\r\n}" headers: cache-control: - no-cache @@ -3818,7 +3053,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:34:56 GMT + - Wed, 14 Apr 2021 09:37:02 GMT expires: - '-1' pragma: @@ -3835,7 +3070,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4131 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4149 status: code: 200 message: OK @@ -3854,13 +3089,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8c4c43a-5437-40c1-ade5-5519a7a55543?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:33:01.0325905+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e8c4c43a-5437-40c1-ade5-5519a7a55543\"\r\n}" headers: cache-control: - no-cache @@ -3869,7 +3104,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:35:57 GMT + - Wed, 14 Apr 2021 09:38:04 GMT expires: - '-1' pragma: @@ -3886,7 +3121,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4143 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4147 status: code: 200 message: OK @@ -3905,13 +3140,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8c4c43a-5437-40c1-ade5-5519a7a55543?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:33:01.0325905+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e8c4c43a-5437-40c1-ade5-5519a7a55543\"\r\n}" headers: cache-control: - no-cache @@ -3920,7 +3155,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:36:58 GMT + - Wed, 14 Apr 2021 09:39:04 GMT expires: - '-1' pragma: @@ -3937,7 +3172,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4141 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4145 status: code: 200 message: OK @@ -3956,13 +3191,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8c4c43a-5437-40c1-ade5-5519a7a55543?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:33:01.0325905+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"e8c4c43a-5437-40c1-ade5-5519a7a55543\"\r\n}" headers: cache-control: - no-cache @@ -3971,7 +3206,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:37:59 GMT + - Wed, 14 Apr 2021 09:40:06 GMT expires: - '-1' pragma: @@ -3988,7 +3223,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4139 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4143 status: code: 200 message: OK @@ -4007,14 +3242,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8c4c43a-5437-40c1-ade5-5519a7a55543?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"endTime\": - \"2021-04-08T03:38:08.8783673+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:33:01.0325905+00:00\",\r\n \"endTime\": + \"2021-04-14T09:40:47.4574311+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"e8c4c43a-5437-40c1-ade5-5519a7a55543\"\r\n}" headers: cache-control: - no-cache @@ -4023,7 +3258,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:39:00 GMT + - Wed, 14 Apr 2021 09:41:06 GMT expires: - '-1' pragma: @@ -4040,7 +3275,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4137 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4141 status: code: 200 message: OK @@ -4059,9 +3294,9 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"1.1.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2\",\r\n @@ -4072,7 +3307,7 @@ interactions: \"Standard_LRS\"\r\n },\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 2,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 2,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-08T03:07:25.0550396+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-14T09:24:47.9357926+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n \ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": @@ -4088,7 +3323,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:39:00 GMT + - Wed, 14 Apr 2021 09:41:06 GMT expires: - '-1' pragma: @@ -4105,7 +3340,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1997,Microsoft.Compute/GetGalleryImageVersion30Min;9981 + - Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9982 status: code: 200 message: OK @@ -4124,14 +3359,14 @@ interactions: - -g -n --enable-purge-protection --enable-soft-delete User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:30Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -4140,7 +3375,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:39:01 GMT + - Wed, 14 Apr 2021 09:41:08 GMT expires: - '-1' pragma: @@ -4185,19 +3420,19 @@ interactions: dataserviceversion: - 3.0; date: - - Thu, 08 Apr 2021 03:39:01 GMT + - Wed, 14 Apr 2021 09:41:09 GMT duration: - - '2472912' + - '4386885' expires: - '-1' ocp-aad-diagnostics-server-name: - - h+h5kje/T6z5E1IbrlFN9u7Vv2x6l9jfeDQMPucdrvE= + - sHt0aHppBP2z8G93yj+JCdu8HrOizpiLsuKNO0oK2FA= ocp-aad-session-key: - - 5jAYwrnaGR0L1YMBN4I4scpjGqI1OYVGHUl4_w9-Bxb1iJhNxcvnoD0vrsvzpJ5bODJXCKLxlc0DowmsbSvmZ7H8fmr9_SOe8EI-sngoKxMeyNbTyf7af4AkQW7eiMBp.V1pmy5Os-wKIujZUAj9utw8vegNMs8APa4WvPttp154 + - 7DWBjP_sr0GVHWyrR5sgwfWEcYsaweS80Rm_V0lpjIZ4shCp9CUQq9Vd49CQj238loUZf8RbmkH1Otmi2OX9miK8pU_obsW2YL-wxXqiVxI4wINQeB6Ti8wjxP5Y5skr.hn7KSshAR7BzjIulfi9Roa-Gex33NWI3Z1BKATdEzhU pragma: - no-cache request-id: - - 94ebb67c-84b9-4c37-b012-19b0b0fbd8e7 + - 095a241d-dd0a-4aad-b620-ed76761290fd strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -4239,7 +3474,7 @@ interactions: ParameterSetName: - -g -n --enable-purge-protection --enable-soft-delete User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003?api-version=2019-09-01 response: @@ -4253,7 +3488,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:39:13 GMT + - Wed, 14 Apr 2021 09:41:17 GMT expires: - '-1' pragma: @@ -4271,9 +3506,9 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.286.0 + - 1.1.292.0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -4293,7 +3528,7 @@ interactions: ParameterSetName: - -g -n --enable-purge-protection --enable-soft-delete User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003?api-version=2019-09-01 response: @@ -4307,7 +3542,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:39:43 GMT + - Wed, 14 Apr 2021 09:41:48 GMT expires: - '-1' pragma: @@ -4325,7 +3560,7 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.286.0 + - 1.1.292.0 x-powered-by: - ASP.NET status: @@ -4363,7 +3598,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:39:44 GMT + - Wed, 14 Apr 2021 09:41:50 GMT expires: - '-1' pragma: @@ -4408,7 +3643,7 @@ interactions: uri: https://vault-000003.vault.azure.net/keys/key-000004/create?api-version=7.0 response: body: - string: '{"key":{"kid":"https://vault-000003.vault.azure.net/keys/key-000004/b3100bd4b754420fbd5b0709b6f50e1e","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"vG5XMqvPImv9S-N4Oew0ulhglDEwr3DXP_1wt5MKhl8L6wWI9RuCRPp9ZJtGop_ZdZ7PrpMsSprd3W8_7V6qltz7PQDO4r_r72U-b4dv4Jl_qsD7sdmvD4bJvwsjfC6HdwgURcqqLq2_PSJq6c__Akbr_2b78yeSWz-jP__rtMvYJPPUxL8RpW197pKh2DiPTWywqgQ0bC0niW0xgptV_c1GfUyrSIMhDtkYzi-gX0TH2AyFVnd_QBLGjnwx0YdqZwrZHivzZr44ybfNHRTi5e8Z3gjr6KgwD1iq6xTyauuVHZw6Hx0FgOqZtigvyPa_KGAWOxqfCzvmy6QQjVbF2Q","e":"AQAB"},"attributes":{"enabled":true,"created":1617853187,"updated":1617853187,"recoveryLevel":"Recoverable"}}' + string: '{"key":{"kid":"https://vault-000003.vault.azure.net/keys/key-000004/5183b2423dea4264871a281e5f2e52c8","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"0tdv9IydO-CFc2H3BcmiHUOr8r5abjhIT4kNQqNuP4kxNGcDKIEIdZfgvZqSwRcCAMbwwz1nQdUqGeP0OUUrUzhaTehDYHim-G0TlvMaUyln4hDQUiWJXR53CZhF-Kxf0AeKN0M8TJGTaJ-_jfcjrh144OJjuXVtunBq5E6ZNr9pCYQYmVG6ZIAOYyT_glUtVeLB9NJgsLyRFtTgzKJzjBXlAmworGOOCwhg-XkJsvL700EKGFsp8BdKRW59kf_prFzC366TdozAItLNXCjLWCgCxBSyfDHgAOunDkN5EmQYJiyvxSJE6ZEy3o56DrEQBLJ5oyZovHFFWLdCxeaesQ","e":"AQAB"},"attributes":{"enabled":true,"created":1618393311,"updated":1618393311,"recoveryLevel":"Recoverable"}}' headers: cache-control: - no-cache @@ -4417,7 +3652,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:39:46 GMT + - Wed, 14 Apr 2021 09:41:52 GMT expires: - '-1' pragma: @@ -4452,14 +3687,14 @@ interactions: - -g -n --key-url --source-vault User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:30Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -4468,7 +3703,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:39:47 GMT + - Wed, 14 Apr 2021 09:41:52 GMT expires: - '-1' pragma: @@ -4485,7 +3720,7 @@ interactions: - request: body: '{"location": "eastus2", "identity": {"type": "SystemAssigned"}, "properties": {"activeKey": {"sourceVault": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003"}, - "keyUrl": "https://vault-000003.vault.azure.net/keys/key-000004/b3100bd4b754420fbd5b0709b6f50e1e"}}}' + "keyUrl": "https://vault-000003.vault.azure.net/keys/key-000004/5183b2423dea4264871a281e5f2e52c8"}}}' headers: Accept: - application/json @@ -4502,7 +3737,7 @@ interactions: ParameterSetName: - -g -n --key-url --source-vault User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005?api-version=2020-12-01 response: @@ -4510,11 +3745,11 @@ interactions: string: "{\r\n \"location\": \"eastus2\",\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"activeKey\": {\r\n \ \"sourceVault\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003\"\r\n - \ },\r\n \"keyUrl\": \"https://vault-000003.vault.azure.net/keys/key-000004/b3100bd4b754420fbd5b0709b6f50e1e\"\r\n + \ },\r\n \"keyUrl\": \"https://vault-000003.vault.azure.net/keys/key-000004/5183b2423dea4264871a281e5f2e52c8\"\r\n \ },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/7f96b1ab-803d-4f15-90c5-45488f2d39da?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/5c19e3ef-a44d-400a-9ee4-45535e5ddfb6?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -4522,11 +3757,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:39:54 GMT + - Wed, 14 Apr 2021 09:42:02 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/7f96b1ab-803d-4f15-90c5-45488f2d39da?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/5c19e3ef-a44d-400a-9ee4-45535e5ddfb6?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -4539,7 +3774,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/HighCostDiskEncryptionSet3Min;99,Microsoft.Compute/HighCostDiskEncryptionSet30Min;299 x-ms-ratelimit-remaining-subscription-writes: - - '1188' + - '1198' status: code: 202 message: Accepted @@ -4557,15 +3792,15 @@ interactions: ParameterSetName: - -g -n --key-url --source-vault User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/7f96b1ab-803d-4f15-90c5-45488f2d39da?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/5c19e3ef-a44d-400a-9ee4-45535e5ddfb6?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:39:54.2064676+00:00\",\r\n \"endTime\": - \"2021-04-08T03:39:54.3002121+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\":\"1f2d9329-31d4-4703-923f-4cdb4889d51f\",\"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/b3100bd4b754420fbd5b0709b6f50e1e\"},\"encryptionType\":\"EncryptionAtRestWithCustomerKey\",\"provisioningState\":\"Succeeded\"}}\r\n - \ },\r\n \"name\": \"7f96b1ab-803d-4f15-90c5-45488f2d39da\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:42:03.2318429+00:00\",\r\n \"endTime\": + \"2021-04-14T09:42:03.3255468+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"properties\": {\r\n \"output\": {\"name\":\"des1-000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\",\"type\":\"Microsoft.Compute/diskEncryptionSets\",\"location\":\"eastus2\",\"identity\":{\"type\":\"SystemAssigned\",\"principalId\":\"1d8fb725-3405-4a8a-92de-9336c73524fa\",\"tenantId\":\"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"},\"properties\":{\"activeKey\":{\"sourceVault\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003\"},\"keyUrl\":\"https://vault-000003.vault.azure.net/keys/key-000004/5183b2423dea4264871a281e5f2e52c8\"},\"encryptionType\":\"EncryptionAtRestWithCustomerKey\",\"provisioningState\":\"Succeeded\"}}\r\n + \ },\r\n \"name\": \"5c19e3ef-a44d-400a-9ee4-45535e5ddfb6\"\r\n}" headers: cache-control: - no-cache @@ -4574,7 +3809,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:40:24 GMT + - Wed, 14 Apr 2021 09:42:32 GMT expires: - '-1' pragma: @@ -4591,7 +3826,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49998,Microsoft.Compute/GetOperation30Min;399980 + - Microsoft.Compute/GetOperation3Min;49998,Microsoft.Compute/GetOperation30Min;399990 status: code: 200 message: OK @@ -4609,7 +3844,7 @@ interactions: ParameterSetName: - -g -n --key-url --source-vault User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005?api-version=2020-12-01 response: @@ -4617,10 +3852,10 @@ interactions: string: "{\r\n \"name\": \"des1-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\",\r\n \ \"type\": \"Microsoft.Compute/diskEncryptionSets\",\r\n \"location\": \"eastus2\",\r\n \ \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": - \"1f2d9329-31d4-4703-923f-4cdb4889d51f\",\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n + \"1d8fb725-3405-4a8a-92de-9336c73524fa\",\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n \ },\r\n \"properties\": {\r\n \"activeKey\": {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003\"\r\n - \ },\r\n \"keyUrl\": \"https://vault-000003.vault.azure.net/keys/key-000004/b3100bd4b754420fbd5b0709b6f50e1e\"\r\n + \ },\r\n \"keyUrl\": \"https://vault-000003.vault.azure.net/keys/key-000004/5183b2423dea4264871a281e5f2e52c8\"\r\n \ },\r\n \"encryptionType\": \"EncryptionAtRestWithCustomerKey\",\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: @@ -4631,7 +3866,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:40:24 GMT + - Wed, 14 Apr 2021 09:42:33 GMT expires: - '-1' pragma: @@ -4648,7 +3883,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14997,Microsoft.Compute/LowCostGet30Min;119980 + - Microsoft.Compute/LowCostGet3Min;14997,Microsoft.Compute/LowCostGet30Min;119994 status: code: 200 message: OK @@ -4666,7 +3901,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005?api-version=2020-12-01 response: @@ -4674,10 +3909,10 @@ interactions: string: "{\r\n \"name\": \"des1-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\",\r\n \ \"type\": \"Microsoft.Compute/diskEncryptionSets\",\r\n \"location\": \"eastus2\",\r\n \ \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": - \"1f2d9329-31d4-4703-923f-4cdb4889d51f\",\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n + \"1d8fb725-3405-4a8a-92de-9336c73524fa\",\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n \ },\r\n \"properties\": {\r\n \"activeKey\": {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003\"\r\n - \ },\r\n \"keyUrl\": \"https://vault-000003.vault.azure.net/keys/key-000004/b3100bd4b754420fbd5b0709b6f50e1e\"\r\n + \ },\r\n \"keyUrl\": \"https://vault-000003.vault.azure.net/keys/key-000004/5183b2423dea4264871a281e5f2e52c8\"\r\n \ },\r\n \"encryptionType\": \"EncryptionAtRestWithCustomerKey\",\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: @@ -4688,7 +3923,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:40:25 GMT + - Wed, 14 Apr 2021 09:42:34 GMT expires: - '-1' pragma: @@ -4705,7 +3940,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14996,Microsoft.Compute/LowCostGet30Min;119979 + - Microsoft.Compute/LowCostGet3Min;14996,Microsoft.Compute/LowCostGet30Min;119993 status: code: 200 message: OK @@ -4723,21 +3958,21 @@ interactions: ParameterSetName: - -n --object-id --key-permissions User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azps-test-group/providers/Microsoft.KeyVault/vaults/azps-test-kv2","name":"azps-test-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azps-test-group/providers/Microsoft.KeyVault/vaults/azps-test-kv4","name":"azps-test-kv4","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003","name":"vault-000003","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault1569","name":"vault1569","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.KeyVault/vaults/cli-sni-kv","name":"cli-sni-kv","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.KeyVault/vaults/ase-testdevice-020dc7b13","name":"ase-testdevice-020dc7b13","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{"dbe-resource":"testdevice"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.KeyVault/vaults/ase-ysgatewayd-e2960da93","name":"ase-ysgatewayd-e2960da93","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{"dbe-resource":"ysgatewaydevice"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.KeyVault/vaults/ysvault","name":"ysvault","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azps-test-group/providers/Microsoft.KeyVault/vaults/azps-test-kv2","name":"azps-test-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azps-test-group/providers/Microsoft.KeyVault/vaults/azps-test-kv4","name":"azps-test-kv4","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_certggzs7nxo5hjulhbph77kpvp354aj2g76gnb4o6vaxi6syrqnv6ggq/providers/Microsoft.KeyVault/vaults/cli-test-kv-ct-jf3usxgrl","name":"cli-test-kv-ct-jf3usxgrl","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_pecls2h5rxvfaqqkvye55nhoori3r3dmwaqfb7lzom54axazkkm4is7ke/providers/Microsoft.KeyVault/vaults/cli-test-kv-pec-x4mreb6v","name":"cli-test-kv-pec-x4mreb6v","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sdmncdngmrvbbjhfs6a2sosy2kv22fuft3gi3yy6yqcgh53atiqp7iu6m/providers/Microsoft.KeyVault/vaults/cli-test-kv-sd-bii62ul25","name":"cli-test-kv-sd-bii62ul25","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secret_soft_deletemq3pggvjub2evjp5lm4u3p6pogoqzenw3teewhk/providers/Microsoft.KeyVault/vaults/cli-test-kv-se-sd-oftopu","name":"cli-test-kv-se-sd-oftopu","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretf6hut52qzfmqwtgebrz7mtpsdiu7jd2kq2enndadzgrvtk5prq6/providers/Microsoft.KeyVault/vaults/cli-test-kv-se-ewh7pirby","name":"cli-test-kv-se-ewh7pirby","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003","name":"vault-000003","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault1569","name":"vault1569","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/houk-test/providers/Microsoft.KeyVault/vaults/houk-kv2","name":"houk-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.KeyVault/vaults/cli-sni-kv","name":"cli-sni-kv","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ljin-test/providers/Microsoft.KeyVault/vaults/kv-ljin-sni","name":"kv-ljin-sni","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.KeyVault/vaults/ase-testdevice-020dc7b13","name":"ase-testdevice-020dc7b13","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{"dbe-resource":"testdevice"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.KeyVault/vaults/ase-ysgatewayd-e2960da93","name":"ase-ysgatewayd-e2960da93","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{"dbe-resource":"ysgatewaydevice"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.KeyVault/vaults/ysvault","name":"ysvault","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}}]}' headers: cache-control: - no-cache content-length: - - '1990' + - '3986' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:40:25 GMT + - Wed, 14 Apr 2021 09:42:34 GMT expires: - '-1' pragma: @@ -4765,7 +4000,7 @@ interactions: ParameterSetName: - -n --object-id --key-permissions User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003?api-version=2019-09-01 response: @@ -4779,7 +4014,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:40:28 GMT + - Wed, 14 Apr 2021 09:42:36 GMT expires: - '-1' pragma: @@ -4797,7 +4032,7 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.286.0 + - 1.1.292.0 x-powered-by: - ASP.NET status: @@ -4813,8 +4048,8 @@ interactions: "import", "update", "managecontacts", "getissuers", "listissuers", "setissuers", "deleteissuers", "manageissuers", "recover"], "storage": ["get", "list", "delete", "set", "update", "regeneratekey", "setsas", "listsas", "getsas", "deletesas"]}}, - {"tenantId": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", "objectId": "1f2d9329-31d4-4703-923f-4cdb4889d51f", - "permissions": {"keys": ["unwrapKey", "get", "wrapKey"]}}], "vaultUri": "https://vault-000003.vault.azure.net/", + {"tenantId": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", "objectId": "1d8fb725-3405-4a8a-92de-9336c73524fa", + "permissions": {"keys": ["wrapKey", "get", "unwrapKey"]}}], "vaultUri": "https://vault-000003.vault.azure.net/", "enabledForDeployment": false, "enableSoftDelete": true, "softDeleteRetentionInDays": 90, "enablePurgeProtection": true}}' headers: @@ -4833,12 +4068,12 @@ interactions: ParameterSetName: - -n --object-id --key-permissions User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003?api-version=2019-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003","name":"vault-000003","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"181c08fa-7ac8-48a6-a869-342ab74566a4","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}},{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"1f2d9329-31d4-4703-923f-4cdb4889d51f","permissions":{"keys":["unwrapKey","get","wrapKey"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://vault-000003.vault.azure.net/","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003","name":"vault-000003","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"181c08fa-7ac8-48a6-a869-342ab74566a4","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}},{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"1d8fb725-3405-4a8a-92de-9336c73524fa","permissions":{"keys":["wrapKey","get","unwrapKey"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://vault-000003.vault.azure.net/","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -4847,7 +4082,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:40:30 GMT + - Wed, 14 Apr 2021 09:42:37 GMT expires: - '-1' pragma: @@ -4865,9 +4100,9 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.286.0 + - 1.1.292.0 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' x-powered-by: - ASP.NET status: @@ -4888,7 +4123,7 @@ interactions: - --assignee --role --scope User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET @@ -4905,7 +4140,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:40:45 GMT + - Wed, 14 Apr 2021 09:42:53 GMT expires: - '-1' pragma: @@ -4938,11 +4173,11 @@ interactions: - --assignee --role --scope User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%271f2d9329-31d4-4703-923f-4cdb4889d51f%27%29&api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%271d8fb725-3405-4a8a-92de-9336c73524fa%27%29&api-version=1.6 response: body: string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[]}' @@ -4958,19 +4193,19 @@ interactions: dataserviceversion: - 3.0; date: - - Thu, 08 Apr 2021 03:40:46 GMT + - Wed, 14 Apr 2021 09:42:54 GMT duration: - - '2305898' + - '3562551' expires: - '-1' ocp-aad-diagnostics-server-name: - - vCf1yv8EBbvwkoImhY8PEFOKq+b0ZYevaPwrzwcb+GU= + - senIUAIzmIpAAHXt/NjwiUH8YenTZdR21Uaj8u7XsWM= ocp-aad-session-key: - - ywBzjOTtV45JvUXbW8CtOMxNwrPBr6ooHj_kb8CpayzgX0BNHvBFGt2kQYMhEcdxdIIIRW3L__pxPsWL3nib5GU0lLLoc8_bZRk28GyYifVTv_LAgYeeu6NPJsrkmYr2.Cr0N3X72KfkyXNsbbhRtJUiaLjyjtuQ2esCwf-B7eZs + - lvrtr0AKjNp9IOujtazb6K-FH5fQIe9V35VUGZHOfBM_mSEFrEOU5ANJJrcTZm4ZD4EJpHZdFR7SK3knxt5OOoOFJki1ankwdZixsn5OS8QWj5hwO26qAp_iqRNGh4Zy.EgjDHfZ9lfa0rVV7vvMuuh29hInYQEBKs1yg1myAQVo pragma: - no-cache request-id: - - 8551f094-e3d9-4fb9-9bbd-5838675b5a70 + - f54e8a27-cf3a-4cd0-a325-cb8df1687e60 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -4985,7 +4220,7 @@ interactions: code: 200 message: OK - request: - body: '{"objectIds": ["1f2d9329-31d4-4703-923f-4cdb4889d51f"], "includeDirectoryObjectReferences": + body: '{"objectIds": ["1d8fb725-3405-4a8a-92de-9336c73524fa"], "includeDirectoryObjectReferences": true}' headers: Accept: @@ -5004,14 +4239,14 @@ interactions: - --assignee --role --scope User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: POST uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/getObjectsByObjectIds?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"1f2d9329-31d4-4703-923f-4cdb4889d51f","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":"522d140f-cdfa-4a3b-ba7e-5ff3674f78d6","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"des1-000005","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"41E4074D6B1DB72D3F7847323917319C1E8DEA70","endDate":"2021-07-07T03:34:00Z","keyId":"843028f2-ab1b-4cbb-a0ff-4b0a88dd8e11","startDate":"2021-04-08T03:34: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":["522d140f-cdfa-4a3b-ba7e-5ff3674f78d6","https://identity.azure.net/Ig9t7ghj19aBK2CfcfU+wYA7weL5Lntuh3g8IA0+bIc="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null}]}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"1d8fb725-3405-4a8a-92de-9336c73524fa","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005"],"appDisplayName":null,"appId":"432e6688-28b8-4c3e-874f-5c30b79baa64","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"des1-000005","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"EBF82DD6BD083C732FF7F4986A00EE1942C02A09","endDate":"2021-07-13T09:36:00Z","keyId":"b9f148ad-d947-42ca-9cba-2b32b11cd5bc","startDate":"2021-04-14T09:36:00Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["432e6688-28b8-4c3e-874f-5c30b79baa64","https://identity.azure.net/3KOg/oqEthAiZVUqALL3kZzHSjHNS/P1dYh0W1loc1I="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' @@ -5024,19 +4259,19 @@ interactions: dataserviceversion: - 3.0; date: - - Thu, 08 Apr 2021 03:40:47 GMT + - Wed, 14 Apr 2021 09:42:55 GMT duration: - - '2364920' + - '3668425' expires: - '-1' ocp-aad-diagnostics-server-name: - - msWoWTodNdcHx3TaIqjEN4YkdY2FmEXm5FzV0ZQBgpA= + - bwiMwB116ZrEIuwEbfQgIegc1Rx2/DCI0B8wZCFUMrQ= ocp-aad-session-key: - - _rXh9axcALcQkyNR4_XK-1xaSljhzKALzKGR-ik0EyvQd5mEj4GqUCAaDhI2-mgEPYYO56p8cPxaeRdnD0gFwEuKO-DSCHjc-YdsQnfgnCjpEsAu3zbuTs9wT_ThF611.s6HmlIoB7cFYEP-W9trcDeHoxGkW2l6osjpAyhaJKQE + - IjJYZ9M8AgsYPFPkHiBQbqKe7NPjHxrA-Cu7mgDVQCuN9TMAW3zhjuHGXTajq1HsRegK01GaR-mPHU9b_ODDUCERU05gXpXZL0JJYMxXGBrkqWPGo_aqrw_acsiPL5Dx.0OnOPEBbWA3b7AHL1cMrYvSDZh_LU9kJNjtnOWQpjVc pragma: - no-cache request-id: - - d89b066f-dc21-4355-938b-373eb2263589 + - 3b934ca2-349b-4889-a6d3-1a36c5b7e0e0 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -5052,7 +4287,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7", - "principalId": "1f2d9329-31d4-4703-923f-4cdb4889d51f"}}' + "principalId": "1d8fb725-3405-4a8a-92de-9336c73524fa"}}' headers: Accept: - application/json @@ -5072,14 +4307,14 @@ interactions: - --assignee --role --scope User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"1f2d9329-31d4-4703-923f-4cdb4889d51f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003","condition":null,"conditionVersion":null,"createdOn":"2021-04-08T03:40:47.9297739Z","updatedOn":"2021-04-08T03:40:48.9933859Z","createdBy":null,"updatedBy":"181c08fa-7ac8-48a6-a869-342ab74566a4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"1d8fb725-3405-4a8a-92de-9336c73524fa","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003","condition":null,"conditionVersion":null,"createdOn":"2021-04-14T09:42:55.9198198Z","updatedOn":"2021-04-14T09:42:57.6936327Z","createdBy":null,"updatedBy":"181c08fa-7ac8-48a6-a869-342ab74566a4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' headers: cache-control: - no-cache @@ -5088,7 +4323,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:40:52 GMT + - Wed, 14 Apr 2021 09:43:02 GMT expires: - '-1' pragma: @@ -5100,7 +4335,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1197' status: code: 201 message: Created @@ -5120,14 +4355,14 @@ interactions: --target-region-encryption --managed-image --replica-count User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:30Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -5136,7 +4371,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:41:08 GMT + - Wed, 14 Apr 2021 09:43:17 GMT expires: - '-1' pragma: @@ -5173,9 +4408,9 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"1.1.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3\",\r\n @@ -5189,13 +4424,13 @@ interactions: \ \"lun\": 0,\r\n \"diskEncryptionSetId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\"\r\n \ }\r\n ]\r\n }\r\n }\r\n ],\r\n \ \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": - \"2021-04-08T03:41:13.8858574+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n + \"2021-04-14T09:43:23.9271399+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n \ },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n \ }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9d46b7d4-5a99-4fb3-9cef-fcfbe2d996a1?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/44fb81d0-2c51-4f24-bc02-77c9f77e33dd?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -5203,7 +4438,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:41:14 GMT + - Wed, 14 Apr 2021 09:43:24 GMT expires: - '-1' pragma: @@ -5216,7 +4451,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1199 + - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1196 x-ms-ratelimit-remaining-subscription-writes: - '1197' status: @@ -5237,13 +4472,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9d46b7d4-5a99-4fb3-9cef-fcfbe2d996a1?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/44fb81d0-2c51-4f24-bc02-77c9f77e33dd?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:41:13.8702024+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"9d46b7d4-5a99-4fb3-9cef-fcfbe2d996a1\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:43:23.9115137+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"44fb81d0-2c51-4f24-bc02-77c9f77e33dd\"\r\n}" headers: cache-control: - no-cache @@ -5252,7 +4487,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:42:15 GMT + - Wed, 14 Apr 2021 09:44:26 GMT expires: - '-1' pragma: @@ -5269,7 +4504,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4151 + - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4138 status: code: 200 message: OK @@ -5288,13 +4523,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9d46b7d4-5a99-4fb3-9cef-fcfbe2d996a1?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/44fb81d0-2c51-4f24-bc02-77c9f77e33dd?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:41:13.8702024+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"9d46b7d4-5a99-4fb3-9cef-fcfbe2d996a1\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:43:23.9115137+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"44fb81d0-2c51-4f24-bc02-77c9f77e33dd\"\r\n}" headers: cache-control: - no-cache @@ -5303,7 +4538,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:43:16 GMT + - Wed, 14 Apr 2021 09:45:27 GMT expires: - '-1' pragma: @@ -5320,7 +4555,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4150 + - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4140 status: code: 200 message: OK @@ -5339,13 +4574,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9d46b7d4-5a99-4fb3-9cef-fcfbe2d996a1?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/44fb81d0-2c51-4f24-bc02-77c9f77e33dd?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:41:13.8702024+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"9d46b7d4-5a99-4fb3-9cef-fcfbe2d996a1\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:43:23.9115137+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"44fb81d0-2c51-4f24-bc02-77c9f77e33dd\"\r\n}" headers: cache-control: - no-cache @@ -5354,7 +4589,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:44:17 GMT + - Wed, 14 Apr 2021 09:46:28 GMT expires: - '-1' pragma: @@ -5371,7 +4606,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4148 + - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4138 status: code: 200 message: OK @@ -5390,13 +4625,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9d46b7d4-5a99-4fb3-9cef-fcfbe2d996a1?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/44fb81d0-2c51-4f24-bc02-77c9f77e33dd?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:41:13.8702024+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"9d46b7d4-5a99-4fb3-9cef-fcfbe2d996a1\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:43:23.9115137+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"44fb81d0-2c51-4f24-bc02-77c9f77e33dd\"\r\n}" headers: cache-control: - no-cache @@ -5405,7 +4640,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:45:18 GMT + - Wed, 14 Apr 2021 09:47:29 GMT expires: - '-1' pragma: @@ -5422,7 +4657,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4156 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4137 status: code: 200 message: OK @@ -5441,13 +4676,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9d46b7d4-5a99-4fb3-9cef-fcfbe2d996a1?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/44fb81d0-2c51-4f24-bc02-77c9f77e33dd?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:41:13.8702024+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"9d46b7d4-5a99-4fb3-9cef-fcfbe2d996a1\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:43:23.9115137+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"44fb81d0-2c51-4f24-bc02-77c9f77e33dd\"\r\n}" headers: cache-control: - no-cache @@ -5456,7 +4691,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:46:18 GMT + - Wed, 14 Apr 2021 09:48:30 GMT expires: - '-1' pragma: @@ -5473,7 +4708,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4154 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4135 status: code: 200 message: OK @@ -5492,13 +4727,13 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9d46b7d4-5a99-4fb3-9cef-fcfbe2d996a1?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/44fb81d0-2c51-4f24-bc02-77c9f77e33dd?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:41:13.8702024+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"9d46b7d4-5a99-4fb3-9cef-fcfbe2d996a1\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:43:23.9115137+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"44fb81d0-2c51-4f24-bc02-77c9f77e33dd\"\r\n}" headers: cache-control: - no-cache @@ -5507,7 +4742,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:47:20 GMT + - Wed, 14 Apr 2021 09:49:30 GMT expires: - '-1' pragma: @@ -5524,7 +4759,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4152 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4133 status: code: 200 message: OK @@ -5543,23 +4778,176 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9d46b7d4-5a99-4fb3-9cef-fcfbe2d996a1?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/44fb81d0-2c51-4f24-bc02-77c9f77e33dd?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:41:13.8702024+00:00\",\r\n \"endTime\": - \"2021-04-08T03:48:00.042444+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"9d46b7d4-5a99-4fb3-9cef-fcfbe2d996a1\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:43:23.9115137+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"44fb81d0-2c51-4f24-bc02-77c9f77e33dd\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 14 Apr 2021 09:50: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/GetOperationStatus3Min;1199,Microsoft.Compute/GetOperationStatus30Min;4199 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions + --target-region-encryption --managed-image --replica-count + User-Agent: + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/44fb81d0-2c51-4f24-bc02-77c9f77e33dd?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-04-14T09:43:23.9115137+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"44fb81d0-2c51-4f24-bc02-77c9f77e33dd\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 14 Apr 2021 09:51: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/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4197 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions + --target-region-encryption --managed-image --replica-count + User-Agent: + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/44fb81d0-2c51-4f24-bc02-77c9f77e33dd?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-04-14T09:43:23.9115137+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"44fb81d0-2c51-4f24-bc02-77c9f77e33dd\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 14 Apr 2021 09:52:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4195 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions + --target-region-encryption --managed-image --replica-count + User-Agent: + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/44fb81d0-2c51-4f24-bc02-77c9f77e33dd?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-04-14T09:43:23.9115137+00:00\",\r\n \"endTime\": + \"2021-04-14T09:53:24.5174416+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"44fb81d0-2c51-4f24-bc02-77c9f77e33dd\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '184' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:48:20 GMT + - Wed, 14 Apr 2021 09:53:34 GMT expires: - '-1' pragma: @@ -5576,7 +4964,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4150 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4193 status: code: 200 message: OK @@ -5595,9 +4983,9 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --target-region-encryption --managed-image --replica-count User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"1.1.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3\",\r\n @@ -5611,7 +4999,7 @@ interactions: \ \"lun\": 0,\r\n \"diskEncryptionSetId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\"\r\n \ }\r\n ]\r\n }\r\n }\r\n ],\r\n \ \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": - \"2021-04-08T03:41:13.8858574+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n + \"2021-04-14T09:43:23.9271399+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n \ },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n \ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": @@ -5627,7 +5015,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:48:21 GMT + - Wed, 14 Apr 2021 09:53:34 GMT expires: - '-1' pragma: @@ -5644,7 +5032,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9990 + - Microsoft.Compute/GetGalleryImageVersion3Min;1996,Microsoft.Compute/GetGalleryImageVersion30Min;9996 status: code: 200 message: OK @@ -5663,14 +5051,14 @@ interactions: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:30Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -5679,7 +5067,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:48:22 GMT + - Wed, 14 Apr 2021 09:53:34 GMT expires: - '-1' pragma: @@ -5707,7 +5095,7 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -5727,7 +5115,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:48:22 GMT + - Wed, 14 Apr 2021 09:53:36 GMT expires: - '-1' pragma: @@ -5744,7 +5132,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;599,Microsoft.Compute/GetGalleryImage30Min;2997 + - Microsoft.Compute/GetGalleryImage3Min;599,Microsoft.Compute/GetGalleryImage30Min;2999 status: code: 200 message: OK @@ -5762,15 +5150,15 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions?api-version=2020-09-30 response: body: string: '{"value":[{"name":"1.1.2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2","type":"Microsoft.Compute/galleries/images/versions","location":"eastus2","tags":{},"properties":{"publishingProfile":{"targetRegions":[{"name":"West US 2","regionalReplicaCount":1,"storageAccountType":"Standard_LRS"},{"name":"East - US 2","regionalReplicaCount":2,"storageAccountType":"Standard_LRS"}],"replicaCount":2,"excludeFromLatest":false,"publishedDate":"2021-04-08T03:07:25.0550396+00:00","storageAccountType":"Standard_LRS"},"storageProfile":{"source":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1"},"osDiskImage":{"sizeInGB":30,"hostCaching":"ReadWrite","source":{}},"dataDiskImages":[{"lun":0,"sizeInGB":10,"hostCaching":"None"}]},"provisioningState":"Succeeded"}},{"name":"1.1.3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3","type":"Microsoft.Compute/galleries/images/versions","location":"eastus2","tags":{},"properties":{"publishingProfile":{"targetRegions":[{"name":"East - US 2","regionalReplicaCount":1,"storageAccountType":"Standard_LRS","encryption":{"osDiskImage":{"diskEncryptionSetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005"},"dataDiskImages":[{"lun":0,"diskEncryptionSetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005"}]}}],"replicaCount":1,"excludeFromLatest":false,"publishedDate":"2021-04-08T03:41:13.8858574+00:00","storageAccountType":"Standard_LRS"},"storageProfile":{"source":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1"},"osDiskImage":{"sizeInGB":30,"hostCaching":"ReadWrite","source":{}},"dataDiskImages":[{"lun":0,"sizeInGB":10,"hostCaching":"None"}]},"provisioningState":"Succeeded"}}]}' + US 2","regionalReplicaCount":2,"storageAccountType":"Standard_LRS"}],"replicaCount":2,"excludeFromLatest":false,"publishedDate":"2021-04-14T09:24:47.9357926+00:00","storageAccountType":"Standard_LRS"},"storageProfile":{"source":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1"},"osDiskImage":{"sizeInGB":30,"hostCaching":"ReadWrite","source":{}},"dataDiskImages":[{"lun":0,"sizeInGB":10,"hostCaching":"None"}]},"provisioningState":"Succeeded"}},{"name":"1.1.3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3","type":"Microsoft.Compute/galleries/images/versions","location":"eastus2","tags":{},"properties":{"publishingProfile":{"targetRegions":[{"name":"East + US 2","regionalReplicaCount":1,"storageAccountType":"Standard_LRS","encryption":{"osDiskImage":{"diskEncryptionSetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005"},"dataDiskImages":[{"lun":0,"diskEncryptionSetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005"}]}}],"replicaCount":1,"excludeFromLatest":false,"publishedDate":"2021-04-14T09:43:23.9271399+00:00","storageAccountType":"Standard_LRS"},"storageProfile":{"source":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1"},"osDiskImage":{"sizeInGB":30,"hostCaching":"ReadWrite","source":{}},"dataDiskImages":[{"lun":0,"sizeInGB":10,"hostCaching":"None"}]},"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache @@ -5779,7 +5167,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:48:23 GMT + - Wed, 14 Apr 2021 09:53:37 GMT expires: - '-1' pragma: @@ -5791,42 +5179,42 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 519970d9-e5d3-4f7f-8a99-b2aaaf7692c4 - - a502b0e0-4a2f-445b-800d-ee1a7dd567dc - - 19a93274-0cc0-412b-93c6-c6af18686812 - - b9f8195d-8361-4e4d-b213-01ab147775f6 - - 0b53a650-2d9b-42ef-bdc2-74ab6cdafa18 - - f5398d4b-9749-4ee0-a981-fce1f20ae4d1 - - a6ba5438-d155-46ba-af4f-b1012ec356b8 - - e7913eaf-df51-4afa-975c-46a8de9a92be - - 5709efe7-53a0-4605-839f-b6c082ac6bfb - - ac57e16f-cce1-4cb6-9855-0e33c124e996 - - 9b4d7e46-b2d5-4c35-a08d-0c6f0066588d - - 08f79910-4984-42e1-aa92-59efb7381950 - - f2fda2e6-8864-4aab-bbff-5fdb4272dc0e - - da901030-ca23-43c6-9231-8cec83239eb0 - - 720d3604-29af-40ee-aecc-7bdf9a3608a9 - - 539055fc-7b22-48b4-91ed-a266867cf324 - - 2d8231ff-b2d9-452d-9796-3ca0ee4ccc07 - - fd11fe61-e3d6-4329-91be-f681008000c2 - - 3a8c56bc-8214-4645-bd78-cceab4fd806b - - d091395d-26ea-41cb-84ee-dafd2e128d5d - - ea374293-083d-495b-9ca6-00a5878c7c89 - - 97e8510d-4f61-4376-b7c8-2c936c044ded - - 8e95f551-2c04-43f7-a52a-f332ef984087 - - 700308f6-794b-4037-85f6-185ca9bc6fda - - 3107b5bd-acb0-4644-a2ab-d784d8f76655 - - 9ac7b5f6-8a76-46a6-a632-b8b1b2ca4495 - - 813f2811-5704-4209-82e1-1fd234ef94e0 - - 71d52d10-4582-4292-ba2b-c7eac9066203 - - a0b3e53d-f2c0-49a9-84e1-ab8e1128791b - - 930e171f-346d-4176-abf9-70c19254b940 - - 6197c690-62de-4a09-a11e-0293f051136b - - 7f6bdb34-738b-4aec-aa4c-d8aa1b943649 - - b1e7c166-90da-4933-a985-a468aca89cb7 - - 92c08a31-6a1e-470c-a68b-d7b1180b225c - - 375c473c-4fc2-4210-8cff-30950ad386c6 - - 0d54f349-1848-49f0-95c4-52ef3896df1f + - 32f502ea-3b4e-45d9-b566-da82ce17ac82 + - 1415cf53-45ba-4055-9f68-36b9c7a95529 + - 5d7fda2b-1c0f-4670-bccb-5c68964d1e82 + - 4d9d1a39-9930-401e-aa94-93042ff51566 + - e6c6e27c-5f5c-4e84-ad62-05d3660a5766 + - 4d946d61-9b9e-4c3f-ac70-494b7a9235c2 + - 48544d36-8dcb-414c-9ec0-a053dee5611d + - b60c2c19-e51e-4b58-b07b-5bda59e62ce3 + - f3de4243-f5d1-43d0-938e-7826fd438b07 + - 7d5a727a-52ae-4c2a-8559-eae8387f294f + - ebd5cee4-cfbd-447f-bb51-79991bffdc79 + - 99abb0d6-6767-4f79-8310-4b0019a7049a + - 79c13a4e-c854-4aca-b26b-1e71ee0d3517 + - 534fb42a-e9bf-4dfd-b572-a9fb57f6b323 + - 583d2ab1-ba49-4725-a30a-adc52dcb7214 + - 068e1d88-c197-4c14-98a2-ae9d081223cd + - 77004088-186a-49a1-ab6b-b9e5cb5b8a8a + - b534f879-38a2-43c0-8691-f0b5e60c3713 + - d0e8f8b4-b54e-4846-b9d2-5d6f56bb19fa + - e1d8d70d-52cf-4b4f-b533-2ca69d875cb9 + - 372f2be9-cd3e-4fcc-b5d2-3ed8d7bc231f + - fcf253f3-0432-4da4-85f7-a7b0284e46c7 + - cde09a2b-aeee-4ad0-ad12-816f62c34f90 + - 50b65f22-81fe-471c-887a-f35c7a1e8517 + - a9650c52-113f-4c3d-963b-a21eeca8bed0 + - 3c564a42-6157-4ed8-b89b-ef47ab24db13 + - 9d65e386-0d6c-4f4b-8b23-dbda898687e5 + - 81b842e2-42e3-44a0-95d1-4fbd963b2e5c + - a55bd92c-f216-438b-83e6-ef18ce88b061 + - aac8afcf-5e00-41ae-b8a0-5a71a093dd8f + - ea5c222b-6d62-41c9-9894-83b3300af8d4 + - 559143a7-4e52-4792-b3ec-6992714bf034 + - d8394bc9-63bb-4bef-a345-63a173f41e4e + - bd186ba2-cc18-4443-92e4-1884c99ba0c2 + - f1666ddd-7b45-4412-bf60-0e506bd97360 + - cf864102-9015-4bc3-971f-3601d00ec66d status: code: 200 message: OK @@ -5844,21 +5232,21 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vm1VNET\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\r\n - \ \"etag\": \"W/\\\"a32105bd-6b12-4c2f-8506-9473ea94291d\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"a20d6c74-5763-4633-b8b5-8e9a0bdc5d03\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"d7c28e3d-8700-45e4-b761-c0f7c4063080\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"8d47a616-873d-4931-baef-9d722cf472a2\",\r\n \ \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n \ ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"vm1Subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\r\n - \ \"etag\": \"W/\\\"a32105bd-6b12-4c2f-8506-9473ea94291d\\\"\",\r\n + \ \"etag\": \"W/\\\"a20d6c74-5763-4633-b8b5-8e9a0bdc5d03\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n @@ -5874,7 +5262,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:48:24 GMT + - Wed, 14 Apr 2021 09:53:38 GMT expires: - '-1' pragma: @@ -5891,7 +5279,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9a7bd736-e317-4acb-9443-2c36f443602f + - 8f762ab0-6061-4ef5-b5b9-fdba3273dce8 status: code: 200 message: OK @@ -5940,17 +5328,17 @@ interactions: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_SnJdsVcjUc18F9XflFS220UWOlZT1OUu","name":"vm_deploy_SnJdsVcjUc18F9XflFS220UWOlZT1OUu","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17498370696575021293","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-08T03:48:29.9678023Z","duration":"PT2.8690824S","correlationId":"179c3743-27d7-4455-8852-0158240594bb","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmFromImageNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmFromImagePublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vmFromImage"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_IYJFao13QRM7qJY4vxvgYZjkPDReQoxP","name":"vm_deploy_IYJFao13QRM7qJY4vxvgYZjkPDReQoxP","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15019600982873647752","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-14T09:53:43.6527588Z","duration":"PT2.7346265S","correlationId":"3f53256c-8971-4059-9f29-02d0675acb72","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmFromImageNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmFromImagePublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vmFromImage"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_SnJdsVcjUc18F9XflFS220UWOlZT1OUu/operationStatuses/08585837531783789120?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_IYJFao13QRM7qJY4vxvgYZjkPDReQoxP/operationStatuses/08585832128645594991?api-version=2020-10-01 cache-control: - no-cache content-length: @@ -5958,7 +5346,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:48:31 GMT + - Wed, 14 Apr 2021 09:53:44 GMT expires: - '-1' pragma: @@ -5968,7 +5356,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1197' status: code: 201 message: Created @@ -5987,95 +5375,9 @@ interactions: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585837531783789120?api-version=2020-10-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 08 Apr 2021 03:49: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: - - -g -n --image --admin-username --generate-ssh-keys --nsg-rule - User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585837531783789120?api-version=2020-10-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 08 Apr 2021 03:49: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: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --admin-username --generate-ssh-keys --nsg-rule - User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585837531783789120?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585832128645594991?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -6087,7 +5389,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:50:03 GMT + - Wed, 14 Apr 2021 09:54:15 GMT expires: - '-1' pragma: @@ -6116,9 +5418,9 @@ interactions: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585837531783789120?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585832128645594991?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -6130,7 +5432,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:50:33 GMT + - Wed, 14 Apr 2021 09:54:46 GMT expires: - '-1' pragma: @@ -6159,21 +5461,21 @@ interactions: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_SnJdsVcjUc18F9XflFS220UWOlZT1OUu","name":"vm_deploy_SnJdsVcjUc18F9XflFS220UWOlZT1OUu","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17498370696575021293","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-08T03:50:03.6884221Z","duration":"PT1M36.5897022S","correlationId":"179c3743-27d7-4455-8852-0158240594bb","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmFromImageNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmFromImagePublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vmFromImage"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_IYJFao13QRM7qJY4vxvgYZjkPDReQoxP","name":"vm_deploy_IYJFao13QRM7qJY4vxvgYZjkPDReQoxP","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15019600982873647752","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-14T09:54:45.2990873Z","duration":"PT1M4.380955S","correlationId":"3f53256c-8971-4059-9f29-02d0675acb72","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmFromImageNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmFromImagePublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vmFromImage"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"}]}}' headers: cache-control: - no-cache content-length: - - '3384' + - '3382' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:50:34 GMT + - Wed, 14 Apr 2021 09:54:47 GMT expires: - '-1' pragma: @@ -6201,31 +5503,31 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage?$expand=instanceView&api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"vmFromImage\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"1aeccb94-6330-48a0-b0da-ad967658128a\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"30accb0b-e180-4d06-b1f8-68c92b6dde4d\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1\",\r\n \ \"exactVersion\": \"1.1.3\"\r\n },\r\n \"osDisk\": {\r\n - \ \"osType\": \"Linux\",\r\n \"name\": \"vmFromImage_OsDisk_1_cd38230430474c5fb63bb4b89992190f\",\r\n + \ \"osType\": \"Linux\",\r\n \"name\": \"vmFromImage_OsDisk_1_b8910c292e7b447eb8f379406f7f6ce3\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"diskEncryptionSet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\"\r\n \ },\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_cd38230430474c5fb63bb4b89992190f\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_b8910c292e7b447eb8f379406f7f6ce3\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": - [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vmFromImage_lun_0_2_87543948ccc24454a516c733519996a2\",\r\n + [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vmFromImage_lun_0_2_438b413a0573424ca2e2d02b168761a4\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \ \"managedDisk\": {\r\n \"diskEncryptionSet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\"\r\n \ },\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vmFromImage_lun_0_2_87543948ccc24454a516c733519996a2\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vmFromImage_lun_0_2_438b413a0573424ca2e2d02b168761a4\"\r\n \ },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmFromImage\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\": @@ -6244,20 +5546,20 @@ interactions: \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \ \"message\": \"Guest Agent is running\",\r\n \"time\": - \"2021-04-08T03:50:31+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vmFromImage_OsDisk_1_cd38230430474c5fb63bb4b89992190f\",\r\n + \"2021-04-14T09:54:48+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vmFromImage_OsDisk_1_b8910c292e7b447eb8f379406f7f6ce3\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-08T03:49:20.6876919+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-14T09:54:12.5010074+00:00\"\r\n \ }\r\n ]\r\n },\r\n {\r\n \"name\": - \"vmFromImage_lun_0_2_87543948ccc24454a516c733519996a2\",\r\n \"statuses\": + \"vmFromImage_lun_0_2_438b413a0573424ca2e2d02b168761a4\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-08T03:49:20.6876919+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-14T09:54:12.5010074+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-08T03:50:02.1098147+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-14T09:54:42.1425254+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n \ }\r\n ]\r\n }\r\n }\r\n}" @@ -6269,7 +5571,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:50:35 GMT + - Wed, 14 Apr 2021 09:54:48 GMT expires: - '-1' pragma: @@ -6286,7 +5588,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31989 + - Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31982 status: code: 200 message: OK @@ -6304,18 +5606,18 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"vmFromImageVMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic\",\r\n - \ \"etag\": \"W/\\\"21628558-5122-45ad-a196-1f0938265cf4\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"f8056229-150a-4f4e-9222-df37cb00b4cd\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"e60d4267-3e80-4760-b674-f0ce6b76d29b\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"7cf0d1da-9a1d-476b-ae71-18442bdb1ec0\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvmFromImage\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/ipConfigurations/ipconfigvmFromImage\",\r\n - \ \"etag\": \"W/\\\"21628558-5122-45ad-a196-1f0938265cf4\\\"\",\r\n + \ \"etag\": \"W/\\\"f8056229-150a-4f4e-9222-df37cb00b4cd\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": @@ -6324,8 +5626,8 @@ interactions: \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": - \"hwhmfvyaq5seln1byd12ibrqqa.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-0D-3A-7B-20-3D\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"c0tepdj3q2yutoxptvzcz3dsuc.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-00-4B-80\",\r\n \"enableAcceleratedNetworking\": false,\r\n \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -6339,9 +5641,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:50:35 GMT + - Wed, 14 Apr 2021 09:54:48 GMT etag: - - W/"21628558-5122-45ad-a196-1f0938265cf4" + - W/"f8056229-150a-4f4e-9222-df37cb00b4cd" expires: - '-1' pragma: @@ -6358,7 +5660,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7babb613-9533-4ff2-ab02-6d6ea3d4a5f9 + - 343e9b4b-9d5b-4a37-8ffe-8f35b9933269 status: code: 200 message: OK @@ -6376,17 +5678,17 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys --nsg-rule User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"vmFromImagePublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\",\r\n - \ \"etag\": \"W/\\\"8d246cd8-e7a2-40d9-82b3-f58882a985a0\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"40e9de5d-0e1c-40fe-9b21-6bc4a8b99582\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"1eaf9a19-92c1-4e4f-aa82-e4b212bc44d6\",\r\n - \ \"ipAddress\": \"40.70.20.23\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n - \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + \"Succeeded\",\r\n \"resourceGuid\": \"172dc1cc-63d3-4588-b629-389697d7432c\",\r\n + \ \"ipAddress\": \"52.247.126.161\",\r\n \"publicIPAddressVersion\": + \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/ipConfigurations/ipconfigvmFromImage\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" @@ -6394,13 +5696,13 @@ interactions: cache-control: - no-cache content-length: - - '1028' + - '1031' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:50:36 GMT + - Wed, 14 Apr 2021 09:54:48 GMT etag: - - W/"8d246cd8-e7a2-40d9-82b3-f58882a985a0" + - W/"40e9de5d-0e1c-40fe-9b21-6bc4a8b99582" expires: - '-1' pragma: @@ -6417,7 +5719,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 93a064e6-e2f1-4297-a425-fc99f9c6e521 + - e4f66d6d-6abf-4102-88c5-3754021d923c status: code: 200 message: OK @@ -6437,25 +5739,25 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2020-09-30 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9f394f9a-73a5-42a1-8fbf-b797387a53e9?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/d635873b-ba22-4011-9abf-89015d04f92b?api-version=2020-09-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 08 Apr 2021 03:50:38 GMT + - Wed, 14 Apr 2021 09:54:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9f394f9a-73a5-42a1-8fbf-b797387a53e9?monitor=true&api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/d635873b-ba22-4011-9abf-89015d04f92b?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -6468,7 +5770,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/DeleteGalleryImageVersion3Min;149,Microsoft.Compute/DeleteGalleryImageVersion30Min;999 x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted @@ -6486,13 +5788,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9f394f9a-73a5-42a1-8fbf-b797387a53e9?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/d635873b-ba22-4011-9abf-89015d04f92b?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:50:38.6423665+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"9f394f9a-73a5-42a1-8fbf-b797387a53e9\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:54:50.4327129+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d635873b-ba22-4011-9abf-89015d04f92b\"\r\n}" headers: cache-control: - no-cache @@ -6501,7 +5803,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:51:39 GMT + - Wed, 14 Apr 2021 09:55:50 GMT expires: - '-1' pragma: @@ -6518,7 +5820,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1199,Microsoft.Compute/GetOperationStatus30Min;4158 + - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4191 status: code: 200 message: OK @@ -6536,14 +5838,14 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9f394f9a-73a5-42a1-8fbf-b797387a53e9?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/d635873b-ba22-4011-9abf-89015d04f92b?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:50:38.6423665+00:00\",\r\n \"endTime\": - \"2021-04-08T03:52:09.6148924+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"9f394f9a-73a5-42a1-8fbf-b797387a53e9\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:54:50.4327129+00:00\",\r\n \"endTime\": + \"2021-04-14T09:56:22.3464228+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"d635873b-ba22-4011-9abf-89015d04f92b\"\r\n}" headers: cache-control: - no-cache @@ -6552,7 +5854,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:52:40 GMT + - Wed, 14 Apr 2021 09:56:50 GMT expires: - '-1' pragma: @@ -6569,7 +5871,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4156 + - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4189 status: code: 200 message: OK @@ -6589,25 +5891,25 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3?api-version=2020-09-30 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/de881410-2008-4751-b312-f291df0fd444?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/17a00e0e-801b-4b2e-9bc6-e46d1ed5ed84?api-version=2020-09-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 08 Apr 2021 03:52:42 GMT + - Wed, 14 Apr 2021 09:56:53 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/de881410-2008-4751-b312-f291df0fd444?monitor=true&api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/17a00e0e-801b-4b2e-9bc6-e46d1ed5ed84?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -6620,7 +5922,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/DeleteGalleryImageVersion3Min;148,Microsoft.Compute/DeleteGalleryImageVersion30Min;998 x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 202 message: Accepted @@ -6638,13 +5940,13 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/de881410-2008-4751-b312-f291df0fd444?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/17a00e0e-801b-4b2e-9bc6-e46d1ed5ed84?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:52:42.7883046+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"de881410-2008-4751-b312-f291df0fd444\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:56:53.3789038+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"17a00e0e-801b-4b2e-9bc6-e46d1ed5ed84\"\r\n}" headers: cache-control: - no-cache @@ -6653,7 +5955,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:53:43 GMT + - Wed, 14 Apr 2021 09:57:53 GMT expires: - '-1' pragma: @@ -6670,7 +5972,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4154 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4187 status: code: 200 message: OK @@ -6688,23 +5990,23 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/de881410-2008-4751-b312-f291df0fd444?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/17a00e0e-801b-4b2e-9bc6-e46d1ed5ed84?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:52:42.7883046+00:00\",\r\n \"endTime\": - \"2021-04-08T03:54:12.9635869+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"de881410-2008-4751-b312-f291df0fd444\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:56:53.3789038+00:00\",\r\n \"endTime\": + \"2021-04-14T09:58:26.036809+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"17a00e0e-801b-4b2e-9bc6-e46d1ed5ed84\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:54:44 GMT + - Wed, 14 Apr 2021 09:58:54 GMT expires: - '-1' pragma: @@ -6721,7 +6023,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4152 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4185 status: code: 200 message: OK @@ -6741,7 +6043,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 response: @@ -6749,17 +6051,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/5ffdd8ef-3c0b-4d60-baf4-b6cda656c232?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/083dcd93-2771-44bc-bac7-79a462f05180?api-version=2020-09-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 08 Apr 2021 03:55:46 GMT + - Wed, 14 Apr 2021 09:59:57 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/5ffdd8ef-3c0b-4d60-baf4-b6cda656c232?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/083dcd93-2771-44bc-bac7-79a462f05180?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -6772,7 +6074,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 @@ -6790,14 +6092,14 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/5ffdd8ef-3c0b-4d60-baf4-b6cda656c232?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/083dcd93-2771-44bc-bac7-79a462f05180?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:55:47.1548208+00:00\",\r\n \"endTime\": - \"2021-04-08T03:55:47.8424101+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"5ffdd8ef-3c0b-4d60-baf4-b6cda656c232\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T09:59:57.1360229+00:00\",\r\n \"endTime\": + \"2021-04-14T09:59:59.3392075+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"083dcd93-2771-44bc-bac7-79a462f05180\"\r\n}" headers: cache-control: - no-cache @@ -6806,7 +6108,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:56:18 GMT + - Wed, 14 Apr 2021 10:00:27 GMT expires: - '-1' pragma: @@ -6823,7 +6125,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4158 + - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4182 status: code: 200 message: OK @@ -6843,7 +6145,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01 response: @@ -6851,17 +6153,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/b8bfc580-b833-4a2a-864f-edcc4d7c9b21?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/129594fa-032d-4ec2-9704-d93c91c05902?api-version=2019-12-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 08 Apr 2021 03:56:19 GMT + - Wed, 14 Apr 2021 10:00:30 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/b8bfc580-b833-4a2a-864f-edcc4d7c9b21?monitor=true&api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/129594fa-032d-4ec2-9704-d93c91c05902?monitor=true&api-version=2019-12-01 pragma: - no-cache server: @@ -6892,14 +6194,14 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/b8bfc580-b833-4a2a-864f-edcc4d7c9b21?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/129594fa-032d-4ec2-9704-d93c91c05902?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-08T03:56:20.6406276+00:00\",\r\n \"endTime\": - \"2021-04-08T03:56:20.7656373+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"b8bfc580-b833-4a2a-864f-edcc4d7c9b21\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-14T10:00:29.7622682+00:00\",\r\n \"endTime\": + \"2021-04-14T10:00:31.0591963+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"129594fa-032d-4ec2-9704-d93c91c05902\"\r\n}" headers: cache-control: - no-cache @@ -6908,7 +6210,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 08 Apr 2021 03:56:50 GMT + - Wed, 14 Apr 2021 10:01:00 GMT expires: - '-1' pragma: @@ -6925,7 +6227,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4156 + - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4180 status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_image_version_vhd.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_image_version_vhd.yaml new file mode 100644 index 00000000000..6f58cfa398f --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_image_version_vhd.yaml @@ -0,0 +1,1923 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001?api-version=2020-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001","name":"cli_test_gallery_image_version_vhd000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:32:38Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:32:42 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.22.0 + method: GET + uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-compute/quickstart-templates/aliases.json + response: + body: + string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n + \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\": + {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\": + \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\": + {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n + \ \"sku\": \"7.5\",\n \"version\": \"latest\"\n },\n + \ \"CoreOS\": {\n \"publisher\": \"CoreOS\",\n \"offer\": + \"CoreOS\",\n \"sku\": \"Stable\",\n \"version\": \"latest\"\n + \ },\n \"Debian\": {\n \"publisher\": \"Debian\",\n + \ \"offer\": \"debian-10\",\n \"sku\": \"10\",\n \"version\": + \"latest\"\n },\n \"openSUSE-Leap\": {\n \"publisher\": + \"SUSE\",\n \"offer\": \"openSUSE-Leap\",\n \"sku\": + \"42.3\",\n \"version\": \"latest\"\n },\n \"RHEL\": + {\n \"publisher\": \"RedHat\",\n \"offer\": \"RHEL\",\n + \ \"sku\": \"7-LVM\",\n \"version\": \"latest\"\n },\n + \ \"SLES\": {\n \"publisher\": \"SUSE\",\n \"offer\": + \"SLES\",\n \"sku\": \"15\",\n \"version\": \"latest\"\n + \ },\n \"UbuntuLTS\": {\n \"publisher\": \"Canonical\",\n + \ \"offer\": \"UbuntuServer\",\n \"sku\": \"18.04-LTS\",\n + \ \"version\": \"latest\"\n }\n },\n \"Windows\": + {\n \"Win2019Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n + \ \"offer\": \"WindowsServer\",\n \"sku\": \"2019-Datacenter\",\n + \ \"version\": \"latest\"\n },\n \"Win2016Datacenter\": + {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": + \"WindowsServer\",\n \"sku\": \"2016-Datacenter\",\n \"version\": + \"latest\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\": + \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\": + \"2012-R2-Datacenter\",\n \"version\": \"latest\"\n },\n + \ \"Win2012Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n + \ \"offer\": \"WindowsServer\",\n \"sku\": \"2012-Datacenter\",\n + \ \"version\": \"latest\"\n },\n \"Win2008R2SP1\": + {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\": + \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n \"version\": + \"latest\"\n }\n }\n }\n }\n }\n}\n" + headers: + accept-ranges: + - bytes + access-control-allow-origin: + - '*' + cache-control: + - max-age=300 + connection: + - keep-alive + content-length: + - '2501' + content-security-policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + content-type: + - text/plain; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:32:43 GMT + etag: + - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" + expires: + - Fri, 09 Apr 2021 03:37:43 GMT + source-age: + - '24' + strict-transport-security: + - max-age=31536000 + vary: + - Authorization,Accept-Encoding + via: + - 1.1 varnish + x-cache: + - HIT + x-cache-hits: + - '1' + x-content-type-options: + - nosniff + x-fastly-request-id: + - 1c26184c5d84d4b93dcba7ed7b863a7b456a7229 + x-frame-options: + - deny + x-github-request-id: + - C62E:4586:4AE6C2:58C97E:606FB659 + x-served-by: + - cache-qpg1282-QPG + x-timer: + - S1617939164.573393,VS0,VE0 + x-xss-protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Storage/storageAccounts?api-version=2021-01-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:32:43 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json, text/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:32:44 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {}, "variables": {}, "resources": + [{"type": "Microsoft.Storage/storageAccounts", "name": "vhdstorage1a626868697e4c", + "apiVersion": "2015-06-15", "location": "westus", "tags": {}, "dependsOn": [], + "properties": {"accountType": "Premium_LRS"}}, {"name": "vm1VNET", "type": "Microsoft.Network/virtualNetworks", + "location": "westus", "apiVersion": "2015-06-15", "dependsOn": [], "tags": {}, + "properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "subnets": + [{"name": "vm1Subnet", "properties": {"addressPrefix": "10.0.0.0/24"}}]}}, {"type": + "Microsoft.Network/networkSecurityGroups", "name": "vm1NSG", "apiVersion": "2015-06-15", + "location": "westus", "tags": {}, "dependsOn": []}, {"apiVersion": "2018-01-01", + "type": "Microsoft.Network/publicIPAddresses", "name": "vm1PublicIP", "location": + "westus", "tags": {}, "dependsOn": [], "properties": {"publicIPAllocationMethod": + null}}, {"apiVersion": "2015-06-15", "type": "Microsoft.Network/networkInterfaces", + "name": "vm1VMNic", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Network/virtualNetworks/vm1VNET", + "Microsoft.Network/networkSecurityGroups/vm1NSG", "Microsoft.Network/publicIpAddresses/vm1PublicIP"], + "properties": {"ipConfigurations": [{"name": "ipconfigvm1", "properties": {"privateIPAllocationMethod": + "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"}, + "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"}}}], + "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"}}}, + {"apiVersion": "2020-12-01", "type": "Microsoft.Compute/virtualMachines", "name": + "vm1", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Storage/storageAccounts/vhdstorage1a626868697e4c", + "Microsoft.Network/networkInterfaces/vm1VMNic"], "properties": {"hardwareProfile": + {"vmSize": "Standard_DS1_v2"}, "networkProfile": {"networkInterfaces": [{"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"}]}, + "storageProfile": {"osDisk": {"createOption": "fromImage", "name": "osdisk_1a62686869", + "caching": "ReadWrite", "vhd": {"uri": "https://vhdstorage1a626868697e4c.blob.core.windows.net/vhds/osdisk_1a62686869.vhd"}}, + "imageReference": {"publisher": "OpenLogic", "offer": "CentOS", "sku": "7.5", + "version": "latest"}}, "osProfile": {"computerName": "vm1", "adminUsername": + "fey", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": + {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj + fey@DESKTOP-ARGPJS4\n", "path": "/home/fey/.ssh/authorized_keys"}]}}}, "securityProfile": + {}}}], "outputs": {}}, "parameters": {}, "mode": "Incremental"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + Content-Length: + - '3744' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/vm_deploy_U7gWui2V4NaBhgRthSL2wToZkmDbYJxD","name":"vm_deploy_U7gWui2V4NaBhgRthSL2wToZkmDbYJxD","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8744553287868360303","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-09T03:32:48.2358949Z","duration":"PT2.1773726S","correlationId":"c17a7c27-81c9-435c-ba0b-9c6492fb3986","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Storage/storageAccounts/vhdstorage1a626868697e4c","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstorage1a626868697e4c"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/vm_deploy_U7gWui2V4NaBhgRthSL2wToZkmDbYJxD/operationStatuses/08585836677194191191?api-version=2020-10-01 + cache-control: + - no-cache + content-length: + - '3166' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:32:48 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836677194191191?api-version=2020-10-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:33:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836677194191191?api-version=2020-10-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:33:50 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836677194191191?api-version=2020-10-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:34:21 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836677194191191?api-version=2020-10-01 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-cache + content-length: + - '22' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:34: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 +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/vm_deploy_U7gWui2V4NaBhgRthSL2wToZkmDbYJxD","name":"vm_deploy_U7gWui2V4NaBhgRthSL2wToZkmDbYJxD","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8744553287868360303","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-09T03:34:27.4553531Z","duration":"PT1M41.3968308S","correlationId":"c17a7c27-81c9-435c-ba0b-9c6492fb3986","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Storage/storageAccounts/vhdstorage1a626868697e4c","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstorage1a626868697e4c"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Storage/storageAccounts/vhdstorage1a626868697e4c"}]}}' + headers: + cache-control: + - no-cache + content-length: + - '4454' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:34: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 +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2020-12-01 + response: + body: + string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"95c07b69-8300-4fc0-b675-d73a492a0fe4\",\r\n + \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n + \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": + \"OpenLogic\",\r\n \"offer\": \"CentOS\",\r\n \"sku\": \"7.5\",\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"7.5.201808150\"\r\n + \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"osdisk_1a62686869\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": + {\r\n \"uri\": \"https://vhdstorage1a626868697e4c.blob.core.windows.net/vhds/osdisk_1a62686869.vhd\"\r\n + \ },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": + 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": + {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"fey\",\r\n + \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": + true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n + \ \"path\": \"/home/fey/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj + fey@DESKTOP-ARGPJS4\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": + \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\": + \"vm1\",\r\n \"osName\": \"centos\",\r\n \"osVersion\": \"7.5.1804\",\r\n + \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.54.2\",\r\n \"statuses\": + [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n + \ \"message\": \"Guest Agent is running\",\r\n \"time\": + \"2021-04-09T03:34:48+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osdisk_1a62686869\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2021-04-09T03:33:23.4167434+00:00\"\r\n + \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": + \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2021-04-09T03:34:25.9977213+00:00\"\r\n + \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n + \ }\r\n ]\r\n }\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3580' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:34:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/LowCostGet3Min;3968,Microsoft.Compute/LowCostGet30Min;31606 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json, text/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic?api-version=2018-01-01 + response: + body: + string: "{\r\n \"name\": \"vm1VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\r\n + \ \"etag\": \"W/\\\"11477d04-5dab-4a8e-a37b-b23f25da92d2\\\"\",\r\n \"location\": + \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"resourceGuid\": \"5479f59b-839c-4ff7-be9e-4db8434ce67d\",\r\n + \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm1\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\r\n + \ \"etag\": \"W/\\\"11477d04-5dab-4a8e-a37b-b23f25da92d2\\\"\",\r\n + \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"\r\n + \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"\r\n + \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": + [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": + \"ygsgdt4h3p5uxav342wlmfodag.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-59-5F-DD\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\r\n + \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/virtualMachines/vm1\"\r\n + \ }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2568' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:34:53 GMT + etag: + - W/"11477d04-5dab-4a8e-a37b-b23f25da92d2" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - e88b37ff-bc7f-4a37-b16e-b1890b383081 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json, text/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP?api-version=2018-01-01 + response: + body: + string: "{\r\n \"name\": \"vm1PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\r\n + \ \"etag\": \"W/\\\"6b1eb47d-548c-4da5-b77e-39b7c07d820f\\\"\",\r\n \"location\": + \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"resourceGuid\": \"41d9c647-161e-4d9e-bda6-aa65db775602\",\r\n + \ \"ipAddress\": \"13.93.176.85\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n + \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n + \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '996' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:34:53 GMT + etag: + - W/"6b1eb47d-548c-4da5-b77e-39b7c07d820f" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - a518a27b-90de-4343-991a-976ab7eedcc2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2020-12-01 + response: + body: + string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"95c07b69-8300-4fc0-b675-d73a492a0fe4\",\r\n + \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n + \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": + \"OpenLogic\",\r\n \"offer\": \"CentOS\",\r\n \"sku\": \"7.5\",\r\n + \ \"version\": \"latest\",\r\n \"exactVersion\": \"7.5.201808150\"\r\n + \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": + \"osdisk_1a62686869\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": + {\r\n \"uri\": \"https://vhdstorage1a626868697e4c.blob.core.windows.net/vhds/osdisk_1a62686869.vhd\"\r\n + \ },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": + 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": + {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"fey\",\r\n + \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": + true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n + \ \"path\": \"/home/fey/.ssh/authorized_keys\",\r\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj + fey@DESKTOP-ARGPJS4\\n\"\r\n }\r\n ]\r\n },\r\n + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": + \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": + {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n + \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2311' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:34:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/LowCostGet3Min;3967,Microsoft.Compute/LowCostGet30Min;31605 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sig create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001?api-version=2020-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001","name":"cli_test_gallery_image_version_vhd000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:32:38Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:34: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: '{"location": "westus", "tags": {}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sig create + Connection: + - keep-alive + Content-Length: + - '34' + Content-Type: + - application/json + ParameterSetName: + - -g --gallery-name + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01 + response: + body: + string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n + \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_AQCU7QAV5BVB\"\r\n },\r\n + \ \"provisioningState\": \"Creating\"\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/07a6d42c-7c99-4f8c-b194-7998dc1c9116?api-version=2019-12-01 + cache-control: + - no-cache + content-length: + - '506' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:35:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/CreateUpdateGallery3Min;48,Microsoft.Compute/CreateUpdateGallery30Min;297 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/07a6d42c-7c99-4f8c-b194-7998dc1c9116?api-version=2019-12-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-04-09T03:35:02.0714854+00:00\",\r\n \"endTime\": + \"2021-04-09T03:35:02.1808508+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"07a6d42c-7c99-4f8c-b194-7998dc1c9116\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '184' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:35:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4186 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01 + response: + body: + string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n + \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_AQCU7QAV5BVB\"\r\n },\r\n + \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '507' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:35:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetGallery3Min;335,Microsoft.Compute/GetGallery30Min;2474 + 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.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001?api-version=2020-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001","name":"cli_test_gallery_image_version_vhd000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:32:38Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:35: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": {"osType": "Linux", "osState": + "Generalized", "hyperVGeneration": "V1", "identifier": {"publisher": "publisher1", + "offer": "offer1", "sku": "sku1"}, "disallowed": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-definition create + Connection: + - keep-alive + Content-Length: + - '216' + Content-Type: + - application/json + ParameterSetName: + - -g --gallery-name --gallery-image-definition --os-type -p -f -s + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 + response: + body: + string: "{\r\n \"name\": \"image1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1\",\r\n + \ \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n + \ \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": + {\r\n \"publisher\": \"publisher1\",\r\n \"offer\": \"offer1\",\r\n + \ \"sku\": \"sku1\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/ffb5c40a-d8f6-4d21-86c5-bcd21622b979?api-version=2020-09-30 + cache-control: + - no-cache + content-length: + - '599' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:35: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;148,Microsoft.Compute/CreateUpdateGalleryImage30Min;747 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-definition create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --os-type -p -f -s + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/ffb5c40a-d8f6-4d21-86c5-bcd21622b979?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-04-09T03:35:40.7127051+00:00\",\r\n \"endTime\": + \"2021-04-09T03:35:40.8220775+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"ffb5c40a-d8f6-4d21-86c5-bcd21622b979\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '184' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:36:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4182 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-definition create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --os-type -p -f -s + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30 + response: + body: + string: "{\r\n \"name\": \"image1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1\",\r\n + \ \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n + \ \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": + {\r\n \"publisher\": \"publisher1\",\r\n \"offer\": \"offer1\",\r\n + \ \"sku\": \"sku1\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n + \ }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '600' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:36: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/GetGalleryImage3Min;586,Microsoft.Compute/GetGalleryImage30Min;2975 + 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-vhd + --os-vhd-storage-account --replica-count + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001?api-version=2020-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001","name":"cli_test_gallery_image_version_vhd000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:32:38Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:36:12 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "tags": {}, "properties": {"publishingProfile": + {"targetRegions": [{"name": "westus"}], "replicaCount": 1}, "storageProfile": + {"osDiskImage": {"source": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Storage/storageAccounts/vhdstorage1a626868697e4c", + "uri": "https://vhdstorage1a626868697e4c.blob.core.windows.net/vhds/osdisk_1a62686869.vhd"}}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + Content-Length: + - '493' + Content-Type: + - application/json + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --os-vhd + --os-vhd-storage-account --replica-count + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2020-09-30 + response: + body: + string: "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0\",\r\n + \ \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": + \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"publishingProfile\": + {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West + US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": + \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-09T03:36:17.0098546+00:00\",\r\n + \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": + {\r\n \"osDiskImage\": {\r\n \"hostCaching\": \"ReadWrite\",\r\n + \ \"source\": {\r\n \"uri\": \"https://vhdstorage1a626868697e4c.blob.core.windows.net/vhds/osdisk_1a62686869.vhd\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Storage/storageAccounts/vhdstorage1a626868697e4c\"\r\n + \ }\r\n }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n + \ }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8cbab3e0-ff64-40a1-84c7-25827dd157f7?api-version=2020-09-30 + cache-control: + - no-cache + content-length: + - '1271' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:36:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;373,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1197 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --os-vhd + --os-vhd-storage-account --replica-count + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8cbab3e0-ff64-40a1-84c7-25827dd157f7?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-04-09T03:36:16.9942143+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"8cbab3e0-ff64-40a1-84c7-25827dd157f7\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:37:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4178 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --os-vhd + --os-vhd-storage-account --replica-count + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8cbab3e0-ff64-40a1-84c7-25827dd157f7?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-04-09T03:36:16.9942143+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"8cbab3e0-ff64-40a1-84c7-25827dd157f7\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:38:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4175 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --os-vhd + --os-vhd-storage-account --replica-count + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8cbab3e0-ff64-40a1-84c7-25827dd157f7?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-04-09T03:36:16.9942143+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"8cbab3e0-ff64-40a1-84c7-25827dd157f7\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:39:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4171 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --os-vhd + --os-vhd-storage-account --replica-count + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8cbab3e0-ff64-40a1-84c7-25827dd157f7?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-04-09T03:36:16.9942143+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"8cbab3e0-ff64-40a1-84c7-25827dd157f7\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:40:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4171 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --os-vhd + --os-vhd-storage-account --replica-count + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8cbab3e0-ff64-40a1-84c7-25827dd157f7?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-04-09T03:36:16.9942143+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"8cbab3e0-ff64-40a1-84c7-25827dd157f7\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:41:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;4165 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --os-vhd + --os-vhd-storage-account --replica-count + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8cbab3e0-ff64-40a1-84c7-25827dd157f7?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-04-09T03:36:16.9942143+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"8cbab3e0-ff64-40a1-84c7-25827dd157f7\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:42:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;4159 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --os-vhd + --os-vhd-storage-account --replica-count + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8cbab3e0-ff64-40a1-84c7-25827dd157f7?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-04-09T03:36:16.9942143+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"8cbab3e0-ff64-40a1-84c7-25827dd157f7\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:43:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4153 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --os-vhd + --os-vhd-storage-account --replica-count + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8cbab3e0-ff64-40a1-84c7-25827dd157f7?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-04-09T03:36:16.9942143+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"8cbab3e0-ff64-40a1-84c7-25827dd157f7\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:44:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4147 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --os-vhd + --os-vhd-storage-account --replica-count + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8cbab3e0-ff64-40a1-84c7-25827dd157f7?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-04-09T03:36:16.9942143+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"8cbab3e0-ff64-40a1-84c7-25827dd157f7\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:45:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4141 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --os-vhd + --os-vhd-storage-account --replica-count + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8cbab3e0-ff64-40a1-84c7-25827dd157f7?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-04-09T03:36:16.9942143+00:00\",\r\n \"endTime\": + \"2021-04-09T03:45:32.8711971+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"8cbab3e0-ff64-40a1-84c7-25827dd157f7\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '184' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:46:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;4137 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --os-vhd + --os-vhd-storage-account --replica-count + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2020-09-30 + response: + body: + string: "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0\",\r\n + \ \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": + \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"publishingProfile\": + {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West + US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": + \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-09T03:36:17.0098546+00:00\",\r\n + \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": + {\r\n \"osDiskImage\": {\r\n \"hostCaching\": \"ReadWrite\",\r\n + \ \"source\": {\r\n \"uri\": \"https://vhdstorage1a626868697e4c.blob.core.windows.net/vhds/osdisk_1a62686869.vhd\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Storage/storageAccounts/vhdstorage1a626868697e4c\"\r\n + \ }\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n + \ }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1272' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 09 Apr 2021 03:46:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetGalleryImageVersion3Min;1994,Microsoft.Compute/GetGalleryImageVersion30Min;9985 + status: + code: 200 + message: OK +version: 1 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 36cfeb4a46f..a656d1a52da 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_specialized.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_specialized.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:24:19 GMT + - Thu, 15 Apr 2021 06:08:44 GMT expires: - '-1' pragma: @@ -70,11 +70,11 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_MTMIFL6NUJZC\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_BFZJM7WCTZ36\"\r\n },\r\n \ \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/f10962ed-66f5-47d5-9708-e3a8b5ccc242?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/20593719-5ea3-422c-a4c2-939c0870f32e?api-version=2019-12-01 cache-control: - no-cache content-length: @@ -82,7 +82,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:24:27 GMT + - Thu, 15 Apr 2021 06:08:53 GMT expires: - '-1' pragma: @@ -97,7 +97,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1195' status: code: 201 message: Created @@ -117,12 +117,12 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/f10962ed-66f5-47d5-9708-e3a8b5ccc242?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/20593719-5ea3-422c-a4c2-939c0870f32e?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-13T07:24:26.0162799+00:00\",\r\n \"endTime\": - \"2021-04-13T07:24:26.297487+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"f10962ed-66f5-47d5-9708-e3a8b5ccc242\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:08:51.4988018+00:00\",\r\n \"endTime\": + \"2021-04-15T06:08:52.264514+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"20593719-5ea3-422c-a4c2-939c0870f32e\"\r\n}" headers: cache-control: - no-cache @@ -131,7 +131,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:24:57 GMT + - Thu, 15 Apr 2021 06:09:23 GMT expires: - '-1' pragma: @@ -174,7 +174,7 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_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_MTMIFL6NUJZC\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_BFZJM7WCTZ36\"\r\n },\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -184,7 +184,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:24:57 GMT + - Thu, 15 Apr 2021 06:09:23 GMT expires: - '-1' pragma: @@ -201,7 +201,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGallery3Min;345,Microsoft.Compute/GetGallery30Min;2495 + - Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2496 status: code: 200 message: OK @@ -228,7 +228,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -237,7 +237,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:24:58 GMT + - Thu, 15 Apr 2021 06:09:24 GMT expires: - '-1' pragma: @@ -286,7 +286,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/57ab3146-b0b3-41aa-922b-61fb283aa885?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/973a7f90-f6ff-44ef-9082-99f21cd0448c?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -294,7 +294,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:25:06 GMT + - Thu, 15 Apr 2021 06:09:34 GMT expires: - '-1' pragma: @@ -309,7 +309,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;749 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1196' status: code: 201 message: Created @@ -330,12 +330,12 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/57ab3146-b0b3-41aa-922b-61fb283aa885?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/973a7f90-f6ff-44ef-9082-99f21cd0448c?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-13T07:25:05.0802436+00:00\",\r\n \"endTime\": - \"2021-04-13T07:25:05.2052561+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"57ab3146-b0b3-41aa-922b-61fb283aa885\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:09:33.1254138+00:00\",\r\n \"endTime\": + \"2021-04-15T06:09:33.3285479+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"973a7f90-f6ff-44ef-9082-99f21cd0448c\"\r\n}" headers: cache-control: - no-cache @@ -344,7 +344,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:25:37 GMT + - Thu, 15 Apr 2021 06:10:04 GMT expires: - '-1' pragma: @@ -400,7 +400,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:25:37 GMT + - Thu, 15 Apr 2021 06:10:04 GMT expires: - '-1' pragma: @@ -443,7 +443,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -452,7 +452,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:25:38 GMT + - Thu, 15 Apr 2021 06:10:05 GMT expires: - '-1' pragma: @@ -497,7 +497,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/7d6fd580-0aac-4e3c-a4a3-95ce009da7ce?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/d8cf5420-35cf-42e3-a28d-194f23519d4a?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -505,11 +505,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:25:44 GMT + - Thu, 15 Apr 2021 06:10:14 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/7d6fd580-0aac-4e3c-a4a3-95ce009da7ce?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/d8cf5420-35cf-42e3-a28d-194f23519d4a?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -520,9 +520,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7998 + - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1194' status: code: 202 message: Accepted @@ -542,11 +542,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/7d6fd580-0aac-4e3c-a4a3-95ce009da7ce?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/d8cf5420-35cf-42e3-a28d-194f23519d4a?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-13T07:25:45.1372811+00:00\",\r\n \"endTime\": - \"2021-04-13T07:25:45.2310504+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-15T06:10:15.4628389+00:00\",\r\n \"endTime\": + \"2021-04-15T06:10:15.6034725+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus2\",\r\n @@ -555,10 +555,10 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-04-13T07:25:45.1372811+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-15T06:10:15.4628389+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"d4e49a08-231d-4556-8d97-a3b827f119e2\",\r\n \"networkAccessPolicy\": - \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"7d6fd580-0aac-4e3c-a4a3-95ce009da7ce\"\r\n}" + \ \"uniqueId\": \"e889427e-8091-45be-b1ae-38a39e9076f5\",\r\n \"networkAccessPolicy\": + \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"d8cf5420-35cf-42e3-a28d-194f23519d4a\"\r\n}" headers: cache-control: - no-cache @@ -567,7 +567,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:25:46 GMT + - Thu, 15 Apr 2021 06:10:17 GMT expires: - '-1' pragma: @@ -584,7 +584,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49987,Microsoft.Compute/GetOperation30Min;399987 + - Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399999 status: code: 200 message: OK @@ -614,9 +614,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-04-13T07:25:45.1372811+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-15T06:10:15.4628389+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"d4e49a08-231d-4556-8d97-a3b827f119e2\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"e889427e-8091-45be-b1ae-38a39e9076f5\",\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: @@ -626,7 +626,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:25:47 GMT + - Thu, 15 Apr 2021 06:10:17 GMT expires: - '-1' pragma: @@ -643,7 +643,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14984,Microsoft.Compute/LowCostGet30Min;119984 + - Microsoft.Compute/LowCostGet3Min;14999,Microsoft.Compute/LowCostGet30Min;119999 status: code: 200 message: OK @@ -669,7 +669,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -678,7 +678,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:25:47 GMT + - Thu, 15 Apr 2021 06:10:18 GMT expires: - '-1' pragma: @@ -723,7 +723,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/df97e776-7039-4999-9b24-74e1381ac27b?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/e9c0b716-4356-427b-abff-6d7c8db48db1?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -731,11 +731,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:25:54 GMT + - Thu, 15 Apr 2021 06:10:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/df97e776-7039-4999-9b24-74e1381ac27b?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/e9c0b716-4356-427b-abff-6d7c8db48db1?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -746,7 +746,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7997 + - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7998 x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -768,11 +768,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/df97e776-7039-4999-9b24-74e1381ac27b?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/e9c0b716-4356-427b-abff-6d7c8db48db1?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-13T07:25:54.8413392+00:00\",\r\n \"endTime\": - \"2021-04-13T07:25:54.9663437+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-15T06:10:23.1193843+00:00\",\r\n \"endTime\": + \"2021-04-15T06:10:23.2600449+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus2\",\r\n @@ -781,10 +781,10 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-04-13T07:25:54.8413392+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-15T06:10:23.1193843+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"0e5d32e2-9d27-40be-81ae-6e48f12f3e22\",\r\n \"networkAccessPolicy\": - \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"df97e776-7039-4999-9b24-74e1381ac27b\"\r\n}" + \ \"uniqueId\": \"4e354b26-9a12-48d0-810e-78b62c8a1fbe\",\r\n \"networkAccessPolicy\": + \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"e9c0b716-4356-427b-abff-6d7c8db48db1\"\r\n}" headers: cache-control: - no-cache @@ -793,7 +793,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:25:56 GMT + - Thu, 15 Apr 2021 06:10:25 GMT expires: - '-1' pragma: @@ -810,7 +810,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 @@ -840,9 +840,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-04-13T07:25:54.8413392+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-15T06:10:23.1193843+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"0e5d32e2-9d27-40be-81ae-6e48f12f3e22\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"4e354b26-9a12-48d0-810e-78b62c8a1fbe\",\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: @@ -852,7 +852,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:25:57 GMT + - Thu, 15 Apr 2021 06:10:25 GMT expires: - '-1' pragma: @@ -869,7 +869,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14977,Microsoft.Compute/LowCostGet30Min;119977 + - Microsoft.Compute/LowCostGet3Min;14997,Microsoft.Compute/LowCostGet30Min;119997 status: code: 200 message: OK @@ -895,7 +895,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -904,7 +904,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:25:57 GMT + - Thu, 15 Apr 2021 06:10:26 GMT expires: - '-1' pragma: @@ -949,7 +949,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/61f2bf84-3812-4bd2-9acc-5517fd5dad1d?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/3c2fcd16-809c-4c4b-812b-dc4fb8dfe108?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -957,11 +957,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:03 GMT + - Thu, 15 Apr 2021 06:10:34 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/61f2bf84-3812-4bd2-9acc-5517fd5dad1d?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/3c2fcd16-809c-4c4b-812b-dc4fb8dfe108?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -972,9 +972,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;996,Microsoft.Compute/CreateUpdateDisks30Min;7996 + - Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7997 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' status: code: 202 message: Accepted @@ -994,11 +994,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/61f2bf84-3812-4bd2-9acc-5517fd5dad1d?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/3c2fcd16-809c-4c4b-812b-dc4fb8dfe108?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-13T07:26:03.4981767+00:00\",\r\n \"endTime\": - \"2021-04-13T07:26:03.5919272+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-15T06:10:34.651055+00:00\",\r\n \"endTime\": + \"2021-04-15T06:10:34.7916835+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus2\",\r\n @@ -1007,19 +1007,19 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-04-13T07:26:03.5138046+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-15T06:10:34.651055+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"c0721944-0e8a-40ff-a2c2-d8c8e82ae0c7\",\r\n \"networkAccessPolicy\": - \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"61f2bf84-3812-4bd2-9acc-5517fd5dad1d\"\r\n}" + \ \"uniqueId\": \"c2034da4-d9df-43f0-8bd4-43830e55c4c5\",\r\n \"networkAccessPolicy\": + \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"3c2fcd16-809c-4c4b-812b-dc4fb8dfe108\"\r\n}" headers: cache-control: - no-cache content-length: - - '1112' + - '1110' content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:05 GMT + - Thu, 15 Apr 2021 06:10:36 GMT expires: - '-1' pragma: @@ -1036,7 +1036,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 @@ -1066,19 +1066,19 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-04-13T07:26:03.5138046+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-15T06:10:34.651055+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"c0721944-0e8a-40ff-a2c2-d8c8e82ae0c7\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"c2034da4-d9df-43f0-8bd4-43830e55c4c5\",\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '887' + - '886' content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:06 GMT + - Thu, 15 Apr 2021 06:10:37 GMT expires: - '-1' pragma: @@ -1095,7 +1095,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14973,Microsoft.Compute/LowCostGet30Min;119973 + - Microsoft.Compute/LowCostGet3Min;14993,Microsoft.Compute/LowCostGet30Min;119993 status: code: 200 message: OK @@ -1129,7 +1129,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:07 GMT + - Thu, 15 Apr 2021 06:10:37 GMT expires: - '-1' pragma: @@ -1169,9 +1169,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-04-13T07:25:45.1372811+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-15T06:10:15.4628389+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"d4e49a08-231d-4556-8d97-a3b827f119e2\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"e889427e-8091-45be-b1ae-38a39e9076f5\",\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: @@ -1181,7 +1181,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:08 GMT + - Thu, 15 Apr 2021 06:10:38 GMT expires: - '-1' pragma: @@ -1198,7 +1198,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14972,Microsoft.Compute/LowCostGet30Min;119972 + - Microsoft.Compute/LowCostGet3Min;14992,Microsoft.Compute/LowCostGet30Min;119992 status: code: 200 message: OK @@ -1224,7 +1224,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1233,7 +1233,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:08 GMT + - Thu, 15 Apr 2021 06:10:39 GMT expires: - '-1' pragma: @@ -1274,12 +1274,12 @@ interactions: string: "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1\",\r\n - \ \"sourceUniqueId\": \"d4e49a08-231d-4556-8d97-a3b827f119e2\"\r\n },\r\n + \ \"sourceUniqueId\": \"e889427e-8091-45be-b1ae-38a39e9076f5\"\r\n },\r\n \ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/029ae372-c45c-409a-b04f-61e8481d31ba?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/41d1b1c7-4a2e-4fe5-9e53-0432effeccb0?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -1287,11 +1287,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:15 GMT + - Thu, 15 Apr 2021 06:10:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/029ae372-c45c-409a-b04f-61e8481d31ba?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/41d1b1c7-4a2e-4fe5-9e53-0432effeccb0?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -1302,7 +1302,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: - '1194' status: @@ -1324,24 +1324,24 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/029ae372-c45c-409a-b04f-61e8481d31ba?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/41d1b1c7-4a2e-4fe5-9e53-0432effeccb0?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-13T07:26:15.8738026+00:00\",\r\n \"endTime\": - \"2021-04-13T07:26:16.7644643+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-15T06:10:44.6045708+00:00\",\r\n \"endTime\": + \"2021-04-15T06:10:45.6514905+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s1\",\r\n \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1\",\r\n - \ \"sourceUniqueId\": \"d4e49a08-231d-4556-8d97-a3b827f119e2\"\r\n },\r\n + \ \"sourceUniqueId\": \"e889427e-8091-45be-b1ae-38a39e9076f5\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:26:15.8738026+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-15T06:10:44.6201998+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"a570eb9d-b3b1-43f8-a9e2-48033ebd4ee0\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"2ec4ecc1-bfd7-4511-956c-1b6c1f04bf84\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"029ae372-c45c-409a-b04f-61e8481d31ba\"\r\n}" + \"41d1b1c7-4a2e-4fe5-9e53-0432effeccb0\"\r\n}" headers: cache-control: - no-cache @@ -1350,7 +1350,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:17 GMT + - Thu, 15 Apr 2021 06:10:47 GMT expires: - '-1' pragma: @@ -1367,7 +1367,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 @@ -1395,11 +1395,11 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1\",\r\n - \ \"sourceUniqueId\": \"d4e49a08-231d-4556-8d97-a3b827f119e2\"\r\n },\r\n + \ \"sourceUniqueId\": \"e889427e-8091-45be-b1ae-38a39e9076f5\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:26:15.8738026+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-15T06:10:44.6201998+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"a570eb9d-b3b1-43f8-a9e2-48033ebd4ee0\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"2ec4ecc1-bfd7-4511-956c-1b6c1f04bf84\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -1409,7 +1409,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:17 GMT + - Thu, 15 Apr 2021 06:10:47 GMT expires: - '-1' pragma: @@ -1426,7 +1426,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14968,Microsoft.Compute/LowCostGet30Min;119968 + - Microsoft.Compute/LowCostGet3Min;14990,Microsoft.Compute/LowCostGet30Min;119990 status: code: 200 message: OK @@ -1460,7 +1460,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:19 GMT + - Thu, 15 Apr 2021 06:10:48 GMT expires: - '-1' pragma: @@ -1500,9 +1500,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-04-13T07:25:54.8413392+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-15T06:10:23.1193843+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"0e5d32e2-9d27-40be-81ae-6e48f12f3e22\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"4e354b26-9a12-48d0-810e-78b62c8a1fbe\",\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: @@ -1512,7 +1512,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:19 GMT + - Thu, 15 Apr 2021 06:10:48 GMT expires: - '-1' pragma: @@ -1529,7 +1529,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14967,Microsoft.Compute/LowCostGet30Min;119967 + - Microsoft.Compute/LowCostGet3Min;14989,Microsoft.Compute/LowCostGet30Min;119989 status: code: 200 message: OK @@ -1555,7 +1555,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1564,7 +1564,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:20 GMT + - Thu, 15 Apr 2021 06:10:48 GMT expires: - '-1' pragma: @@ -1605,12 +1605,12 @@ interactions: string: "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2\",\r\n - \ \"sourceUniqueId\": \"0e5d32e2-9d27-40be-81ae-6e48f12f3e22\"\r\n },\r\n + \ \"sourceUniqueId\": \"4e354b26-9a12-48d0-810e-78b62c8a1fbe\"\r\n },\r\n \ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/77a48fe5-6f1c-4756-9cb1-52acc3a6aefa?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/3ec45b0f-5457-4376-966f-8abff8ade1cf?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -1618,11 +1618,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:26 GMT + - Thu, 15 Apr 2021 06:10:57 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/77a48fe5-6f1c-4756-9cb1-52acc3a6aefa?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/3ec45b0f-5457-4376-966f-8abff8ade1cf?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -1633,9 +1633,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: - - '1198' + - '1197' status: code: 202 message: Accepted @@ -1655,24 +1655,24 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/77a48fe5-6f1c-4756-9cb1-52acc3a6aefa?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/3ec45b0f-5457-4376-966f-8abff8ade1cf?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-13T07:26:25.9523674+00:00\",\r\n \"endTime\": - \"2021-04-13T07:26:26.6242847+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-15T06:10:57.3550577+00:00\",\r\n \"endTime\": + \"2021-04-15T06:10:58.0425843+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"s2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s2\",\r\n \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2\",\r\n - \ \"sourceUniqueId\": \"0e5d32e2-9d27-40be-81ae-6e48f12f3e22\"\r\n },\r\n + \ \"sourceUniqueId\": \"4e354b26-9a12-48d0-810e-78b62c8a1fbe\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:26:25.9679932+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-15T06:10:57.3550577+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"63437e1e-abc1-4e22-b17d-1eb0bec06007\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"a2bfa89c-f5d1-475e-b4d7-eb8f5038501e\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"77a48fe5-6f1c-4756-9cb1-52acc3a6aefa\"\r\n}" + \"3ec45b0f-5457-4376-966f-8abff8ade1cf\"\r\n}" headers: cache-control: - no-cache @@ -1681,7 +1681,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:28 GMT + - Thu, 15 Apr 2021 06:10:59 GMT expires: - '-1' pragma: @@ -1698,7 +1698,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 @@ -1726,11 +1726,11 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2\",\r\n - \ \"sourceUniqueId\": \"0e5d32e2-9d27-40be-81ae-6e48f12f3e22\"\r\n },\r\n + \ \"sourceUniqueId\": \"4e354b26-9a12-48d0-810e-78b62c8a1fbe\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:26:25.9679932+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-15T06:10:57.3550577+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"63437e1e-abc1-4e22-b17d-1eb0bec06007\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"a2bfa89c-f5d1-475e-b4d7-eb8f5038501e\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -1740,7 +1740,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:28 GMT + - Thu, 15 Apr 2021 06:10:59 GMT expires: - '-1' pragma: @@ -1757,7 +1757,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14964,Microsoft.Compute/LowCostGet30Min;119964 + - Microsoft.Compute/LowCostGet3Min;14985,Microsoft.Compute/LowCostGet30Min;119985 status: code: 200 message: OK @@ -1791,7 +1791,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:29 GMT + - Thu, 15 Apr 2021 06:11:00 GMT expires: - '-1' pragma: @@ -1831,19 +1831,19 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-04-13T07:26:03.5138046+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-15T06:10:34.651055+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"c0721944-0e8a-40ff-a2c2-d8c8e82ae0c7\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"c2034da4-d9df-43f0-8bd4-43830e55c4c5\",\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '887' + - '886' content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:29 GMT + - Thu, 15 Apr 2021 06:11:00 GMT expires: - '-1' pragma: @@ -1860,7 +1860,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14963,Microsoft.Compute/LowCostGet30Min;119963 + - Microsoft.Compute/LowCostGet3Min;14984,Microsoft.Compute/LowCostGet30Min;119984 status: code: 200 message: OK @@ -1886,7 +1886,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1895,7 +1895,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:29 GMT + - Thu, 15 Apr 2021 06:11:01 GMT expires: - '-1' pragma: @@ -1936,12 +1936,12 @@ interactions: string: "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3\",\r\n - \ \"sourceUniqueId\": \"c0721944-0e8a-40ff-a2c2-d8c8e82ae0c7\"\r\n },\r\n + \ \"sourceUniqueId\": \"c2034da4-d9df-43f0-8bd4-43830e55c4c5\"\r\n },\r\n \ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/9f2e7f31-906c-4a1a-afcd-90dffb039771?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/c6da64f8-0b11-4ef8-818e-330fcbb353da?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -1949,11 +1949,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:35 GMT + - Thu, 15 Apr 2021 06:11:08 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/9f2e7f31-906c-4a1a-afcd-90dffb039771?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/c6da64f8-0b11-4ef8-818e-330fcbb353da?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -1964,9 +1964,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: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -1986,33 +1986,33 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/9f2e7f31-906c-4a1a-afcd-90dffb039771?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/c6da64f8-0b11-4ef8-818e-330fcbb353da?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-13T07:26:35.9527253+00:00\",\r\n \"endTime\": - \"2021-04-13T07:26:36.6090025+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-15T06:11:08.371103+00:00\",\r\n \"endTime\": + \"2021-04-15T06:11:09.0117454+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"s3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s3\",\r\n \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3\",\r\n - \ \"sourceUniqueId\": \"c0721944-0e8a-40ff-a2c2-d8c8e82ae0c7\"\r\n },\r\n + \ \"sourceUniqueId\": \"c2034da4-d9df-43f0-8bd4-43830e55c4c5\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:26:35.9683509+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-15T06:11:08.3867209+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"0c2e95c4-af98-42ec-aa8a-91e493b8ecc2\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"f128dcbc-7c38-4c0c-bb92-ea94238c76f4\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"9f2e7f31-906c-4a1a-afcd-90dffb039771\"\r\n}" + \"c6da64f8-0b11-4ef8-818e-330fcbb353da\"\r\n}" headers: cache-control: - no-cache content-length: - - '1343' + - '1342' content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:37 GMT + - Thu, 15 Apr 2021 06:11:10 GMT expires: - '-1' pragma: @@ -2029,7 +2029,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 @@ -2057,11 +2057,11 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3\",\r\n - \ \"sourceUniqueId\": \"c0721944-0e8a-40ff-a2c2-d8c8e82ae0c7\"\r\n },\r\n + \ \"sourceUniqueId\": \"c2034da4-d9df-43f0-8bd4-43830e55c4c5\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:26:35.9683509+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-15T06:11:08.3867209+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"0c2e95c4-af98-42ec-aa8a-91e493b8ecc2\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"f128dcbc-7c38-4c0c-bb92-ea94238c76f4\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -2071,7 +2071,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:38 GMT + - Thu, 15 Apr 2021 06:11:10 GMT expires: - '-1' pragma: @@ -2088,7 +2088,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14960,Microsoft.Compute/LowCostGet30Min;119960 + - Microsoft.Compute/LowCostGet3Min;14981,Microsoft.Compute/LowCostGet30Min;119981 status: code: 200 message: OK @@ -2115,7 +2115,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2124,7 +2124,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:39 GMT + - Thu, 15 Apr 2021 06:11:11 GMT expires: - '-1' pragma: @@ -2164,7 +2164,7 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0\",\r\n @@ -2173,7 +2173,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-13T07:26:45.4122769+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-15T06:11:20.8014564+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"hostCaching\": \"ReadWrite\",\r\n \ \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2186,7 +2186,7 @@ interactions: \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/753b0b57-742b-4f4e-92a7-fbfbd38c3a8d?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/92fec6a6-0d8a-45d9-99f0-494b442fd458?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -2194,7 +2194,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:47 GMT + - Thu, 15 Apr 2021 06:11:22 GMT expires: - '-1' pragma: @@ -2230,11 +2230,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/753b0b57-742b-4f4e-92a7-fbfbd38c3a8d?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/92fec6a6-0d8a-45d9-99f0-494b442fd458?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-13T07:26:45.4122769+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"753b0b57-742b-4f4e-92a7-fbfbd38c3a8d\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:11:20.7858293+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"92fec6a6-0d8a-45d9-99f0-494b442fd458\"\r\n}" headers: cache-control: - no-cache @@ -2243,7 +2243,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:27:47 GMT + - Thu, 15 Apr 2021 06:12:22 GMT expires: - '-1' pragma: @@ -2260,7 +2260,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4195 + - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4194 status: code: 200 message: OK @@ -2281,11 +2281,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/753b0b57-742b-4f4e-92a7-fbfbd38c3a8d?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/92fec6a6-0d8a-45d9-99f0-494b442fd458?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-13T07:26:45.4122769+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"753b0b57-742b-4f4e-92a7-fbfbd38c3a8d\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:11:20.7858293+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"92fec6a6-0d8a-45d9-99f0-494b442fd458\"\r\n}" headers: cache-control: - no-cache @@ -2294,7 +2294,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:28:49 GMT + - Thu, 15 Apr 2021 06:13:23 GMT expires: - '-1' pragma: @@ -2311,7 +2311,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4193 + - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4192 status: code: 200 message: OK @@ -2332,11 +2332,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/753b0b57-742b-4f4e-92a7-fbfbd38c3a8d?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/92fec6a6-0d8a-45d9-99f0-494b442fd458?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-13T07:26:45.4122769+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"753b0b57-742b-4f4e-92a7-fbfbd38c3a8d\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:11:20.7858293+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"92fec6a6-0d8a-45d9-99f0-494b442fd458\"\r\n}" headers: cache-control: - no-cache @@ -2345,7 +2345,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:29:48 GMT + - Thu, 15 Apr 2021 06:14:24 GMT expires: - '-1' pragma: @@ -2362,7 +2362,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4191 + - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4190 status: code: 200 message: OK @@ -2383,11 +2383,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/753b0b57-742b-4f4e-92a7-fbfbd38c3a8d?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/92fec6a6-0d8a-45d9-99f0-494b442fd458?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-13T07:26:45.4122769+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"753b0b57-742b-4f4e-92a7-fbfbd38c3a8d\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:11:20.7858293+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"92fec6a6-0d8a-45d9-99f0-494b442fd458\"\r\n}" headers: cache-control: - no-cache @@ -2396,7 +2396,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:30:50 GMT + - Thu, 15 Apr 2021 06:15:24 GMT expires: - '-1' pragma: @@ -2434,11 +2434,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/753b0b57-742b-4f4e-92a7-fbfbd38c3a8d?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/92fec6a6-0d8a-45d9-99f0-494b442fd458?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-13T07:26:45.4122769+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"753b0b57-742b-4f4e-92a7-fbfbd38c3a8d\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:11:20.7858293+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"92fec6a6-0d8a-45d9-99f0-494b442fd458\"\r\n}" headers: cache-control: - no-cache @@ -2447,7 +2447,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:31:50 GMT + - Thu, 15 Apr 2021 06:16:24 GMT expires: - '-1' pragma: @@ -2485,21 +2485,21 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/753b0b57-742b-4f4e-92a7-fbfbd38c3a8d?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/92fec6a6-0d8a-45d9-99f0-494b442fd458?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-13T07:26:45.4122769+00:00\",\r\n \"endTime\": - \"2021-04-13T07:32:01.3620273+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"753b0b57-742b-4f4e-92a7-fbfbd38c3a8d\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:11:20.7858293+00:00\",\r\n \"endTime\": + \"2021-04-15T06:17:22.331107+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"92fec6a6-0d8a-45d9-99f0-494b442fd458\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:32:52 GMT + - Thu, 15 Apr 2021 06:17:25 GMT expires: - '-1' pragma: @@ -2537,7 +2537,7 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0\",\r\n @@ -2546,7 +2546,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-13T07:26:45.4122769+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-15T06:11:20.8014564+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 10,\r\n \"hostCaching\": \"ReadWrite\",\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2566,7 +2566,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:32:52 GMT + - Thu, 15 Apr 2021 06:17:26 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_image_build_shared_image.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_image_build_shared_image.yaml index fde7c2a3da9..ad828774813 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_image_build_shared_image.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_image_build_shared_image.yaml @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-22T02:52:13Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 02:52:16 GMT + - Fri, 09 Apr 2021 03:51:00 GMT expires: - '-1' pragma: @@ -62,15 +62,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-msi/0.2.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-msi/0.2.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1?api-version=2015-08-31-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1","name":"ide1","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus","tags":{},"properties":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"677aec5b-31a6-41e0-8d4c-2acccfa88c74","clientId":"98abfd59-3fb3-4a09-ae18-50b7f917b4d9","clientSecretUrl":"https://control-westus.identity.azure.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1/credentials?tid=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a&oid=677aec5b-31a6-41e0-8d4c-2acccfa88c74&aid=98abfd59-3fb3-4a09-ae18-50b7f917b4d9"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1","name":"ide1","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus","tags":{},"properties":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"80f6582d-515b-4f3f-8ee4-50b303edcc28","clientId":"b37a0046-e33d-4131-8346-40e4001e71b8","clientSecretUrl":"https://control-westus.identity.azure.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1/credentials?tid=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a&oid=80f6582d-515b-4f3f-8ee4-50b303edcc28&aid=b37a0046-e33d-4131-8346-40e4001e71b8"}}' headers: cache-control: - no-cache @@ -79,7 +79,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 02:52:24 GMT + - Fri, 09 Apr 2021 03:51:06 GMT expires: - '-1' location: @@ -91,7 +91,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -109,8 +109,8 @@ interactions: ParameterSetName: - --assignee --role --scope User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET @@ -128,7 +128,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 02:53:09 GMT + - Fri, 09 Apr 2021 03:51:52 GMT expires: - '-1' pragma: @@ -160,15 +160,15 @@ interactions: ParameterSetName: - --assignee --role --scope User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%2798abfd59-3fb3-4a09-ae18-50b7f917b4d9%27%29&api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27b37a0046-e33d-4131-8346-40e4001e71b8%27%29&api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"677aec5b-31a6-41e0-8d4c-2acccfa88c74","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":["isExplicit=True","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1"],"appDisplayName":null,"appId":"98abfd59-3fb3-4a09-ae18-50b7f917b4d9","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"ide1","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"BE6570B8B0D24F572D007DE4A80E0DC19555BDCA","endDate":"2021-05-23T02:47:00Z","keyId":"4d4f67d2-cea5-4bdf-bcde-8d7c938a3428","startDate":"2021-02-22T02:47:00Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["98abfd59-3fb3-4a09-ae18-50b7f917b4d9","https://identity.azure.net/TLugDfusXCa98Tuyx3e6WiQ8OJQou2o3eG6NJDyMO/0="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null}]}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"80f6582d-515b-4f3f-8ee4-50b303edcc28","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":["isExplicit=True","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1"],"appDisplayName":null,"appId":"b37a0046-e33d-4131-8346-40e4001e71b8","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"ide1","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"DCEBEAAD4534F11AF381099DB56430122562127E","endDate":"2021-07-08T03:46:00Z","keyId":"ceed056a-3619-490d-8841-9a7bf697f2fc","startDate":"2021-04-09T03:46:00Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["b37a0046-e33d-4131-8346-40e4001e71b8","https://identity.azure.net//Ns9DGGfcspLgAl19UXLFwf0xRAXDoQBn6roWl8MiUU="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' @@ -181,19 +181,19 @@ interactions: dataserviceversion: - 3.0; date: - - Mon, 22 Feb 2021 02:53:12 GMT + - Fri, 09 Apr 2021 03:51:54 GMT duration: - - '2866457' + - '2697597' expires: - '-1' ocp-aad-diagnostics-server-name: - - HG673A//CUsaBJjYU7dGqFuMFMGBdHQeLAu9+IIx3hY= + - hn4+Y/ki4Au2E6lYATTJU9ebCK1i2JxaIJcTRdfG6tY= ocp-aad-session-key: - - 5uEGMmUCgO7mIbpfLzfG7kANB-5a9Ehn6OioxF8TiGPrNMTeTs7F5fsM1z2Fbu5iay2_9I7YmOGK2_cPjXj8ZTfdrbbqzRZ_9dLZnDSR4OF2N3_cVOqkEIa8_v6lddzx.Tv-auhWI7zD2Wjf2AqythzIASrTSjJcx1t4sRzNhdB0 + - a10vXlvuUO_GNP6ylbf-k1x81FGmdbbiEVHd7UeDGRwJ7MNJRUESOyAEYm-NDCIXFl_XXrd_DjfcphiECy4qTwbLnvoPRMrS3E6cZUS39O5p5UwqZHtNFlhsHbZpg5xq.5_boS1wQq5pYS-SialdRjka1PQAeq_K3M_57rY3vuf8 pragma: - no-cache request-id: - - 365ad9a1-1d98-4b2b-b5e4-8d55c667c560 + - 2336f8e9-6c1c-48a4-b66f-8d10d26dd3ed strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -209,7 +209,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c", - "principalId": "677aec5b-31a6-41e0-8d4c-2acccfa88c74"}}' + "principalId": "80f6582d-515b-4f3f-8ee4-50b303edcc28"}}' headers: Accept: - application/json @@ -228,15 +228,15 @@ interactions: ParameterSetName: - --assignee --role --scope User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"677aec5b-31a6-41e0-8d4c-2acccfa88c74","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","condition":null,"conditionVersion":null,"createdOn":"2021-02-22T02:53:12.6906760Z","updatedOn":"2021-02-22T02:53:13.6256891Z","createdBy":null,"updatedBy":"0a592c45-613e-4f1b-9023-7c4414fd53bf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"80f6582d-515b-4f3f-8ee4-50b303edcc28","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","condition":null,"conditionVersion":null,"createdOn":"2021-04-09T03:51:54.3302607Z","updatedOn":"2021-04-09T03:51:55.8887239Z","createdBy":null,"updatedBy":"181c08fa-7ac8-48a6-a869-342ab74566a4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' headers: cache-control: - no-cache @@ -245,7 +245,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 02:53:14 GMT + - Fri, 09 Apr 2021 03:51:58 GMT expires: - '-1' pragma: @@ -257,7 +257,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -275,15 +275,15 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-22T02:52:13Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -292,7 +292,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 02:53:16 GMT + - Fri, 09 Apr 2021 03:51:59 GMT expires: - '-1' pragma: @@ -324,7 +324,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003?api-version=2019-12-01 response: @@ -332,11 +332,11 @@ interactions: string: "{\r\n \"name\": \"ib_sig000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-IB_SIGVGTV\"\r\n },\r\n \"provisioningState\": + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-IB_SIG2JMC\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/bff8c096-f95a-491d-81f5-0b33fa0e587e?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/126c5d5f-af54-42d9-92d7-59fe3ebbaf32?api-version=2019-12-01 cache-control: - no-cache content-length: @@ -344,7 +344,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 02:53:21 GMT + - Fri, 09 Apr 2021 03:52:04 GMT expires: - '-1' pragma: @@ -357,9 +357,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299 + - Microsoft.Compute/CreateUpdateGallery3Min;47,Microsoft.Compute/CreateUpdateGallery30Min;295 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -377,14 +377,14 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/bff8c096-f95a-491d-81f5-0b33fa0e587e?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/126c5d5f-af54-42d9-92d7-59fe3ebbaf32?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-02-22T02:53:20.6055437+00:00\",\r\n \"endTime\": - \"2021-02-22T02:53:20.8399128+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"bff8c096-f95a-491d-81f5-0b33fa0e587e\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T03:52:04.0121892+00:00\",\r\n \"endTime\": + \"2021-04-09T03:52:04.1059384+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"126c5d5f-af54-42d9-92d7-59fe3ebbaf32\"\r\n}" headers: cache-control: - no-cache @@ -393,7 +393,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 02:53:52 GMT + - Fri, 09 Apr 2021 03:52:35 GMT expires: - '-1' pragma: @@ -410,7 +410,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4198 + - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4108 status: code: 200 message: OK @@ -428,7 +428,7 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003?api-version=2019-12-01 response: @@ -436,7 +436,7 @@ interactions: string: "{\r\n \"name\": \"ib_sig000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-IB_SIGVGTV\"\r\n },\r\n \"provisioningState\": + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-IB_SIG2JMC\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -446,7 +446,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 02:53:52 GMT + - Fri, 09 Apr 2021 03:52:35 GMT expires: - '-1' pragma: @@ -463,7 +463,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2496 + - Microsoft.Compute/GetGallery3Min;334,Microsoft.Compute/GetGallery30Min;2452 status: code: 200 message: OK @@ -481,15 +481,15 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-22T02:52:13Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -498,7 +498,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 02:53:53 GMT + - Fri, 09 Apr 2021 03:52:36 GMT expires: - '-1' pragma: @@ -532,7 +532,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1?api-version=2020-09-30 response: @@ -546,7 +546,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/37d5e4bb-4485-4d3f-a3a0-f4b99730d30f?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/30055e7a-dff9-4226-8fa9-6702246de536?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -554,7 +554,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 02:54:00 GMT + - Fri, 09 Apr 2021 03:52:42 GMT expires: - '-1' pragma: @@ -567,7 +567,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;749 + - Microsoft.Compute/CreateUpdateGalleryImage3Min;147,Microsoft.Compute/CreateUpdateGalleryImage30Min;744 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -587,23 +587,23 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/37d5e4bb-4485-4d3f-a3a0-f4b99730d30f?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/30055e7a-dff9-4226-8fa9-6702246de536?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-02-22T02:53:59.355777+00:00\",\r\n \"endTime\": - \"2021-02-22T02:53:59.4495465+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"37d5e4bb-4485-4d3f-a3a0-f4b99730d30f\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-09T03:52:41.8560049+00:00\",\r\n \"endTime\": + \"2021-04-09T03:52:41.9653741+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"30055e7a-dff9-4226-8fa9-6702246de536\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 02:54:30 GMT + - Fri, 09 Apr 2021 03:53:12 GMT expires: - '-1' pragma: @@ -620,7 +620,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4196 + - Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4105 status: code: 200 message: OK @@ -638,7 +638,7 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1?api-version=2020-09-30 response: @@ -658,7 +658,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 02:54:30 GMT + - Fri, 09 Apr 2021 03:53:12 GMT expires: - '-1' pragma: @@ -675,7 +675,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;596,Microsoft.Compute/GetGalleryImage30Min;2996 + - Microsoft.Compute/GetGalleryImage3Min;586,Microsoft.Compute/GetGalleryImage30Min;2947 status: code: 200 message: OK @@ -693,15 +693,15 @@ interactions: ParameterSetName: - -n -g --scripts --image-source --identity --defer User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-22T02:52:13Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -710,7 +710,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 02:54:32 GMT + - Fri, 09 Apr 2021 03:53:13 GMT expires: - '-1' pragma: @@ -738,8 +738,8 @@ interactions: ParameterSetName: - -n -g --scripts --image-source --identity --defer User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET @@ -770,7 +770,9 @@ interactions: Kong","pairedRegion":[{"name":"southeastasia","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasia"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast","name":"japaneast","displayName":"Japan East","regionalDisplayName":"(Asia Pacific) Japan East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"139.77","latitude":"35.68","physicalLocation":"Tokyo, - Saitama","pairedRegion":[{"name":"japanwest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral","name":"koreacentral","displayName":"Korea + Saitama","pairedRegion":[{"name":"japanwest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiawest","name":"jioindiawest","displayName":"JIO + India West","regionalDisplayName":"(Asia Pacific) JIO India West","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia + Pacific","longitude":"70.05773","latitude":"22.470701","physicalLocation":"Jamnagar","pairedRegion":[{"name":"jioindiacentral","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiacentral"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral","name":"koreacentral","displayName":"Korea Central","regionalDisplayName":"(Asia Pacific) Korea Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"126.9780","latitude":"37.5665","physicalLocation":"Seoul","pairedRegion":[{"name":"koreasouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadacentral","name":"canadacentral","displayName":"Canada Central","regionalDisplayName":"(Canada) Canada Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Canada","longitude":"-79.383","latitude":"43.653","physicalLocation":"Toronto","pairedRegion":[{"name":"canadaeast","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadaeast"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francecentral","name":"francecentral","displayName":"France @@ -810,7 +812,9 @@ interactions: Southeast","regionalDisplayName":"(Asia Pacific) Australia Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"144.9631","latitude":"-37.8136","physicalLocation":"Victoria","pairedRegion":[{"name":"australiaeast","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiaeast"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest","name":"japanwest","displayName":"Japan West","regionalDisplayName":"(Asia Pacific) Japan West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia - Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth","name":"koreasouth","displayName":"Korea + Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiacentral","name":"jioindiacentral","displayName":"JIO + India Central","regionalDisplayName":"(Asia Pacific) JIO India Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia + Pacific","longitude":"79.08886","latitude":"21.146633","physicalLocation":"Nagpur","pairedRegion":[{"name":"jioindiawest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiawest"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth","name":"koreasouth","displayName":"Korea South","regionalDisplayName":"(Asia Pacific) Korea South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"129.0756","latitude":"35.1796","physicalLocation":"Busan","pairedRegion":[{"name":"koreacentral","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia","name":"southindia","displayName":"South India","regionalDisplayName":"(Asia Pacific) South India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia @@ -832,11 +836,11 @@ interactions: cache-control: - no-cache content-length: - - '25532' + - '26522' content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 02:54:33 GMT + - Fri, 09 Apr 2021 03:53:14 GMT expires: - '-1' pragma: @@ -865,8 +869,8 @@ interactions: - -n -g --gallery-name --gallery-image-definition --gallery-replication-regions --defer User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET @@ -897,7 +901,9 @@ interactions: Kong","pairedRegion":[{"name":"southeastasia","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasia"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast","name":"japaneast","displayName":"Japan East","regionalDisplayName":"(Asia Pacific) Japan East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"139.77","latitude":"35.68","physicalLocation":"Tokyo, - Saitama","pairedRegion":[{"name":"japanwest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral","name":"koreacentral","displayName":"Korea + Saitama","pairedRegion":[{"name":"japanwest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiawest","name":"jioindiawest","displayName":"JIO + India West","regionalDisplayName":"(Asia Pacific) JIO India West","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia + Pacific","longitude":"70.05773","latitude":"22.470701","physicalLocation":"Jamnagar","pairedRegion":[{"name":"jioindiacentral","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiacentral"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral","name":"koreacentral","displayName":"Korea Central","regionalDisplayName":"(Asia Pacific) Korea Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"126.9780","latitude":"37.5665","physicalLocation":"Seoul","pairedRegion":[{"name":"koreasouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadacentral","name":"canadacentral","displayName":"Canada Central","regionalDisplayName":"(Canada) Canada Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Canada","longitude":"-79.383","latitude":"43.653","physicalLocation":"Toronto","pairedRegion":[{"name":"canadaeast","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadaeast"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francecentral","name":"francecentral","displayName":"France @@ -937,7 +943,9 @@ interactions: Southeast","regionalDisplayName":"(Asia Pacific) Australia Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"144.9631","latitude":"-37.8136","physicalLocation":"Victoria","pairedRegion":[{"name":"australiaeast","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiaeast"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest","name":"japanwest","displayName":"Japan West","regionalDisplayName":"(Asia Pacific) Japan West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia - Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth","name":"koreasouth","displayName":"Korea + Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiacentral","name":"jioindiacentral","displayName":"JIO + India Central","regionalDisplayName":"(Asia Pacific) JIO India Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia + Pacific","longitude":"79.08886","latitude":"21.146633","physicalLocation":"Nagpur","pairedRegion":[{"name":"jioindiawest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiawest"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth","name":"koreasouth","displayName":"Korea South","regionalDisplayName":"(Asia Pacific) Korea South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"129.0756","latitude":"35.1796","physicalLocation":"Busan","pairedRegion":[{"name":"koreacentral","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia","name":"southindia","displayName":"South India","regionalDisplayName":"(Asia Pacific) South India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia @@ -959,11 +967,11 @@ interactions: cache-control: - no-cache content-length: - - '25532' + - '26522' content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 02:54:34 GMT + - Fri, 09 Apr 2021 03:53:15 GMT expires: - '-1' pragma: @@ -1003,8 +1011,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: PUT @@ -1027,7 +1035,7 @@ interactions: \"location\": \"westus\",\n \"tags\": {}\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/03dc3c61-9398-48cc-9303-d8a9a0bbdf94?api-version=2020-02-14 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/14031a56-5632-44c6-81f8-6a4a721b3f59?api-version=2020-02-14 cache-control: - no-cache content-length: @@ -1035,7 +1043,7 @@ interactions: content-type: - application/json date: - - Mon, 22 Feb 2021 02:54:40 GMT + - Fri, 09 Apr 2021 03:53:25 GMT expires: - '-1' pragma: @@ -1065,15 +1073,63 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/14031a56-5632-44c6-81f8-6a4a721b3f59?api-version=2020-02-14 + response: + body: + string: "{\n \"name\": \"14031A56-5632-44C6-81F8-6A4A721B3F59\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:53:23.3333333Z\"\n}" + headers: + cache-control: + - no-cache + content-length: + - '122' + content-type: + - application/json + date: + - Fri, 09 Apr 2021 03:53:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - image builder update + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/03dc3c61-9398-48cc-9303-d8a9a0bbdf94?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/14031a56-5632-44c6-81f8-6a4a721b3f59?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"03DC3C61-9398-48CC-9303-D8A9A0BBDF94\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-02-22T02:54:40.1590039Z\",\n \"endTime\": - \"2021-02-22T02:55:11.5370327Z\"\n}" + string: "{\n \"name\": \"14031A56-5632-44C6-81F8-6A4A721B3F59\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-04-09T03:53:23.3333333Z\",\n \"endTime\": + \"2021-04-09T03:53:58.0031026Z\"\n}" headers: cache-control: - no-cache @@ -1082,7 +1138,7 @@ interactions: content-type: - application/json date: - - Mon, 22 Feb 2021 02:55:13 GMT + - Fri, 09 Apr 2021 03:54:26 GMT expires: - '-1' pragma: @@ -1114,8 +1170,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template01?api-version=2020-02-14 response: @@ -1132,8 +1188,8 @@ interactions: \"Succeeded\",\n \"buildTimeoutInMinutes\": 0,\n \"vmProfile\": {\n \"vmSize\": \"\",\n \"osDiskSizeGB\": 0\n }\n },\n \"identity\": {\n \"type\": \"UserAssigned\",\n \ \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1\": - {\n \"principalId\": \"677aec5b-31a6-41e0-8d4c-2acccfa88c74\",\n \"clientId\": - \"98abfd59-3fb3-4a09-ae18-50b7f917b4d9\"\n }\n }\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template01\",\n + {\n \"principalId\": \"80f6582d-515b-4f3f-8ee4-50b303edcc28\",\n \"clientId\": + \"b37a0046-e33d-4131-8346-40e4001e71b8\"\n }\n }\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template01\",\n \"name\": \"template01\",\n \"type\": \"Microsoft.VirtualMachineImages/imageTemplates\",\n \"location\": \"westus\",\n \"tags\": {}\n}" headers: @@ -1144,7 +1200,7 @@ interactions: content-type: - application/json date: - - Mon, 22 Feb 2021 02:55:13 GMT + - Fri, 09 Apr 2021 03:54:27 GMT expires: - '-1' pragma: @@ -1178,8 +1234,8 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: POST @@ -1189,17 +1245,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 cache-control: - no-cache content-length: - '0' date: - - Mon, 22 Feb 2021 02:55:16 GMT + - Fri, 09 Apr 2021 03:54:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 pragma: - no-cache server: @@ -1227,14 +1283,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache @@ -1243,7 +1299,7 @@ interactions: content-type: - application/json date: - - Mon, 22 Feb 2021 02:55:46 GMT + - Fri, 09 Apr 2021 03:55:01 GMT expires: - '-1' pragma: @@ -1275,14 +1331,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache @@ -1291,7 +1347,7 @@ interactions: content-type: - application/json date: - - Mon, 22 Feb 2021 02:56:17 GMT + - Fri, 09 Apr 2021 03:55:32 GMT expires: - '-1' pragma: @@ -1323,14 +1379,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache @@ -1339,7 +1395,7 @@ interactions: content-type: - application/json date: - - Mon, 22 Feb 2021 02:56:47 GMT + - Fri, 09 Apr 2021 03:56:03 GMT expires: - '-1' pragma: @@ -1371,14 +1427,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache @@ -1387,7 +1443,7 @@ interactions: content-type: - application/json date: - - Mon, 22 Feb 2021 02:57:18 GMT + - Fri, 09 Apr 2021 03:56:33 GMT expires: - '-1' pragma: @@ -1419,14 +1475,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache @@ -1435,7 +1491,7 @@ interactions: content-type: - application/json date: - - Mon, 22 Feb 2021 02:57:48 GMT + - Fri, 09 Apr 2021 03:57:03 GMT expires: - '-1' pragma: @@ -1467,14 +1523,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache @@ -1483,7 +1539,7 @@ interactions: content-type: - application/json date: - - Mon, 22 Feb 2021 02:58:19 GMT + - Fri, 09 Apr 2021 03:57:34 GMT expires: - '-1' pragma: @@ -1515,14 +1571,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache @@ -1531,7 +1587,7 @@ interactions: content-type: - application/json date: - - Mon, 22 Feb 2021 02:58:50 GMT + - Fri, 09 Apr 2021 03:58:05 GMT expires: - '-1' pragma: @@ -1563,14 +1619,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache @@ -1579,7 +1635,7 @@ interactions: content-type: - application/json date: - - Mon, 22 Feb 2021 02:59:20 GMT + - Fri, 09 Apr 2021 03:58:35 GMT expires: - '-1' pragma: @@ -1611,14 +1667,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache @@ -1627,7 +1683,7 @@ interactions: content-type: - application/json date: - - Mon, 22 Feb 2021 02:59:50 GMT + - Fri, 09 Apr 2021 03:59:06 GMT expires: - '-1' pragma: @@ -1659,14 +1715,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache @@ -1675,7 +1731,7 @@ interactions: content-type: - application/json date: - - Mon, 22 Feb 2021 03:00:22 GMT + - Fri, 09 Apr 2021 03:59:36 GMT expires: - '-1' pragma: @@ -1707,14 +1763,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache @@ -1723,7 +1779,7 @@ interactions: content-type: - application/json date: - - Mon, 22 Feb 2021 03:00:52 GMT + - Fri, 09 Apr 2021 04:00:07 GMT expires: - '-1' pragma: @@ -1755,14 +1811,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache @@ -1771,7 +1827,7 @@ interactions: content-type: - application/json date: - - Mon, 22 Feb 2021 03:01:23 GMT + - Fri, 09 Apr 2021 04:00:38 GMT expires: - '-1' pragma: @@ -1803,14 +1859,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache @@ -1819,7 +1875,7 @@ interactions: content-type: - application/json date: - - Mon, 22 Feb 2021 03:01:53 GMT + - Fri, 09 Apr 2021 04:01:08 GMT expires: - '-1' pragma: @@ -1851,14 +1907,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache @@ -1867,7 +1923,7 @@ interactions: content-type: - application/json date: - - Mon, 22 Feb 2021 03:02:23 GMT + - Fri, 09 Apr 2021 04:01:39 GMT expires: - '-1' pragma: @@ -1899,14 +1955,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache @@ -1915,7 +1971,7 @@ interactions: content-type: - application/json date: - - Mon, 22 Feb 2021 03:02:54 GMT + - Fri, 09 Apr 2021 04:02:09 GMT expires: - '-1' pragma: @@ -1947,14 +2003,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache @@ -1963,7 +2019,7 @@ interactions: content-type: - application/json date: - - Mon, 22 Feb 2021 03:03:24 GMT + - Fri, 09 Apr 2021 04:02:40 GMT expires: - '-1' pragma: @@ -1995,14 +2051,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache @@ -2011,7 +2067,7 @@ interactions: content-type: - application/json date: - - Mon, 22 Feb 2021 03:03:55 GMT + - Fri, 09 Apr 2021 04:03:10 GMT expires: - '-1' pragma: @@ -2043,14 +2099,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache @@ -2059,7 +2115,7 @@ interactions: content-type: - application/json date: - - Mon, 22 Feb 2021 03:04:26 GMT + - Fri, 09 Apr 2021 04:03:41 GMT expires: - '-1' pragma: @@ -2091,14 +2147,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache @@ -2107,7 +2163,7 @@ interactions: content-type: - application/json date: - - Mon, 22 Feb 2021 03:04:56 GMT + - Fri, 09 Apr 2021 04:04:12 GMT expires: - '-1' pragma: @@ -2139,14 +2195,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache @@ -2155,7 +2211,7 @@ interactions: content-type: - application/json date: - - Mon, 22 Feb 2021 03:05:27 GMT + - Fri, 09 Apr 2021 04:04:42 GMT expires: - '-1' pragma: @@ -2187,14 +2243,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache @@ -2203,7 +2259,7 @@ interactions: content-type: - application/json date: - - Mon, 22 Feb 2021 03:05:58 GMT + - Fri, 09 Apr 2021 04:05:13 GMT expires: - '-1' pragma: @@ -2235,14 +2291,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache @@ -2251,7 +2307,7 @@ interactions: content-type: - application/json date: - - Mon, 22 Feb 2021 03:06:29 GMT + - Fri, 09 Apr 2021 04:05:44 GMT expires: - '-1' pragma: @@ -2283,14 +2339,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache @@ -2299,7 +2355,7 @@ interactions: content-type: - application/json date: - - Mon, 22 Feb 2021 03:06:59 GMT + - Fri, 09 Apr 2021 04:06:14 GMT expires: - '-1' pragma: @@ -2331,14 +2387,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache @@ -2347,7 +2403,7 @@ interactions: content-type: - application/json date: - - Mon, 22 Feb 2021 03:07:29 GMT + - Fri, 09 Apr 2021 04:06:45 GMT expires: - '-1' pragma: @@ -2379,14 +2435,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache @@ -2395,7 +2451,7 @@ interactions: content-type: - application/json date: - - Mon, 22 Feb 2021 03:07:59 GMT + - Fri, 09 Apr 2021 04:07:15 GMT expires: - '-1' pragma: @@ -2427,14 +2483,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache @@ -2443,7 +2499,7 @@ interactions: content-type: - application/json date: - - Mon, 22 Feb 2021 03:08:30 GMT + - Fri, 09 Apr 2021 04:07:46 GMT expires: - '-1' pragma: @@ -2475,14 +2531,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache @@ -2491,7 +2547,7 @@ interactions: content-type: - application/json date: - - Mon, 22 Feb 2021 03:09:01 GMT + - Fri, 09 Apr 2021 04:08:16 GMT expires: - '-1' pragma: @@ -2523,14 +2579,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache @@ -2539,7 +2595,7 @@ interactions: content-type: - application/json date: - - Mon, 22 Feb 2021 03:09:31 GMT + - Fri, 09 Apr 2021 04:08:47 GMT expires: - '-1' pragma: @@ -2571,14 +2627,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache @@ -2587,7 +2643,7 @@ interactions: content-type: - application/json date: - - Mon, 22 Feb 2021 03:10:02 GMT + - Fri, 09 Apr 2021 04:09:18 GMT expires: - '-1' pragma: @@ -2619,14 +2675,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache @@ -2635,7 +2691,7 @@ interactions: content-type: - application/json date: - - Mon, 22 Feb 2021 03:10:33 GMT + - Fri, 09 Apr 2021 04:09:48 GMT expires: - '-1' pragma: @@ -2667,14 +2723,14 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" headers: cache-control: - no-cache @@ -2683,7 +2739,7 @@ interactions: content-type: - application/json date: - - Mon, 22 Feb 2021 03:11:03 GMT + - Fri, 09 Apr 2021 04:10:19 GMT expires: - '-1' pragma: @@ -2715,15 +2771,159 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\",\n \"endTime\": - \"2021-02-22T03:11:33.9585908Z\"\n}" + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" + headers: + cache-control: + - no-cache + content-length: + - '122' + content-type: + - application/json + date: + - Fri, 09 Apr 2021 04:10:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - image builder run + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 + response: + body: + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" + headers: + cache-control: + - no-cache + content-length: + - '122' + content-type: + - application/json + date: + - Fri, 09 Apr 2021 04:11:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - image builder run + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 + response: + body: + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}" + headers: + cache-control: + - no-cache + content-length: + - '122' + content-type: + - application/json + date: + - Fri, 09 Apr 2021 04:11:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - image builder run + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14 + response: + body: + string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\",\n \"endTime\": + \"2021-04-09T04:12:04.2225932Z\"\n}" headers: cache-control: - no-cache @@ -2732,7 +2932,7 @@ interactions: content-type: - application/json date: - - Mon, 22 Feb 2021 03:11:34 GMT + - Fri, 09 Apr 2021 04:12:21 GMT expires: - '-1' pragma: @@ -2764,26 +2964,26 @@ interactions: ParameterSetName: - -n -g --output-name User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template01/runOutputs/image1?api-version=2020-02-14 response: body: - string: "{\n \"properties\": {\n \"artifactId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24627.7817\",\n + string: "{\n \"properties\": {\n \"artifactId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24687.53687\",\n \ \"provisioningState\": \"Succeeded\"\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template01/runOutputs/image1\",\n \"name\": \"image1\",\n \"type\": \"Microsoft.VirtualMachineImages/imageTemplates/runOutputs\"\n}" headers: cache-control: - no-cache content-length: - - '631' + - '632' content-type: - application/json date: - - Mon, 22 Feb 2021 03:11:35 GMT + - Fri, 09 Apr 2021 04:12:23 GMT expires: - '-1' pragma: @@ -2815,15 +3015,15 @@ interactions: ParameterSetName: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-22T02:52:13Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2832,7 +3032,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 03:11:35 GMT + - Fri, 09 Apr 2021 04:12:24 GMT expires: - '-1' pragma: @@ -2860,7 +3060,7 @@ interactions: ParameterSetName: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1?api-version=2020-09-30 response: @@ -2880,7 +3080,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 03:11:36 GMT + - Fri, 09 Apr 2021 04:12:24 GMT expires: - '-1' pragma: @@ -2897,7 +3097,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;599,Microsoft.Compute/GetGalleryImage30Min;2987 + - Microsoft.Compute/GetGalleryImage3Min;597,Microsoft.Compute/GetGalleryImage30Min;2949 status: code: 200 message: OK @@ -2915,21 +3115,21 @@ interactions: ParameterSetName: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24627.7817?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24687.53687?api-version=2020-09-30 response: body: - string: "{\r\n \"name\": \"0.24627.7817\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24627.7817\",\r\n + string: "{\r\n \"name\": \"0.24687.53687\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24687.53687\",\r\n \ \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": - \"westus\",\r\n \"tags\": {\r\n \"correlationId\": \"af8a9de1-31cf-44c1-8d99-95cb05c2036f\"\r\n + \"westus\",\r\n \"tags\": {\r\n \"correlationId\": \"9d394cb3-e16d-4af0-8b9f-5f3e4de03f13\"\r\n \ },\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n \ ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n - \ \"publishedDate\": \"2021-02-22T03:01:30.8118886+00:00\",\r\n \"storageAccountType\": + \ \"publishedDate\": \"2021-04-09T04:02:00.7017234+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IT_img_tmpl_sigsjytdmnod72md6g3opg6ewauhf3t_53b8f212-d9ac-4702-87a1-0608c76ca391/providers/Microsoft.Compute/images/IntermediateSnapImg_af8a9de1-31cf-44c1-8d99-95cb05c2036f_0\"\r\n + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IT_img_tmpl_sig4kr6gnzxpbdtvqghtlqptana6mku_85bb2f24-36e2-47c0-83ae-2f55a4223ac3/providers/Microsoft.Compute/images/IntermediateSnapImg_9d394cb3-e16d-4af0-8b9f-5f3e4de03f13_0\"\r\n \ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" @@ -2937,11 +3137,11 @@ interactions: cache-control: - no-cache content-length: - - '1305' + - '1307' content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 03:11:37 GMT + - Fri, 09 Apr 2021 04:12:25 GMT expires: - '-1' pragma: @@ -2958,7 +3158,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1994,Microsoft.Compute/GetGalleryImageVersion30Min;9992 + - Microsoft.Compute/GetGalleryImageVersion3Min;1992,Microsoft.Compute/GetGalleryImageVersion30Min;9951 status: code: 200 message: OK @@ -2976,7 +3176,7 @@ interactions: ParameterSetName: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 response: @@ -2990,7 +3190,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 03:11:37 GMT + - Fri, 09 Apr 2021 04:12:25 GMT expires: - '-1' pragma: @@ -3032,12 +3232,12 @@ interactions: {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic"}]}, "storageProfile": {"osDisk": {"createOption": "fromImage", "name": null, "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference": - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24627.7817"}}, + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24687.53687"}}, "osProfile": {"computerName": "custom-vm", "adminUsername": "azureuser", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj - fey@DESKTOP-ARGPJS4\n", "path": "/home/azureuser/.ssh/authorized_keys"}]}}}}}], - "outputs": {}}, "parameters": {}, "mode": "Incremental"}}' + fey@DESKTOP-ARGPJS4\n", "path": "/home/azureuser/.ssh/authorized_keys"}]}}}, + "securityProfile": {}}}], "outputs": {}}, "parameters": {}, "mode": "Incremental"}}' headers: Accept: - application/json @@ -3048,24 +3248,24 @@ interactions: Connection: - keep-alive Content-Length: - - '3928' + - '3952' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/vm_deploy_NOmMne4qvIkaESdmoDaNZfVow0F46aR3","name":"vm_deploy_NOmMne4qvIkaESdmoDaNZfVow0F46aR3","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17761373393567448849","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-02-22T03:11:44.1591279Z","duration":"PT2.6770805S","correlationId":"90055d61-e851-41fe-96c9-f31c2511b8c9","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/virtualNetworks/custom-vmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"custom-vmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkSecurityGroups/custom-vmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"custom-vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/publicIPAddresses/custom-vmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"custom-vmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"custom-vmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"custom-vmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"custom-vm"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/vm_deploy_GPni5MCclwXzn0o70J3IY0M6d3GYV71t","name":"vm_deploy_GPni5MCclwXzn0o70J3IY0M6d3GYV71t","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17660426104562918173","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-09T04:12:30.1410396Z","duration":"PT2.4762032S","correlationId":"f9df6429-66a9-4350-91a4-096b0a6a1164","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/virtualNetworks/custom-vmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"custom-vmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkSecurityGroups/custom-vmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"custom-vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/publicIPAddresses/custom-vmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"custom-vmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"custom-vmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"custom-vmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"custom-vm"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/vm_deploy_NOmMne4qvIkaESdmoDaNZfVow0F46aR3/operationStatuses/08585876433839955877?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/vm_deploy_GPni5MCclwXzn0o70J3IY0M6d3GYV71t/operationStatuses/08585836653378127949?api-version=2020-10-01 cache-control: - no-cache content-length: @@ -3073,7 +3273,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 03:11:45 GMT + - Fri, 09 Apr 2021 04:12:30 GMT expires: - '-1' pragma: @@ -3083,7 +3283,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -3101,10 +3301,10 @@ interactions: ParameterSetName: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585876433839955877?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836653378127949?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -3116,7 +3316,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 03:12:15 GMT + - Fri, 09 Apr 2021 04:13:03 GMT expires: - '-1' pragma: @@ -3144,10 +3344,10 @@ interactions: ParameterSetName: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585876433839955877?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836653378127949?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -3159,7 +3359,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 03:12:45 GMT + - Fri, 09 Apr 2021 04:13:33 GMT expires: - '-1' pragma: @@ -3187,10 +3387,10 @@ interactions: ParameterSetName: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585876433839955877?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836653378127949?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -3202,7 +3402,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 03:13:17 GMT + - Fri, 09 Apr 2021 04:14:03 GMT expires: - '-1' pragma: @@ -3230,10 +3430,10 @@ interactions: ParameterSetName: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585876433839955877?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836653378127949?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -3245,7 +3445,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 03:13:48 GMT + - Fri, 09 Apr 2021 04:14:34 GMT expires: - '-1' pragma: @@ -3273,13 +3473,13 @@ interactions: ParameterSetName: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/vm_deploy_NOmMne4qvIkaESdmoDaNZfVow0F46aR3","name":"vm_deploy_NOmMne4qvIkaESdmoDaNZfVow0F46aR3","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17761373393567448849","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-02-22T03:13:34.5800845Z","duration":"PT1M53.0980371S","correlationId":"90055d61-e851-41fe-96c9-f31c2511b8c9","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/virtualNetworks/custom-vmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"custom-vmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkSecurityGroups/custom-vmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"custom-vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/publicIPAddresses/custom-vmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"custom-vmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"custom-vmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"custom-vmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"custom-vm"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkSecurityGroups/custom-vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/publicIPAddresses/custom-vmPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/virtualNetworks/custom-vmVNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/vm_deploy_GPni5MCclwXzn0o70J3IY0M6d3GYV71t","name":"vm_deploy_GPni5MCclwXzn0o70J3IY0M6d3GYV71t","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17660426104562918173","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-09T04:14:12.6418343Z","duration":"PT1M44.9769979S","correlationId":"f9df6429-66a9-4350-91a4-096b0a6a1164","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/virtualNetworks/custom-vmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"custom-vmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkSecurityGroups/custom-vmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"custom-vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/publicIPAddresses/custom-vmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"custom-vmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"custom-vmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"custom-vmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"custom-vm"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkSecurityGroups/custom-vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/publicIPAddresses/custom-vmPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/virtualNetworks/custom-vmVNET"}]}}' headers: cache-control: - no-cache @@ -3288,7 +3488,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 03:13:49 GMT + - Fri, 09 Apr 2021 04:14:34 GMT expires: - '-1' pragma: @@ -3316,22 +3516,22 @@ interactions: ParameterSetName: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm?$expand=instanceView&api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"custom-vm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"8c546c62-8482-4684-8b62-2429a2657faa\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"0fd32fa3-5677-48c0-8f82-eab0b419652b\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24627.7817\",\r\n - \ \"exactVersion\": \"0.24627.7817\"\r\n },\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"custom-vm_OsDisk_1_76173987332f49f5b79050ca790efc0b\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24687.53687\",\r\n + \ \"exactVersion\": \"0.24687.53687\"\r\n },\r\n \"osDisk\": + {\r\n \"osType\": \"Linux\",\r\n \"name\": \"custom-vm_OsDisk_1_c7899724f90846c4aa306af19eee6e32\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/disks/custom-vm_OsDisk_1_76173987332f49f5b79050ca790efc0b\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/disks/custom-vm_OsDisk_1_c7899724f90846c4aa306af19eee6e32\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"custom-vm\",\r\n \ \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": {\r\n @@ -3348,16 +3548,16 @@ interactions: \ {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \ \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet - populated.\",\r\n \"time\": \"2021-02-22T03:13:49+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2021-04-09T04:14:35+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"custom-vm_OsDisk_1_76173987332f49f5b79050ca790efc0b\",\r\n \"statuses\": + \"custom-vm_OsDisk_1_c7899724f90846c4aa306af19eee6e32\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-02-22T03:12:15.6854314+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-09T04:12:49.5876436+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-02-22T03:13:27.279245+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-09T04:14:11.31012+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n \ }\r\n ]\r\n }\r\n }\r\n}" @@ -3365,11 +3565,11 @@ interactions: cache-control: - no-cache content-length: - - '3923' + - '3924' content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 03:13:49 GMT + - Fri, 09 Apr 2021 04:14:35 GMT expires: - '-1' pragma: @@ -3386,7 +3586,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31988 + - Microsoft.Compute/LowCostGet3Min;3985,Microsoft.Compute/LowCostGet30Min;31786 status: code: 200 message: OK @@ -3404,18 +3604,18 @@ interactions: ParameterSetName: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"custom-vmVMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic\",\r\n - \ \"etag\": \"W/\\\"7c157d75-9804-4805-b070-856eb3780194\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"683e0032-c633-4e67-b3ea-3fe452b7ac0a\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"c0da5358-1e8a-4806-9b87-f58e12a5f4ba\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"bd101088-dd05-4a0c-9457-c54af23e6c04\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigcustom-vm\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic/ipConfigurations/ipconfigcustom-vm\",\r\n - \ \"etag\": \"W/\\\"7c157d75-9804-4805-b070-856eb3780194\\\"\",\r\n + \ \"etag\": \"W/\\\"683e0032-c633-4e67-b3ea-3fe452b7ac0a\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -3424,8 +3624,8 @@ interactions: \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": - \"t5itqj3irlfedmzjklrmoi5e5h.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-22-48-04-DA-6A\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"ywnzowq3vbievctehfsjkoyaih.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-22-48-09-87-0E\",\r\n \"enableAcceleratedNetworking\": false,\r\n \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkSecurityGroups/custom-vmNSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -3439,9 +3639,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 03:13:50 GMT + - Fri, 09 Apr 2021 04:14:36 GMT etag: - - W/"7c157d75-9804-4805-b070-856eb3780194" + - W/"683e0032-c633-4e67-b3ea-3fe452b7ac0a" expires: - '-1' pragma: @@ -3458,7 +3658,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a2466871-d2be-415a-bab8-9de8ece3c28c + - bc496ca8-95b8-4218-8fa2-512dc7cc6677 status: code: 200 message: OK @@ -3476,16 +3676,16 @@ interactions: ParameterSetName: - --name -g --image --generate-ssh-keys --admin-username User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/publicIPAddresses/custom-vmPublicIP?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"custom-vmPublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/publicIPAddresses/custom-vmPublicIP\",\r\n - \ \"etag\": \"W/\\\"57a6557d-b111-4118-a158-42d53846647f\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"215005cd-5d3b-4951-acad-e78f615996da\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"bc900f8e-bb12-47de-8485-0be268f38ea6\",\r\n - \ \"ipAddress\": \"40.78.67.159\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"33456a4e-d1cd-4bd7-aa22-bac620be6fb6\",\r\n + \ \"ipAddress\": \"138.91.93.0\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic/ipConfigurations/ipconfigcustom-vm\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n @@ -3494,13 +3694,13 @@ interactions: cache-control: - no-cache content-length: - - '1020' + - '1019' content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 03:13:50 GMT + - Fri, 09 Apr 2021 04:14:36 GMT etag: - - W/"57a6557d-b111-4118-a158-42d53846647f" + - W/"215005cd-5d3b-4951-acad-e78f615996da" expires: - '-1' pragma: @@ -3517,7 +3717,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5301825d-ee7e-49aa-b33c-a313f337af7f + - bff01ab2-f6db-4ad1-ab32-7751943cb354 status: code: 200 message: OK @@ -3535,22 +3735,22 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.19.1 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm?api-version=2020-12-01 response: body: string: "{\r\n \"name\": \"custom-vm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"8c546c62-8482-4684-8b62-2429a2657faa\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"0fd32fa3-5677-48c0-8f82-eab0b419652b\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24627.7817\",\r\n - \ \"exactVersion\": \"0.24627.7817\"\r\n },\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"custom-vm_OsDisk_1_76173987332f49f5b79050ca790efc0b\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24687.53687\",\r\n + \ \"exactVersion\": \"0.24687.53687\"\r\n },\r\n \"osDisk\": + {\r\n \"osType\": \"Linux\",\r\n \"name\": \"custom-vm_OsDisk_1_c7899724f90846c4aa306af19eee6e32\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/disks/custom-vm_OsDisk_1_76173987332f49f5b79050ca790efc0b\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/disks/custom-vm_OsDisk_1_c7899724f90846c4aa306af19eee6e32\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"custom-vm\",\r\n \ \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": {\r\n @@ -3567,11 +3767,11 @@ interactions: cache-control: - no-cache content-length: - - '2712' + - '2714' content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 03:13:50 GMT + - Fri, 09 Apr 2021 04:14:37 GMT expires: - '-1' pragma: @@ -3588,7 +3788,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31987 + - Microsoft.Compute/LowCostGet3Min;3984,Microsoft.Compute/LowCostGet30Min;31785 status: code: 200 message: OK @@ -3606,15 +3806,15 @@ interactions: ParameterSetName: - -n -g --image-source --identity --shared-image-destinations --scripts User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-22T02:52:13Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3623,7 +3823,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 03:13:51 GMT + - Fri, 09 Apr 2021 04:14:37 GMT expires: - '-1' pragma: @@ -3651,8 +3851,8 @@ interactions: ParameterSetName: - -n -g --image-source --identity --shared-image-destinations --scripts User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET @@ -3683,7 +3883,9 @@ interactions: Kong","pairedRegion":[{"name":"southeastasia","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasia"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast","name":"japaneast","displayName":"Japan East","regionalDisplayName":"(Asia Pacific) Japan East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"139.77","latitude":"35.68","physicalLocation":"Tokyo, - Saitama","pairedRegion":[{"name":"japanwest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral","name":"koreacentral","displayName":"Korea + Saitama","pairedRegion":[{"name":"japanwest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiawest","name":"jioindiawest","displayName":"JIO + India West","regionalDisplayName":"(Asia Pacific) JIO India West","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia + Pacific","longitude":"70.05773","latitude":"22.470701","physicalLocation":"Jamnagar","pairedRegion":[{"name":"jioindiacentral","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiacentral"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral","name":"koreacentral","displayName":"Korea Central","regionalDisplayName":"(Asia Pacific) Korea Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"126.9780","latitude":"37.5665","physicalLocation":"Seoul","pairedRegion":[{"name":"koreasouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadacentral","name":"canadacentral","displayName":"Canada Central","regionalDisplayName":"(Canada) Canada Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Canada","longitude":"-79.383","latitude":"43.653","physicalLocation":"Toronto","pairedRegion":[{"name":"canadaeast","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadaeast"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francecentral","name":"francecentral","displayName":"France @@ -3723,7 +3925,9 @@ interactions: Southeast","regionalDisplayName":"(Asia Pacific) Australia Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"144.9631","latitude":"-37.8136","physicalLocation":"Victoria","pairedRegion":[{"name":"australiaeast","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiaeast"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest","name":"japanwest","displayName":"Japan West","regionalDisplayName":"(Asia Pacific) Japan West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia - Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth","name":"koreasouth","displayName":"Korea + Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiacentral","name":"jioindiacentral","displayName":"JIO + India Central","regionalDisplayName":"(Asia Pacific) JIO India Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia + Pacific","longitude":"79.08886","latitude":"21.146633","physicalLocation":"Nagpur","pairedRegion":[{"name":"jioindiawest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiawest"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth","name":"koreasouth","displayName":"Korea South","regionalDisplayName":"(Asia Pacific) Korea South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"129.0756","latitude":"35.1796","physicalLocation":"Busan","pairedRegion":[{"name":"koreacentral","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia","name":"southindia","displayName":"South India","regionalDisplayName":"(Asia Pacific) South India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia @@ -3745,11 +3949,11 @@ interactions: cache-control: - no-cache content-length: - - '25532' + - '26522' content-type: - application/json; charset=utf-8 date: - - Mon, 22 Feb 2021 03:13:51 GMT + - Fri, 09 Apr 2021 04:14:38 GMT expires: - '-1' pragma: @@ -3765,7 +3969,7 @@ interactions: message: OK - request: body: '{"location": "westus", "tags": {}, "properties": {"source": {"type": "SharedImageVersion", - "imageVersionId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24627.7817"}, + "imageVersionId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24687.53687"}, "customize": [{"name": "customizeScript.sh", "type": "Shell", "scriptUri": "https://raw.githubusercontent.com/danielsollondon/azvmimagebuilder/master/quickquickstarts/customizeScript.sh"}], "distribute": [{"runOutputName": "image1", "type": "SharedImage", "galleryImageId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1", @@ -3782,21 +3986,21 @@ interactions: Connection: - keep-alive Content-Length: - - '1157' + - '1158' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --image-source --identity --shared-image-destinations --scripts User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template02?api-version=2020-02-14 response: body: - string: "{\n \"properties\": {\n \"source\": {\n \"imageVersionId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24627.7817\",\n + string: "{\n \"properties\": {\n \"source\": {\n \"imageVersionId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24687.53687\",\n \ \"type\": \"SharedImageVersion\"\n },\n \"customize\": [\n {\n \"name\": \"customizeScript.sh\",\n \"scriptUri\": \"https://raw.githubusercontent.com/danielsollondon/azvmimagebuilder/master/quickquickstarts/customizeScript.sh\",\n \ \"type\": \"Shell\"\n }\n ],\n \"distribute\": [\n {\n \"artifactTags\": @@ -3811,15 +4015,15 @@ interactions: \"location\": \"westus\",\n \"tags\": {}\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/e2afd605-7901-4f4c-b558-2563facd75ca?api-version=2020-02-14 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/50fcb967-3528-46aa-a592-9d70b238a58a?api-version=2020-02-14 cache-control: - no-cache content-length: - - '1724' + - '1725' content-type: - application/json date: - - Mon, 22 Feb 2021 03:14:01 GMT + - Fri, 09 Apr 2021 04:14:47 GMT expires: - '-1' pragma: @@ -3831,7 +4035,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 201 message: Created @@ -3849,15 +4053,15 @@ interactions: ParameterSetName: - -n -g --image-source --identity --shared-image-destinations --scripts User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/e2afd605-7901-4f4c-b558-2563facd75ca?api-version=2020-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/50fcb967-3528-46aa-a592-9d70b238a58a?api-version=2020-02-14 response: body: - string: "{\n \"name\": \"E2AFD605-7901-4F4C-B558-2563FACD75CA\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2021-02-22T03:13:59.8035733Z\",\n \"endTime\": - \"2021-02-22T03:14:32.0555939Z\"\n}" + string: "{\n \"name\": \"50FCB967-3528-46AA-A592-9D70B238A58A\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2021-04-09T04:14:46.1566666Z\",\n \"endTime\": + \"2021-04-09T04:15:17.1906731Z\"\n}" headers: cache-control: - no-cache @@ -3866,7 +4070,7 @@ interactions: content-type: - application/json date: - - Mon, 22 Feb 2021 03:14:32 GMT + - Fri, 09 Apr 2021 04:15:19 GMT expires: - '-1' pragma: @@ -3898,13 +4102,13 @@ interactions: ParameterSetName: - -n -g --image-source --identity --shared-image-destinations --scripts User-Agent: - - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1 + - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template02?api-version=2020-02-14 response: body: - string: "{\n \"properties\": {\n \"source\": {\n \"imageVersionId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24627.7817\",\n + string: "{\n \"properties\": {\n \"source\": {\n \"imageVersionId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24687.53687\",\n \ \"type\": \"SharedImageVersion\"\n },\n \"customize\": [\n {\n \"name\": \"customizeScript.sh\",\n \"scriptUri\": \"https://raw.githubusercontent.com/danielsollondon/azvmimagebuilder/master/quickquickstarts/customizeScript.sh\",\n \ \"sha256Checksum\": \"2c6ff6902a4a52deee69e8db26d0036a53388651008aaf31795bb20dabd21fd8\",\n @@ -3915,19 +4119,19 @@ interactions: \"Succeeded\",\n \"buildTimeoutInMinutes\": 0,\n \"vmProfile\": {\n \"vmSize\": \"\",\n \"osDiskSizeGB\": 0\n }\n },\n \"identity\": {\n \"type\": \"UserAssigned\",\n \ \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1\": - {\n \"principalId\": \"677aec5b-31a6-41e0-8d4c-2acccfa88c74\",\n \"clientId\": - \"98abfd59-3fb3-4a09-ae18-50b7f917b4d9\"\n }\n }\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template02\",\n + {\n \"principalId\": \"80f6582d-515b-4f3f-8ee4-50b303edcc28\",\n \"clientId\": + \"b37a0046-e33d-4131-8346-40e4001e71b8\"\n }\n }\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template02\",\n \"name\": \"template02\",\n \"type\": \"Microsoft.VirtualMachineImages/imageTemplates\",\n \"location\": \"westus\",\n \"tags\": {}\n}" headers: cache-control: - no-cache content-length: - - '1933' + - '1934' content-type: - application/json date: - - Mon, 22 Feb 2021 03:14:33 GMT + - Fri, 09 Apr 2021 04:15:19 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_specialized_image.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_specialized_image.yaml index 72f96e31986..a9cf2721173 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_specialized_image.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_specialized_image.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:24:19 GMT + - Thu, 15 Apr 2021 06:08:43 GMT expires: - '-1' pragma: @@ -70,11 +70,11 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_UG3QCY4BQNGC\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_OMEP44CCSUXQ\"\r\n },\r\n \ \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/188546bd-3a47-4741-83a3-7367b5bf8f77?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/611edd72-0539-4e8a-aaf6-784e02c248e9?api-version=2019-12-01 cache-control: - no-cache content-length: @@ -82,7 +82,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:24:25 GMT + - Thu, 15 Apr 2021 06:08:49 GMT expires: - '-1' pragma: @@ -97,7 +97,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -117,12 +117,12 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/188546bd-3a47-4741-83a3-7367b5bf8f77?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/611edd72-0539-4e8a-aaf6-784e02c248e9?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-13T07:24:24.2528528+00:00\",\r\n \"endTime\": - \"2021-04-13T07:24:24.5028564+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"188546bd-3a47-4741-83a3-7367b5bf8f77\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:08:49.0456211+00:00\",\r\n \"endTime\": + \"2021-04-15T06:08:49.3268906+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"611edd72-0539-4e8a-aaf6-784e02c248e9\"\r\n}" headers: cache-control: - no-cache @@ -131,7 +131,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:24:55 GMT + - Thu, 15 Apr 2021 06:09:20 GMT expires: - '-1' pragma: @@ -174,7 +174,7 @@ interactions: string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_UG3QCY4BQNGC\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_OMEP44CCSUXQ\"\r\n },\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -184,7 +184,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:24:55 GMT + - Thu, 15 Apr 2021 06:09:20 GMT expires: - '-1' pragma: @@ -201,7 +201,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGallery3Min;343,Microsoft.Compute/GetGallery30Min;2493 + - Microsoft.Compute/GetGallery3Min;345,Microsoft.Compute/GetGallery30Min;2495 status: code: 200 message: OK @@ -227,7 +227,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -236,7 +236,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:24:56 GMT + - Thu, 15 Apr 2021 06:09:20 GMT expires: - '-1' pragma: @@ -284,7 +284,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/4f722b2e-f26f-4c5f-a9cc-d0d42fea145c?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/55ce39ac-998f-4029-8c28-e4096bfaf038?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -292,7 +292,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:25:03 GMT + - Thu, 15 Apr 2021 06:09:26 GMT expires: - '-1' pragma: @@ -307,7 +307,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;749 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1194' status: code: 201 message: Created @@ -327,12 +327,12 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/4f722b2e-f26f-4c5f-a9cc-d0d42fea145c?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/55ce39ac-998f-4029-8c28-e4096bfaf038?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-13T07:25:02.3154094+00:00\",\r\n \"endTime\": - \"2021-04-13T07:25:02.4247784+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"4f722b2e-f26f-4c5f-a9cc-d0d42fea145c\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:09:25.4831205+00:00\",\r\n \"endTime\": + \"2021-04-15T06:09:25.5925133+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"55ce39ac-998f-4029-8c28-e4096bfaf038\"\r\n}" headers: cache-control: - no-cache @@ -341,7 +341,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:25:34 GMT + - Thu, 15 Apr 2021 06:09:56 GMT expires: - '-1' pragma: @@ -396,7 +396,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:25:34 GMT + - Thu, 15 Apr 2021 06:09:56 GMT expires: - '-1' pragma: @@ -413,7 +413,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;593,Microsoft.Compute/GetGalleryImage30Min;2993 + - Microsoft.Compute/GetGalleryImage3Min;596,Microsoft.Compute/GetGalleryImage30Min;2996 status: code: 200 message: OK @@ -439,7 +439,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -448,7 +448,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:25:35 GMT + - Thu, 15 Apr 2021 06:09:58 GMT expires: - '-1' pragma: @@ -527,13 +527,13 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Tue, 13 Apr 2021 07:25:35 GMT + - Thu, 15 Apr 2021 06:09:58 GMT etag: - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" expires: - - Tue, 13 Apr 2021 07:30:35 GMT + - Thu, 15 Apr 2021 06:14:58 GMT source-age: - - '53' + - '39' strict-transport-security: - max-age=31536000 vary: @@ -547,15 +547,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - f6929591dc3ef1a4050229af33c224b56010a4d5 + - 1dfab3f58ea52b988e7b345369d04386d9572716 x-frame-options: - deny x-github-request-id: - - 5EEC:7F55:8F1839:AC7E73:60743B16 + - 6736:0EE9:DD86D:11B8EF:6077A1F9 x-served-by: - - cache-qpg1251-QPG + - cache-qpg1234-QPG x-timer: - - S1618298736.675268,VS0,VE0 + - S1618466999.835566,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -589,7 +589,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:25:36 GMT + - Thu, 15 Apr 2021 06:09:58 GMT expires: - '-1' pragma: @@ -656,18 +656,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_tKycqdhmntHHge1mJ8GXEJbEqJQVg12K","name":"vm_deploy_tKycqdhmntHHge1mJ8GXEJbEqJQVg12K","type":"Microsoft.Resources/deployments","properties":{"templateHash":"1594325408026824966","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-13T07:25:39.387283Z","duration":"PT2.23295S","correlationId":"cd775c0e-5bdb-488f-9cef-2f78e576db28","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_eHbmjuPxVov0MCO9KziHZOLn1uhkmqVJ","name":"vm_deploy_eHbmjuPxVov0MCO9KziHZOLn1uhkmqVJ","type":"Microsoft.Resources/deployments","properties":{"templateHash":"2530473385198409913","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-15T06:10:02.1715652Z","duration":"PT1.9299113S","correlationId":"08c6ae5a-ae01-4995-a429-15264755a232","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_tKycqdhmntHHge1mJ8GXEJbEqJQVg12K/operationStatuses/08585833081483233027?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_eHbmjuPxVov0MCO9KziHZOLn1uhkmqVJ/operationStatuses/08585831398852359805?api-version=2020-10-01 cache-control: - no-cache content-length: - - '2778' + - '2781' content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:25:39 GMT + - Thu, 15 Apr 2021 06:10:03 GMT expires: - '-1' pragma: @@ -677,7 +677,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -698,7 +698,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585833081483233027?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585831398852359805?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -710,7 +710,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:10 GMT + - Thu, 15 Apr 2021 06:10:34 GMT expires: - '-1' pragma: @@ -741,7 +741,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585833081483233027?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585831398852359805?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -753,7 +753,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:40 GMT + - Thu, 15 Apr 2021 06:11:04 GMT expires: - '-1' pragma: @@ -787,7 +787,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_tKycqdhmntHHge1mJ8GXEJbEqJQVg12K","name":"vm_deploy_tKycqdhmntHHge1mJ8GXEJbEqJQVg12K","type":"Microsoft.Resources/deployments","properties":{"templateHash":"1594325408026824966","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-13T07:26:22.9835344Z","duration":"PT45.8292014S","correlationId":"cd775c0e-5bdb-488f-9cef-2f78e576db28","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_eHbmjuPxVov0MCO9KziHZOLn1uhkmqVJ","name":"vm_deploy_eHbmjuPxVov0MCO9KziHZOLn1uhkmqVJ","type":"Microsoft.Resources/deployments","properties":{"templateHash":"2530473385198409913","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-15T06:10:48.9810638Z","duration":"PT48.7394099S","correlationId":"08c6ae5a-ae01-4995-a429-15264755a232","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}' headers: cache-control: - no-cache @@ -796,7 +796,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:41 GMT + - Thu, 15 Apr 2021 06:11:04 GMT expires: - '-1' pragma: @@ -831,16 +831,16 @@ interactions: body: string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"41ef2ad2-722c-4b18-8f9f-6e49ba7fb9b5\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"8adb537f-1336-4411-9221-07b30b7fc3a2\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202103250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"vm1_disk1_c581464aec524ede84e55a4a69aef149\",\r\n + \"Linux\",\r\n \"name\": \"vm1_disk1_ab7179a1f5a74d9ebea7b85f403bebea\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_c581464aec524ede84e55a4a69aef149\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_ab7179a1f5a74d9ebea7b85f403bebea\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n \ \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": {\r\n @@ -855,15 +855,15 @@ interactions: [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \ \"message\": \"Guest Agent is running\",\r\n \"time\": - \"2021-04-13T07:26:37+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": - []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_disk1_c581464aec524ede84e55a4a69aef149\",\r\n + \"2021-04-15T06:10:58+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_disk1_ab7179a1f5a74d9ebea7b85f403bebea\",\r\n \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-13T07:26:05.8168371+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-15T06:10:32.2782935+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-13T07:26:22.1302202+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-15T06:10:48.262756+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n \ }\r\n ]\r\n }\r\n }\r\n}" @@ -871,11 +871,11 @@ interactions: cache-control: - no-cache content-length: - - '3253' + - '3252' content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:43 GMT + - Thu, 15 Apr 2021 06:11:06 GMT expires: - '-1' pragma: @@ -892,7 +892,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31939 + - Microsoft.Compute/LowCostGet3Min;3983,Microsoft.Compute/LowCostGet30Min;31938 status: code: 200 message: OK @@ -916,12 +916,12 @@ interactions: response: body: string: "{\r\n \"name\": \"vm1VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\r\n - \ \"etag\": \"W/\\\"131feb2e-38b9-4213-be05-bf7d648ee967\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"0fca75fb-b14c-414e-bbc5-5f20a76f08f2\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"d913980d-12ba-4473-aa6f-7890ef5933d8\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"7bb0d027-efdf-4fc9-9cac-185a7a7017c6\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm1\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\r\n - \ \"etag\": \"W/\\\"131feb2e-38b9-4213-be05-bf7d648ee967\\\"\",\r\n + \ \"etag\": \"W/\\\"0fca75fb-b14c-414e-bbc5-5f20a76f08f2\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -930,8 +930,8 @@ interactions: \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": - \"d5juh1eciqtepe414gsywquwfc.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-22-48-09-17-AB\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"n3fjot0qn0dejfrnhzzduo0wfg.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-3A-CC-F9\",\r\n \"enableAcceleratedNetworking\": false,\r\n \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -945,9 +945,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:43 GMT + - Thu, 15 Apr 2021 06:11:06 GMT etag: - - W/"131feb2e-38b9-4213-be05-bf7d648ee967" + - W/"0fca75fb-b14c-414e-bbc5-5f20a76f08f2" expires: - '-1' pragma: @@ -964,7 +964,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f5447f27-1863-49ce-a7d2-c9aad7536c3e + - 6d18593b-8981-4574-877f-b1db7dcde616 status: code: 200 message: OK @@ -988,10 +988,10 @@ interactions: response: body: string: "{\r\n \"name\": \"vm1PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\r\n - \ \"etag\": \"W/\\\"f983827c-dfcc-4f00-a0fc-b508f501adf4\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"69f795e1-10c3-40b5-bdaf-88405ad5b64f\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"c6af8e24-c5d2-4e8d-888b-a903e8d3b38c\",\r\n - \ \"ipAddress\": \"138.91.139.61\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"fc166731-640c-4a81-9a05-0bda4964528a\",\r\n + \ \"ipAddress\": \"13.64.225.134\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n @@ -1004,9 +1004,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:44 GMT + - Thu, 15 Apr 2021 06:11:06 GMT etag: - - W/"f983827c-dfcc-4f00-a0fc-b508f501adf4" + - W/"69f795e1-10c3-40b5-bdaf-88405ad5b64f" expires: - '-1' pragma: @@ -1023,7 +1023,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0ce35cde-3edc-4b8a-ab09-56dbcc60a803 + - 038a75c8-9219-49f2-8086-785ebd6f8ae3 status: code: 200 message: OK @@ -1048,16 +1048,16 @@ interactions: body: string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"41ef2ad2-722c-4b18-8f9f-6e49ba7fb9b5\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"8adb537f-1336-4411-9221-07b30b7fc3a2\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202103250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"vm1_disk1_c581464aec524ede84e55a4a69aef149\",\r\n + \"Linux\",\r\n \"name\": \"vm1_disk1_ab7179a1f5a74d9ebea7b85f403bebea\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_c581464aec524ede84e55a4a69aef149\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_ab7179a1f5a74d9ebea7b85f403bebea\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n \ \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": {\r\n @@ -1075,7 +1075,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:44 GMT + - Thu, 15 Apr 2021 06:11:07 GMT expires: - '-1' pragma: @@ -1092,7 +1092,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31938 + - Microsoft.Compute/LowCostGet3Min;3982,Microsoft.Compute/LowCostGet30Min;31937 status: code: 200 message: OK @@ -1112,10 +1112,10 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/vm1_disk1_c581464aec524ede84e55a4a69aef149?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/vm1_disk1_ab7179a1f5a74d9ebea7b85f403bebea?api-version=2020-12-01 response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/vm1_disk1_c581464aec524ede84e55a4a69aef149'' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/vm1_disk1_ab7179a1f5a74d9ebea7b85f403bebea'' under resource group ''cli_test_test_specialized_image_000001'' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: @@ -1126,7 +1126,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:45 GMT + - Thu, 15 Apr 2021 06:11:08 GMT expires: - '-1' pragma: @@ -1156,11 +1156,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_c581464aec524ede84e55a4a69aef149?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_ab7179a1f5a74d9ebea7b85f403bebea?api-version=2020-12-01 response: body: - string: "{\r\n \"name\": \"vm1_disk1_c581464aec524ede84e55a4a69aef149\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_c581464aec524ede84e55a4a69aef149\",\r\n + string: "{\r\n \"name\": \"vm1_disk1_ab7179a1f5a74d9ebea7b85f403bebea\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_ab7179a1f5a74d9ebea7b85f403bebea\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n \ \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n @@ -1169,9 +1169,9 @@ interactions: \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/canonical/ArtifactTypes/VMImage/Offers/ubuntuserver/Skus/18.04-lts/Versions/18.04.202103250\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-13T07:26:04.9529482+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-15T06:10:31.2529896+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"c581464a-ec52-4ede-84e5-5a4a69aef149\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"ab7179a1-f5a7-4d9e-bea7-b85f403bebea\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -1181,7 +1181,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:45 GMT + - Thu, 15 Apr 2021 06:11:08 GMT expires: - '-1' pragma: @@ -1198,7 +1198,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4934,Microsoft.Compute/LowCostGet30Min;39913 + - Microsoft.Compute/LowCostGet3Min;4966,Microsoft.Compute/LowCostGet30Min;39940 status: code: 200 message: OK @@ -1224,7 +1224,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1233,7 +1233,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:46 GMT + - Thu, 15 Apr 2021 06:11:09 GMT expires: - '-1' pragma: @@ -1249,7 +1249,7 @@ interactions: message: OK - request: body: '{"location": "westus", "tags": {}, "sku": {"name": "Standard_LRS"}, "properties": - {"creationData": {"createOption": "Copy", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_c581464aec524ede84e55a4a69aef149"}}}' + {"creationData": {"createOption": "Copy", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_ab7179a1f5a74d9ebea7b85f403bebea"}}}' headers: Accept: - application/json @@ -1274,13 +1274,13 @@ interactions: string: "{\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \ \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n - \ \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_c581464aec524ede84e55a4a69aef149\",\r\n - \ \"sourceUniqueId\": \"c581464a-ec52-4ede-84e5-5a4a69aef149\"\r\n },\r\n + \ \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_ab7179a1f5a74d9ebea7b85f403bebea\",\r\n + \ \"sourceUniqueId\": \"ab7179a1-f5a7-4d9e-bea7-b85f403bebea\"\r\n },\r\n \ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/741854b6-6866-4712-b527-4e7ea4eb3b60?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/6ad4c34c-a484-450a-8f8d-2cdc1aba7dcc?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -1288,11 +1288,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:50 GMT + - Thu, 15 Apr 2021 06:11:11 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/741854b6-6866-4712-b527-4e7ea4eb3b60?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/6ad4c34c-a484-450a-8f8d-2cdc1aba7dcc?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -1303,9 +1303,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;994,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7994 + - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;998,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7998 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' status: code: 202 message: Accepted @@ -1325,34 +1325,34 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/741854b6-6866-4712-b527-4e7ea4eb3b60?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/6ad4c34c-a484-450a-8f8d-2cdc1aba7dcc?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-13T07:26:50.3606763+00:00\",\r\n \"endTime\": - \"2021-04-13T07:26:50.9232074+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-15T06:11:12.4092054+00:00\",\r\n \"endTime\": + \"2021-04-15T06:11:13.190462+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\",\r\n \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \ \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_c581464aec524ede84e55a4a69aef149\",\r\n - \ \"sourceUniqueId\": \"c581464a-ec52-4ede-84e5-5a4a69aef149\"\r\n },\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_ab7179a1f5a74d9ebea7b85f403bebea\",\r\n + \ \"sourceUniqueId\": \"ab7179a1-f5a7-4d9e-bea7-b85f403bebea\"\r\n },\r\n \ \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:26:50.3606763+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-15T06:11:12.4092054+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"b7926add-eb51-450c-bd74-9377184ed423\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"95904701-c258-4f21-b788-eaea47224ab0\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"741854b6-6866-4712-b527-4e7ea4eb3b60\"\r\n}" + \"6ad4c34c-a484-450a-8f8d-2cdc1aba7dcc\"\r\n}" headers: cache-control: - no-cache content-length: - - '1406' + - '1405' content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:52 GMT + - Thu, 15 Apr 2021 06:11:13 GMT expires: - '-1' pragma: @@ -1369,7 +1369,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49962,Microsoft.Compute/GetOperation30Min;399956 + - Microsoft.Compute/GetOperation3Min;49972,Microsoft.Compute/GetOperation30Min;399955 status: code: 200 message: OK @@ -1397,12 +1397,12 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \ \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_c581464aec524ede84e55a4a69aef149\",\r\n - \ \"sourceUniqueId\": \"c581464a-ec52-4ede-84e5-5a4a69aef149\"\r\n },\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_ab7179a1f5a74d9ebea7b85f403bebea\",\r\n + \ \"sourceUniqueId\": \"ab7179a1-f5a7-4d9e-bea7-b85f403bebea\"\r\n },\r\n \ \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:26:50.3606763+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-15T06:11:12.4092054+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"b7926add-eb51-450c-bd74-9377184ed423\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"95904701-c258-4f21-b788-eaea47224ab0\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -1412,7 +1412,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:52 GMT + - Thu, 15 Apr 2021 06:11:14 GMT expires: - '-1' pragma: @@ -1429,7 +1429,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4929,Microsoft.Compute/LowCostGet30Min;39908 + - Microsoft.Compute/LowCostGet3Min;4959,Microsoft.Compute/LowCostGet30Min;39933 status: code: 200 message: OK @@ -1455,7 +1455,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1464,7 +1464,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:54 GMT + - Thu, 15 Apr 2021 06:11:15 GMT expires: - '-1' pragma: @@ -1500,7 +1500,7 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0\",\r\n @@ -1509,7 +1509,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-13T07:26:58.0811779+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-15T06:11:21.2957399+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"hostCaching\": \"ReadWrite\",\r\n \ \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -1517,7 +1517,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/3709c9d2-fe38-488e-be71-112120fba516?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/bcb32610-2192-40df-aa56-95ff681b398b?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -1525,7 +1525,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:59 GMT + - Thu, 15 Apr 2021 06:11:22 GMT expires: - '-1' pragma: @@ -1540,7 +1540,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;373,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1198 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1195' status: code: 201 message: Created @@ -1560,11 +1560,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/3709c9d2-fe38-488e-be71-112120fba516?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/bcb32610-2192-40df-aa56-95ff681b398b?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-13T07:26:58.0655504+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"3709c9d2-fe38-488e-be71-112120fba516\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:11:21.2800963+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"bcb32610-2192-40df-aa56-95ff681b398b\"\r\n}" headers: cache-control: - no-cache @@ -1573,7 +1573,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:27:59 GMT + - Thu, 15 Apr 2021 06:12:22 GMT expires: - '-1' pragma: @@ -1610,11 +1610,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/3709c9d2-fe38-488e-be71-112120fba516?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/bcb32610-2192-40df-aa56-95ff681b398b?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-13T07:26:58.0655504+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"3709c9d2-fe38-488e-be71-112120fba516\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:11:21.2800963+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"bcb32610-2192-40df-aa56-95ff681b398b\"\r\n}" headers: cache-control: - no-cache @@ -1623,7 +1623,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:29:01 GMT + - Thu, 15 Apr 2021 06:13:23 GMT expires: - '-1' pragma: @@ -1660,11 +1660,61 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/3709c9d2-fe38-488e-be71-112120fba516?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/bcb32610-2192-40df-aa56-95ff681b398b?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-04-15T06:11:21.2800963+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"bcb32610-2192-40df-aa56-95ff681b398b\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Apr 2021 06:14:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4181 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot + User-Agent: + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/bcb32610-2192-40df-aa56-95ff681b398b?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-13T07:26:58.0655504+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"3709c9d2-fe38-488e-be71-112120fba516\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:11:21.2800963+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"bcb32610-2192-40df-aa56-95ff681b398b\"\r\n}" headers: cache-control: - no-cache @@ -1673,7 +1723,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:30:02 GMT + - Thu, 15 Apr 2021 06:15:24 GMT expires: - '-1' pragma: @@ -1690,7 +1740,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4181 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4177 status: code: 200 message: OK @@ -1710,11 +1760,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/3709c9d2-fe38-488e-be71-112120fba516?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/bcb32610-2192-40df-aa56-95ff681b398b?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-13T07:26:58.0655504+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"3709c9d2-fe38-488e-be71-112120fba516\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:11:21.2800963+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"bcb32610-2192-40df-aa56-95ff681b398b\"\r\n}" headers: cache-control: - no-cache @@ -1723,7 +1773,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:31:03 GMT + - Thu, 15 Apr 2021 06:16:25 GMT expires: - '-1' pragma: @@ -1740,7 +1790,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4177 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4173 status: code: 200 message: OK @@ -1760,11 +1810,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/3709c9d2-fe38-488e-be71-112120fba516?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/bcb32610-2192-40df-aa56-95ff681b398b?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-13T07:26:58.0655504+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"3709c9d2-fe38-488e-be71-112120fba516\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:11:21.2800963+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"bcb32610-2192-40df-aa56-95ff681b398b\"\r\n}" headers: cache-control: - no-cache @@ -1773,7 +1823,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:32:03 GMT + - Thu, 15 Apr 2021 06:17:26 GMT expires: - '-1' pragma: @@ -1790,7 +1840,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4173 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4169 status: code: 200 message: OK @@ -1810,11 +1860,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/3709c9d2-fe38-488e-be71-112120fba516?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/bcb32610-2192-40df-aa56-95ff681b398b?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-13T07:26:58.0655504+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"3709c9d2-fe38-488e-be71-112120fba516\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:11:21.2800963+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"bcb32610-2192-40df-aa56-95ff681b398b\"\r\n}" headers: cache-control: - no-cache @@ -1823,7 +1873,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:33:04 GMT + - Thu, 15 Apr 2021 06:18:27 GMT expires: - '-1' pragma: @@ -1840,7 +1890,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4169 + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4165 status: code: 200 message: OK @@ -1860,11 +1910,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/3709c9d2-fe38-488e-be71-112120fba516?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/bcb32610-2192-40df-aa56-95ff681b398b?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-13T07:26:58.0655504+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"3709c9d2-fe38-488e-be71-112120fba516\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:11:21.2800963+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"bcb32610-2192-40df-aa56-95ff681b398b\"\r\n}" headers: cache-control: - no-cache @@ -1873,7 +1923,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:34:05 GMT + - Thu, 15 Apr 2021 06:19:27 GMT expires: - '-1' pragma: @@ -1890,7 +1940,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4167 + - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4163 status: code: 200 message: OK @@ -1910,11 +1960,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/3709c9d2-fe38-488e-be71-112120fba516?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/bcb32610-2192-40df-aa56-95ff681b398b?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-13T07:26:58.0655504+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"3709c9d2-fe38-488e-be71-112120fba516\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:11:21.2800963+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"bcb32610-2192-40df-aa56-95ff681b398b\"\r\n}" headers: cache-control: - no-cache @@ -1923,7 +1973,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:35:05 GMT + - Thu, 15 Apr 2021 06:20:28 GMT expires: - '-1' pragma: @@ -1940,7 +1990,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4164 + - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4160 status: code: 200 message: OK @@ -1960,12 +2010,12 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/3709c9d2-fe38-488e-be71-112120fba516?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/bcb32610-2192-40df-aa56-95ff681b398b?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-13T07:26:58.0655504+00:00\",\r\n \"endTime\": - \"2021-04-13T07:35:59.5357551+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"3709c9d2-fe38-488e-be71-112120fba516\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:11:21.2800963+00:00\",\r\n \"endTime\": + \"2021-04-15T06:20:44.6087613+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"bcb32610-2192-40df-aa56-95ff681b398b\"\r\n}" headers: cache-control: - no-cache @@ -1974,7 +2024,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:36:06 GMT + - Thu, 15 Apr 2021 06:21:29 GMT expires: - '-1' pragma: @@ -1991,7 +2041,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4160 + - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4157 status: code: 200 message: OK @@ -2011,7 +2061,7 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0\",\r\n @@ -2020,7 +2070,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-13T07:26:58.0811779+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-15T06:11:21.2957399+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": \"ReadWrite\",\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2034,7 +2084,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:36:06 GMT + - Thu, 15 Apr 2021 06:21:29 GMT expires: - '-1' pragma: @@ -2051,7 +2101,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1996,Microsoft.Compute/GetGalleryImageVersion30Min;9985 + - Microsoft.Compute/GetGalleryImageVersion3Min;1996,Microsoft.Compute/GetGalleryImageVersion30Min;9989 status: code: 200 message: OK @@ -2077,7 +2127,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2086,7 +2136,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:36:07 GMT + - Thu, 15 Apr 2021 06:21:30 GMT expires: - '-1' pragma: @@ -2134,7 +2184,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:36:08 GMT + - Thu, 15 Apr 2021 06:21:31 GMT expires: - '-1' pragma: @@ -2151,7 +2201,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;589,Microsoft.Compute/GetGalleryImage30Min;2975 + - Microsoft.Compute/GetGalleryImage3Min;591,Microsoft.Compute/GetGalleryImage30Min;2981 status: code: 200 message: OK @@ -2171,7 +2221,7 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0\",\r\n @@ -2180,7 +2230,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-13T07:26:58.0811779+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-15T06:11:21.2957399+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": \"ReadWrite\",\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2194,7 +2244,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:36:08 GMT + - Thu, 15 Apr 2021 06:21:31 GMT expires: - '-1' pragma: @@ -2211,7 +2261,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1995,Microsoft.Compute/GetGalleryImageVersion30Min;9984 + - Microsoft.Compute/GetGalleryImageVersion3Min;1995,Microsoft.Compute/GetGalleryImageVersion30Min;9988 status: code: 200 message: OK @@ -2236,14 +2286,14 @@ interactions: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vm1VNET\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\r\n - \ \"etag\": \"W/\\\"b0edfb82-6cf2-43b1-a235-31290cb88250\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"095dd961-4865-46ce-abd3-f6d68fb12ca9\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"ec43d31f-4482-4726-93db-f1a58b42962a\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"4f974a6f-6e50-4486-962d-3e723a3b562e\",\r\n \ \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n \ ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"vm1Subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\r\n - \ \"etag\": \"W/\\\"b0edfb82-6cf2-43b1-a235-31290cb88250\\\"\",\r\n + \ \"etag\": \"W/\\\"095dd961-4865-46ce-abd3-f6d68fb12ca9\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n @@ -2259,7 +2309,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:36:09 GMT + - Thu, 15 Apr 2021 06:21:31 GMT expires: - '-1' pragma: @@ -2276,7 +2326,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 667d1c96-75cd-4bcf-9ee4-6131dd159bab + - 9789923a-ed10-45ee-9d1b-e1b2e8b1fa14 status: code: 200 message: OK @@ -2328,18 +2378,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_GXNVHeCke6YhcYx3APZBWI91VMxlogWO","name":"vm_deploy_GXNVHeCke6YhcYx3APZBWI91VMxlogWO","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16012127502379723511","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-13T07:36:14.0487335Z","duration":"PT2.293791S","correlationId":"41fa8405-7e70-44c1-af0b-a6f7fd5e7c2a","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_qmXPCIBFCB9RHN1ovxgofPHRpUqzPCTD","name":"vm_deploy_qmXPCIBFCB9RHN1ovxgofPHRpUqzPCTD","type":"Microsoft.Resources/deployments","properties":{"templateHash":"48601262867817595","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-15T06:21:36.4092441Z","duration":"PT2.2874293S","correlationId":"51d42868-0531-410c-a7e8-fb9b5bb4cade","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_GXNVHeCke6YhcYx3APZBWI91VMxlogWO/operationStatuses/08585833075137227496?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_qmXPCIBFCB9RHN1ovxgofPHRpUqzPCTD/operationStatuses/08585831391913558231?api-version=2020-10-01 cache-control: - no-cache content-length: - - '2443' + - '2441' content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:36:15 GMT + - Thu, 15 Apr 2021 06:21:37 GMT expires: - '-1' pragma: @@ -2349,7 +2399,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1197' status: code: 201 message: Created @@ -2370,7 +2420,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585833075137227496?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585831391913558231?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -2382,7 +2432,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:36:45 GMT + - Thu, 15 Apr 2021 06:22:07 GMT expires: - '-1' pragma: @@ -2413,7 +2463,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585833075137227496?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585831391913558231?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -2425,7 +2475,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:37:17 GMT + - Thu, 15 Apr 2021 06:22:38 GMT expires: - '-1' pragma: @@ -2459,16 +2509,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_GXNVHeCke6YhcYx3APZBWI91VMxlogWO","name":"vm_deploy_GXNVHeCke6YhcYx3APZBWI91VMxlogWO","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16012127502379723511","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-13T07:36:59.2519701Z","duration":"PT47.4970276S","correlationId":"41fa8405-7e70-44c1-af0b-a6f7fd5e7c2a","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_qmXPCIBFCB9RHN1ovxgofPHRpUqzPCTD","name":"vm_deploy_qmXPCIBFCB9RHN1ovxgofPHRpUqzPCTD","type":"Microsoft.Resources/deployments","properties":{"templateHash":"48601262867817595","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-15T06:22:19.0969325Z","duration":"PT44.9751177S","correlationId":"51d42868-0531-410c-a7e8-fb9b5bb4cade","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"}]}}' headers: cache-control: - no-cache content-length: - - '3305' + - '3302' content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:37:17 GMT + - Thu, 15 Apr 2021 06:22:39 GMT expires: - '-1' pragma: @@ -2503,15 +2553,15 @@ interactions: body: string: "{\r\n \"name\": \"vm2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"c2f6d378-6ef1-4316-b9e1-005b412107e6\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"69a3ea5c-7ae3-40f1-a078-1354d0fbcbce\",\r\n \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0\",\r\n \ \"exactVersion\": \"1.0.0\"\r\n },\r\n \"osDisk\": {\r\n - \ \"osType\": \"Linux\",\r\n \"name\": \"vm2_OsDisk_1_a5442a3da0a14073a3a6e8876ce820d9\",\r\n + \ \"osType\": \"Linux\",\r\n \"name\": \"vm2_OsDisk_1_ff1af6febad84fd48d24233f02f6ada6\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm2_OsDisk_1_a5442a3da0a14073a3a6e8876ce820d9\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm2_OsDisk_1_ff1af6febad84fd48d24233f02f6ada6\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\"}]},\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": @@ -2519,18 +2569,18 @@ interactions: \ {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \ \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet - populated.\",\r\n \"time\": \"2021-04-13T07:37:18+00:00\"\r\n }\r\n + populated.\",\r\n \"time\": \"2021-04-15T06:22:40+00:00\"\r\n }\r\n \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"vm2_OsDisk_1_a5442a3da0a14073a3a6e8876ce820d9\",\r\n \"statuses\": + \"vm2_OsDisk_1_ff1af6febad84fd48d24233f02f6ada6\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-13T07:36:40.5796541+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-15T06:21:56.248575+00:00\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"OSState/specialized\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM specialized\"\r\n \ },\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2021-04-13T07:36:55.8929008+00:00\"\r\n + succeeded\",\r\n \"time\": \"2021-04-15T06:22:15.9674472+00:00\"\r\n \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n \ }\r\n ]\r\n }\r\n }\r\n}" @@ -2538,11 +2588,11 @@ interactions: cache-control: - no-cache content-length: - - '3019' + - '3018' content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:37:18 GMT + - Thu, 15 Apr 2021 06:22:40 GMT expires: - '-1' pragma: @@ -2559,7 +2609,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31959 + - Microsoft.Compute/LowCostGet3Min;3978,Microsoft.Compute/LowCostGet30Min;31809 status: code: 200 message: OK @@ -2583,12 +2633,12 @@ interactions: response: body: string: "{\r\n \"name\": \"vm2VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\",\r\n - \ \"etag\": \"W/\\\"b6aa6f4e-a015-4a98-9ceb-7cd1978cd30a\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"239f0b3d-22b5-4720-8c0b-c90c824c310f\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"9221b05f-4bc3-43df-b591-61fac96c421b\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"9943591b-1276-46c6-b492-80a6b7dce5be\",\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm2\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2\",\r\n - \ \"etag\": \"W/\\\"b6aa6f4e-a015-4a98-9ceb-7cd1978cd30a\\\"\",\r\n + \ \"etag\": \"W/\\\"239f0b3d-22b5-4720-8c0b-c90c824c310f\\\"\",\r\n \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\": @@ -2597,8 +2647,8 @@ interactions: \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": - \"d5juh1eciqtepe414gsywquwfc.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-22-48-08-27-52\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \"n3fjot0qn0dejfrnhzzduo0wfg.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-38-2D-94\",\r\n \"enableAcceleratedNetworking\": false,\r\n \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\"\r\n \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": @@ -2612,9 +2662,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:37:19 GMT + - Thu, 15 Apr 2021 06:22:40 GMT etag: - - W/"b6aa6f4e-a015-4a98-9ceb-7cd1978cd30a" + - W/"239f0b3d-22b5-4720-8c0b-c90c824c310f" expires: - '-1' pragma: @@ -2631,7 +2681,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 156a3b29-d84b-49cb-b072-a46e9d213cdb + - 0cd30b69-b789-4bd0-9230-3add08951a0e status: code: 200 message: OK @@ -2655,10 +2705,10 @@ interactions: response: body: string: "{\r\n \"name\": \"vm2PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\",\r\n - \ \"etag\": \"W/\\\"eae032eb-c1e7-4437-927b-306fdb63ca4f\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"d3704b5c-3a8e-4df2-ba0e-241ff7cd8044\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"8e4d9738-ea8e-4ff8-84a2-eee9a3221c52\",\r\n - \ \"ipAddress\": \"168.62.22.63\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"23adfe40-f624-42f2-9010-f21dac353065\",\r\n + \ \"ipAddress\": \"13.91.121.33\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n @@ -2671,9 +2721,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:37:19 GMT + - Thu, 15 Apr 2021 06:22:40 GMT etag: - - W/"eae032eb-c1e7-4437-927b-306fdb63ca4f" + - W/"d3704b5c-3a8e-4df2-ba0e-241ff7cd8044" expires: - '-1' pragma: @@ -2690,7 +2740,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f62d10ee-3100-4972-aaef-b1a41f7d7130 + - 67fefde1-7d8d-4ec1-b5aa-07be047a67db status: code: 200 message: OK @@ -2716,7 +2766,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2725,7 +2775,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:37:20 GMT + - Thu, 15 Apr 2021 06:22:41 GMT expires: - '-1' pragma: @@ -2773,7 +2823,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:37:21 GMT + - Thu, 15 Apr 2021 06:22:42 GMT expires: - '-1' pragma: @@ -2790,7 +2840,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;586,Microsoft.Compute/GetGalleryImage30Min;2972 + - Microsoft.Compute/GetGalleryImage3Min;595,Microsoft.Compute/GetGalleryImage30Min;2978 status: code: 200 message: OK @@ -2810,7 +2860,7 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0\",\r\n @@ -2819,7 +2869,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-13T07:26:58.0811779+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-15T06:11:21.2957399+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": \"ReadWrite\",\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2833,7 +2883,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:37:21 GMT + - Thu, 15 Apr 2021 06:22:43 GMT expires: - '-1' pragma: @@ -2850,7 +2900,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1988,Microsoft.Compute/GetGalleryImageVersion30Min;9977 + - Microsoft.Compute/GetGalleryImageVersion3Min;1992,Microsoft.Compute/GetGalleryImageVersion30Min;9985 status: code: 200 message: OK @@ -2875,14 +2925,14 @@ interactions: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vm1VNET\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\r\n - \ \"etag\": \"W/\\\"7369e8d5-c104-43f2-bcb8-34afc4702014\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"16f20838-a024-4f01-a1fa-cb10538c5574\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"ec43d31f-4482-4726-93db-f1a58b42962a\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"4f974a6f-6e50-4486-962d-3e723a3b562e\",\r\n \ \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n \ ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"vm1Subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\r\n - \ \"etag\": \"W/\\\"7369e8d5-c104-43f2-bcb8-34afc4702014\\\"\",\r\n + \ \"etag\": \"W/\\\"16f20838-a024-4f01-a1fa-cb10538c5574\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n @@ -2899,7 +2949,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:37:21 GMT + - Thu, 15 Apr 2021 06:22:43 GMT expires: - '-1' pragma: @@ -2916,7 +2966,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 53c5a41b-bc4f-405b-a3af-a999178468c2 + - 8b0edb7c-ec1b-4da3-ad2f-af48a61371c8 status: code: 200 message: OK @@ -2944,8 +2994,8 @@ interactions: null}}, "virtualMachineProfile": {"storageProfile": {"osDisk": {"createOption": "FromImage", "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0"}}, - "networkProfile": {"networkInterfaceConfigurations": [{"name": "vmss11e23Nic", - "properties": {"primary": "true", "ipConfigurations": [{"name": "vmss11e23IPConfig", + "networkProfile": {"networkInterfaceConfigurations": [{"name": "vmss1508eNic", + "properties": {"primary": "true", "ipConfigurations": [{"name": "vmss1508eIPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"}, "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}], "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}}, @@ -2977,18 +3027,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_8akRT3JiTc5Gz0mhSEtDFOgOdyf8jOK7","name":"vmss_deploy_8akRT3JiTc5Gz0mhSEtDFOgOdyf8jOK7","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16319764601287690713","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-13T07:37:27.5018011Z","duration":"PT2.8268109S","correlationId":"afabdcaa-bc45-4d29-a0cd-48491a83521b","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_CGGHclDxXciNrkneNi0ahrUlNCo9cONy","name":"vmss_deploy_CGGHclDxXciNrkneNi0ahrUlNCo9cONy","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5302804673372156977","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-15T06:22:49.1500286Z","duration":"PT2.3861105S","correlationId":"3ca7fa41-31b6-4290-892e-a8a5a7222c31","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_8akRT3JiTc5Gz0mhSEtDFOgOdyf8jOK7/operationStatuses/08585833074408026388?api-version=2020-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_CGGHclDxXciNrkneNi0ahrUlNCo9cONy/operationStatuses/08585831391187137126?api-version=2020-10-01 cache-control: - no-cache content-length: - - '2106' + - '2105' content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:37:29 GMT + - Thu, 15 Apr 2021 06:22:50 GMT expires: - '-1' pragma: @@ -2998,7 +3048,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' status: code: 201 message: Created @@ -3019,7 +3069,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585833074408026388?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585831391187137126?api-version=2020-10-01 response: body: string: '{"status":"Running"}' @@ -3031,7 +3081,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:38:01 GMT + - Thu, 15 Apr 2021 06:23:22 GMT expires: - '-1' pragma: @@ -3062,7 +3112,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585833074408026388?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585831391187137126?api-version=2020-10-01 response: body: string: '{"status":"Succeeded"}' @@ -3074,7 +3124,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:38:31 GMT + - Thu, 15 Apr 2021 06:23:52 GMT expires: - '-1' pragma: @@ -3108,16 +3158,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_8akRT3JiTc5Gz0mhSEtDFOgOdyf8jOK7","name":"vmss_deploy_8akRT3JiTc5Gz0mhSEtDFOgOdyf8jOK7","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16319764601287690713","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-13T07:38:17.6797449Z","duration":"PT53.0047547S","correlationId":"afabdcaa-bc45-4d29-a0cd-48491a83521b","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual","rollingUpgradePolicy":{"maxBatchInstancePercent":20,"maxUnhealthyInstancePercent":20,"maxUnhealthyUpgradedInstancePercent":20,"pauseTimeBetweenBatches":"PT0S"}},"virtualMachineProfile":{"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss11e23Nic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss11e23IPConfig","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":"dbe0d2e2-444a-4846-b604-74612d42c2b3"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_CGGHclDxXciNrkneNi0ahrUlNCo9cONy","name":"vmss_deploy_CGGHclDxXciNrkneNi0ahrUlNCo9cONy","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5302804673372156977","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-15T06:23:34.5892659Z","duration":"PT47.8253478S","correlationId":"3ca7fa41-31b6-4290-892e-a8a5a7222c31","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual","rollingUpgradePolicy":{"maxBatchInstancePercent":20,"maxUnhealthyInstancePercent":20,"maxUnhealthyUpgradedInstancePercent":20,"pauseTimeBetweenBatches":"PT0S"}},"virtualMachineProfile":{"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss1508eNic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss1508eIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"5016855a-c1b5-4244-9d35-3d3c090745e0"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"}]}}' headers: cache-control: - no-cache content-length: - - '4689' + - '4688' content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:38:32 GMT + - Thu, 15 Apr 2021 06:23:53 GMT expires: - '-1' pragma: @@ -3153,7 +3203,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3162,7 +3212,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:38:33 GMT + - Thu, 15 Apr 2021 06:23:54 GMT expires: - '-1' pragma: @@ -3198,7 +3248,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3207,7 +3257,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:38:33 GMT + - Thu, 15 Apr 2021 06:23:55 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_disk_max_shares_etc.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_disk_max_shares_etc.yaml index 99c059d32d1..73b47218501 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_disk_max_shares_etc.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_disk_max_shares_etc.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:24:19 GMT + - Thu, 15 Apr 2021 06:08:44 GMT expires: - '-1' pragma: @@ -78,7 +78,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/02ee5c7b-4aee-4a54-991a-2369efcf3a5f?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/842f8748-2929-4e15-b751-d6aaabf20aa9?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -86,11 +86,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:24:24 GMT + - Thu, 15 Apr 2021 06:08:49 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/02ee5c7b-4aee-4a54-991a-2369efcf3a5f?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/842f8748-2929-4e15-b751-d6aaabf20aa9?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -101,9 +101,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7998 + - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 202 message: Accepted @@ -123,11 +123,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/02ee5c7b-4aee-4a54-991a-2369efcf3a5f?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/842f8748-2929-4e15-b751-d6aaabf20aa9?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-13T07:24:24.7955722+00:00\",\r\n \"endTime\": - \"2021-04-13T07:24:25.5143212+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-15T06:08:49.5479752+00:00\",\r\n \"endTime\": + \"2021-04-15T06:08:50.6104827+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n @@ -137,11 +137,11 @@ interactions: 10,\r\n \"diskIOPSReadWrite\": 100,\r\n \"diskMBpsReadWrite\": 13,\r\n \ \"readOnly\": false,\r\n \"diskIOPSReadOnly\": 200,\r\n \"diskMBpsReadOnly\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-13T07:24:24.7955722+00:00\",\r\n + \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-15T06:08:49.5636487+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"a6224231-aa9b-46fe-8625-900c909ee2a6\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"8bca0cac-9408-4ae6-afaa-6447dee6fecc\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"02ee5c7b-4aee-4a54-991a-2369efcf3a5f\"\r\n}" + \"842f8748-2929-4e15-b751-d6aaabf20aa9\"\r\n}" headers: cache-control: - no-cache @@ -150,7 +150,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:24:26 GMT + - Thu, 15 Apr 2021 06:08:51 GMT expires: - '-1' pragma: @@ -167,7 +167,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49998,Microsoft.Compute/GetOperation30Min;399992 + - Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399982 status: code: 200 message: OK @@ -198,9 +198,9 @@ interactions: 10,\r\n \"diskIOPSReadWrite\": 100,\r\n \"diskMBpsReadWrite\": 13,\r\n \ \"readOnly\": false,\r\n \"diskIOPSReadOnly\": 200,\r\n \"diskMBpsReadOnly\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-13T07:24:24.7955722+00:00\",\r\n + \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-15T06:08:49.5636487+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"a6224231-aa9b-46fe-8625-900c909ee2a6\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"8bca0cac-9408-4ae6-afaa-6447dee6fecc\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -210,7 +210,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:24:26 GMT + - Thu, 15 Apr 2021 06:08:52 GMT expires: - '-1' pragma: @@ -227,7 +227,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4998,Microsoft.Compute/LowCostGet30Min;39969 + - Microsoft.Compute/LowCostGet3Min;4985,Microsoft.Compute/LowCostGet30Min;39973 status: code: 200 message: OK @@ -258,9 +258,9 @@ interactions: 10,\r\n \"diskIOPSReadWrite\": 100,\r\n \"diskMBpsReadWrite\": 13,\r\n \ \"readOnly\": false,\r\n \"diskIOPSReadOnly\": 200,\r\n \"diskMBpsReadOnly\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-13T07:24:24.7955722+00:00\",\r\n + \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-15T06:08:49.5636487+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"a6224231-aa9b-46fe-8625-900c909ee2a6\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"8bca0cac-9408-4ae6-afaa-6447dee6fecc\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -270,7 +270,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:24:28 GMT + - Thu, 15 Apr 2021 06:08:52 GMT expires: - '-1' pragma: @@ -287,7 +287,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4996,Microsoft.Compute/LowCostGet30Min;39967 + - Microsoft.Compute/LowCostGet3Min;4984,Microsoft.Compute/LowCostGet30Min;39972 status: code: 200 message: OK @@ -296,7 +296,7 @@ interactions: {"creationData": {"createOption": "Empty", "logicalSectorSize": 4096}, "diskSizeGB": 10, "diskIOPSReadWrite": 100, "diskMBpsReadWrite": 13, "diskIOPSReadOnly": 250, "diskMBpsReadOnly": 40, "encryption": {"type": "EncryptionAtRestWithPlatformKey"}, - "maxShares": 1, "networkAccessPolicy": "AllowAll", "burstingEnabled": false}}' + "maxShares": 1, "networkAccessPolicy": "AllowAll"}}' headers: Accept: - application/json @@ -307,7 +307,7 @@ interactions: Connection: - keep-alive Content-Length: - - '407' + - '381' Content-Type: - application/json ParameterSetName: @@ -329,7 +329,7 @@ interactions: \ \"faultDomain\": 0,\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/493c6750-8a12-421e-997c-413d0f4cfa64?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/42def184-64a6-42e5-9842-5a395b0ad989?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -337,11 +337,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:24:30 GMT + - Thu, 15 Apr 2021 06:08:54 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/493c6750-8a12-421e-997c-413d0f4cfa64?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/42def184-64a6-42e5-9842-5a395b0ad989?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -352,9 +352,9 @@ 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: - - '1198' + - '1197' status: code: 202 message: Accepted @@ -374,11 +374,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/493c6750-8a12-421e-997c-413d0f4cfa64?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/42def184-64a6-42e5-9842-5a395b0ad989?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-13T07:24:30.2643244+00:00\",\r\n \"endTime\": - \"2021-04-13T07:24:30.3736745+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-15T06:08:54.6104909+00:00\",\r\n \"endTime\": + \"2021-04-15T06:08:54.7511222+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n @@ -388,11 +388,11 @@ interactions: 10,\r\n \"diskIOPSReadWrite\": 100,\r\n \"diskMBpsReadWrite\": 13,\r\n \ \"readOnly\": false,\r\n \"diskIOPSReadOnly\": 250,\r\n \"diskMBpsReadOnly\": 40,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-13T07:24:24.7955722+00:00\",\r\n + \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-15T06:08:49.5636487+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"a6224231-aa9b-46fe-8625-900c909ee2a6\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"8bca0cac-9408-4ae6-afaa-6447dee6fecc\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"493c6750-8a12-421e-997c-413d0f4cfa64\"\r\n}" + \"42def184-64a6-42e5-9842-5a395b0ad989\"\r\n}" headers: cache-control: - no-cache @@ -401,7 +401,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:24:32 GMT + - Thu, 15 Apr 2021 06:08:56 GMT expires: - '-1' pragma: @@ -418,7 +418,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49995,Microsoft.Compute/GetOperation30Min;399989 + - Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399980 status: code: 200 message: OK @@ -449,9 +449,9 @@ interactions: 10,\r\n \"diskIOPSReadWrite\": 100,\r\n \"diskMBpsReadWrite\": 13,\r\n \ \"readOnly\": false,\r\n \"diskIOPSReadOnly\": 250,\r\n \"diskMBpsReadOnly\": 40,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-13T07:24:24.7955722+00:00\",\r\n + \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-15T06:08:49.5636487+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"a6224231-aa9b-46fe-8625-900c909ee2a6\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"8bca0cac-9408-4ae6-afaa-6447dee6fecc\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -461,7 +461,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:24:32 GMT + - Thu, 15 Apr 2021 06:08:57 GMT expires: - '-1' pragma: @@ -478,7 +478,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4993,Microsoft.Compute/LowCostGet30Min;39964 + - Microsoft.Compute/LowCostGet3Min;4982,Microsoft.Compute/LowCostGet30Min;39970 status: code: 200 message: OK @@ -504,7 +504,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -513,7 +513,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:24:32 GMT + - Thu, 15 Apr 2021 06:08:57 GMT expires: - '-1' pragma: @@ -560,7 +560,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/8a117af4-3a69-45d3-acd3-0a61f5d9b26a?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/66bd34b0-78df-43af-b656-2cddb3ccfea2?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -568,11 +568,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:24:35 GMT + - Thu, 15 Apr 2021 06:09:02 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/8a117af4-3a69-45d3-acd3-0a61f5d9b26a?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/66bd34b0-78df-43af-b656-2cddb3ccfea2?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -583,9 +583,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: - - '1197' + - '1199' status: code: 202 message: Accepted @@ -605,11 +605,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/8a117af4-3a69-45d3-acd3-0a61f5d9b26a?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/66bd34b0-78df-43af-b656-2cddb3ccfea2?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-13T07:24:35.9986997+00:00\",\r\n \"endTime\": - \"2021-04-13T07:24:36.8893253+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-15T06:09:02.9073308+00:00\",\r\n \"endTime\": + \"2021-04-15T06:09:03.7823252+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d2\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n @@ -619,11 +619,11 @@ interactions: \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202002180\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-13T07:24:36.0143331+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-15T06:09:02.9385827+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"ee8e01f1-b741-4f60-bce1-23ee92fb5f15\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"194c8d43-b2e8-4108-9ab5-d3219c9ef412\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"8a117af4-3a69-45d3-acd3-0a61f5d9b26a\"\r\n}" + \ },\r\n \"name\": \"66bd34b0-78df-43af-b656-2cddb3ccfea2\"\r\n}" headers: cache-control: - no-cache @@ -632,7 +632,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:24:37 GMT + - Thu, 15 Apr 2021 06:09:04 GMT expires: - '-1' pragma: @@ -649,7 +649,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49991,Microsoft.Compute/GetOperation30Min;399985 + - Microsoft.Compute/GetOperation3Min;49995,Microsoft.Compute/GetOperation30Min;399978 status: code: 200 message: OK @@ -680,9 +680,9 @@ interactions: \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202002180\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-13T07:24:36.0143331+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-15T06:09:02.9385827+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"ee8e01f1-b741-4f60-bce1-23ee92fb5f15\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"194c8d43-b2e8-4108-9ab5-d3219c9ef412\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}" headers: cache-control: @@ -692,7 +692,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:24:38 GMT + - Thu, 15 Apr 2021 06:09:05 GMT expires: - '-1' pragma: @@ -709,7 +709,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4987,Microsoft.Compute/LowCostGet30Min;39958 + - Microsoft.Compute/LowCostGet3Min;4993,Microsoft.Compute/LowCostGet30Min;39967 status: code: 200 message: OK @@ -735,7 +735,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -744,7 +744,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:24:38 GMT + - Thu, 15 Apr 2021 06:09:05 GMT expires: - '-1' pragma: @@ -792,7 +792,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:24:40 GMT + - Thu, 15 Apr 2021 06:09:07 GMT expires: - '-1' pragma: @@ -809,7 +809,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73998 + - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73997 status: code: 200 message: OK @@ -846,7 +846,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/ade377c5-52be-4908-9823-908b70446770?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/58d8984e-e6f8-4314-9785-24a8dcfa453c?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -854,11 +854,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:24:44 GMT + - Thu, 15 Apr 2021 06:09:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/ade377c5-52be-4908-9823-908b70446770?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/58d8984e-e6f8-4314-9785-24a8dcfa453c?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -869,9 +869,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;994,Microsoft.Compute/CreateUpdateDisks30Min;7994 + - Microsoft.Compute/CreateUpdateDisks3Min;996,Microsoft.Compute/CreateUpdateDisks30Min;7996 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted @@ -891,11 +891,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/ade377c5-52be-4908-9823-908b70446770?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/58d8984e-e6f8-4314-9785-24a8dcfa453c?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-13T07:24:45.2018146+00:00\",\r\n \"endTime\": - \"2021-04-13T07:24:45.7955557+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-15T06:09:09.3291924+00:00\",\r\n \"endTime\": + \"2021-04-15T06:09:09.891717+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d3\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n @@ -905,20 +905,20 @@ interactions: \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202002180\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-13T07:24:45.2018146+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-15T06:09:09.3291924+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"1d458077-8609-417f-867a-3959e089a629\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"5da1725c-7884-47eb-a622-ecaa72b16521\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"ade377c5-52be-4908-9823-908b70446770\"\r\n}" + \ },\r\n \"name\": \"58d8984e-e6f8-4314-9785-24a8dcfa453c\"\r\n}" headers: cache-control: - no-cache content-length: - - '1424' + - '1423' content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:24:47 GMT + - Thu, 15 Apr 2021 06:09:11 GMT expires: - '-1' pragma: @@ -935,7 +935,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399983 + - Microsoft.Compute/GetOperation3Min;49993,Microsoft.Compute/GetOperation30Min;399976 status: code: 200 message: OK @@ -966,9 +966,9 @@ interactions: \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202002180\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-13T07:24:45.2018146+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-15T06:09:09.3291924+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"1d458077-8609-417f-867a-3959e089a629\",\r\n + \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"5da1725c-7884-47eb-a622-ecaa72b16521\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}" headers: cache-control: @@ -978,7 +978,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:24:47 GMT + - Thu, 15 Apr 2021 06:09:11 GMT expires: - '-1' pragma: @@ -995,7 +995,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4983,Microsoft.Compute/LowCostGet30Min;39954 + - Microsoft.Compute/LowCostGet3Min;4990,Microsoft.Compute/LowCostGet30Min;39964 status: code: 200 message: OK @@ -1021,7 +1021,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1030,7 +1030,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:24:48 GMT + - Thu, 15 Apr 2021 06:09:11 GMT expires: - '-1' pragma: @@ -1070,11 +1070,11 @@ interactions: string: "{\r\n \"name\": \"g1000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-G1F7M3ETXHMFW3DBDZUD\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-G1RHN5KHX6TJ4B6H6TLQ\"\r\n },\r\n \ \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/9f254d65-4748-4538-9a2f-e14cb5b1d542?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/e5835521-5e59-4c5f-bed6-2d53a2b35e76?api-version=2019-12-01 cache-control: - no-cache content-length: @@ -1082,7 +1082,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:24:54 GMT + - Thu, 15 Apr 2021 06:09:19 GMT expires: - '-1' pragma: @@ -1097,7 +1097,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateGallery3Min;48,Microsoft.Compute/CreateUpdateGallery30Min;298 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -1117,12 +1117,12 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/9f254d65-4748-4538-9a2f-e14cb5b1d542?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/e5835521-5e59-4c5f-bed6-2d53a2b35e76?api-version=2019-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-13T07:24:53.6122818+00:00\",\r\n \"endTime\": - \"2021-04-13T07:24:53.7372996+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"9f254d65-4748-4538-9a2f-e14cb5b1d542\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:09:17.8112721+00:00\",\r\n \"endTime\": + \"2021-04-15T06:09:17.9519111+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"e5835521-5e59-4c5f-bed6-2d53a2b35e76\"\r\n}" headers: cache-control: - no-cache @@ -1131,7 +1131,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:25:25 GMT + - Thu, 15 Apr 2021 06:09:49 GMT expires: - '-1' pragma: @@ -1174,7 +1174,7 @@ interactions: string: "{\r\n \"name\": \"g1000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002\",\r\n \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": - \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-G1F7M3ETXHMFW3DBDZUD\"\r\n },\r\n + \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-G1RHN5KHX6TJ4B6H6TLQ\"\r\n },\r\n \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -1184,7 +1184,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:25:25 GMT + - Thu, 15 Apr 2021 06:09:49 GMT expires: - '-1' pragma: @@ -1201,7 +1201,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGallery3Min;340,Microsoft.Compute/GetGallery30Min;2490 + - Microsoft.Compute/GetGallery3Min;342,Microsoft.Compute/GetGallery30Min;2492 status: code: 200 message: OK @@ -1228,7 +1228,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1237,7 +1237,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:25:25 GMT + - Thu, 15 Apr 2021 06:09:50 GMT expires: - '-1' pragma: @@ -1288,7 +1288,7 @@ interactions: \ },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/466bb878-db36-4420-a8b3-7baad1590c25?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/13589bad-e3bd-4478-8833-dad5bcb7db6f?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -1296,7 +1296,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:25:30 GMT + - Thu, 15 Apr 2021 06:09:56 GMT expires: - '-1' pragma: @@ -1311,7 +1311,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateGalleryImage3Min;148,Microsoft.Compute/CreateUpdateGalleryImage30Min;748 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1195' status: code: 201 message: Created @@ -1332,12 +1332,12 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/466bb878-db36-4420-a8b3-7baad1590c25?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/13589bad-e3bd-4478-8833-dad5bcb7db6f?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-13T07:25:30.1122932+00:00\",\r\n \"endTime\": - \"2021-04-13T07:25:30.2372849+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"466bb878-db36-4420-a8b3-7baad1590c25\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:09:56.2019353+00:00\",\r\n \"endTime\": + \"2021-04-15T06:09:56.3113089+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"13589bad-e3bd-4478-8833-dad5bcb7db6f\"\r\n}" headers: cache-control: - no-cache @@ -1346,7 +1346,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:01 GMT + - Thu, 15 Apr 2021 06:10:26 GMT expires: - '-1' pragma: @@ -1403,7 +1403,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:01 GMT + - Thu, 15 Apr 2021 06:10:27 GMT expires: - '-1' pragma: @@ -1420,7 +1420,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;590,Microsoft.Compute/GetGalleryImage30Min;2990 + - Microsoft.Compute/GetGalleryImage3Min;592,Microsoft.Compute/GetGalleryImage30Min;2992 status: code: 200 message: OK @@ -1446,7 +1446,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1455,7 +1455,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:02 GMT + - Thu, 15 Apr 2021 06:10:28 GMT expires: - '-1' pragma: @@ -1500,7 +1500,7 @@ interactions: true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/444e6a88-3f7f-42a9-ae36-168b79e5ae9a?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/e352699a-db38-4b53-a417-9673d87bb855?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -1508,11 +1508,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:06 GMT + - Thu, 15 Apr 2021 06:10:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/444e6a88-3f7f-42a9-ae36-168b79e5ae9a?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/e352699a-db38-4b53-a417-9673d87bb855?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -1523,9 +1523,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;992,Microsoft.Compute/CreateUpdateDisks30Min;7992 + - Microsoft.Compute/CreateUpdateDisks3Min;995,Microsoft.Compute/CreateUpdateDisks30Min;7995 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1195' status: code: 202 message: Accepted @@ -1545,11 +1545,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/444e6a88-3f7f-42a9-ae36-168b79e5ae9a?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/e352699a-db38-4b53-a417-9673d87bb855?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-13T07:26:06.7498037+00:00\",\r\n \"endTime\": - \"2021-04-13T07:26:06.8279334+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-15T06:10:32.8936159+00:00\",\r\n \"endTime\": + \"2021-04-15T06:10:33.0342454+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"disk\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n @@ -1558,10 +1558,10 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-04-13T07:26:06.7498037+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-15T06:10:32.8936159+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"af7fcbdf-0fee-4903-bf3d-291c513412c4\",\r\n \"networkAccessPolicy\": - \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"444e6a88-3f7f-42a9-ae36-168b79e5ae9a\"\r\n}" + \ \"uniqueId\": \"791abf49-d37d-4545-b30e-f08932aeafe2\",\r\n \"networkAccessPolicy\": + \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"e352699a-db38-4b53-a417-9673d87bb855\"\r\n}" headers: cache-control: - no-cache @@ -1570,7 +1570,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:09 GMT + - Thu, 15 Apr 2021 06:10:35 GMT expires: - '-1' pragma: @@ -1587,7 +1587,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49974,Microsoft.Compute/GetOperation30Min;399968 + - Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399972 status: code: 200 message: OK @@ -1617,9 +1617,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-04-13T07:26:06.7498037+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-15T06:10:32.8936159+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"af7fcbdf-0fee-4903-bf3d-291c513412c4\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"791abf49-d37d-4545-b30e-f08932aeafe2\",\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: @@ -1629,7 +1629,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:09 GMT + - Thu, 15 Apr 2021 06:10:35 GMT expires: - '-1' pragma: @@ -1646,7 +1646,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4953,Microsoft.Compute/LowCostGet30Min;39932 + - Microsoft.Compute/LowCostGet3Min;4982,Microsoft.Compute/LowCostGet30Min;39956 status: code: 200 message: OK @@ -1680,7 +1680,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:10 GMT + - Thu, 15 Apr 2021 06:10:36 GMT expires: - '-1' pragma: @@ -1720,9 +1720,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": - \"2021-04-13T07:26:06.7498037+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"2021-04-15T06:10:32.8936159+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n - \ \"uniqueId\": \"af7fcbdf-0fee-4903-bf3d-291c513412c4\",\r\n \"networkAccessPolicy\": + \ \"uniqueId\": \"791abf49-d37d-4545-b30e-f08932aeafe2\",\r\n \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: @@ -1732,7 +1732,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:10 GMT + - Thu, 15 Apr 2021 06:10:37 GMT expires: - '-1' pragma: @@ -1749,7 +1749,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4952,Microsoft.Compute/LowCostGet30Min;39931 + - Microsoft.Compute/LowCostGet3Min;4981,Microsoft.Compute/LowCostGet30Min;39955 status: code: 200 message: OK @@ -1775,7 +1775,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1784,7 +1784,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:10 GMT + - Thu, 15 Apr 2021 06:10:38 GMT expires: - '-1' pragma: @@ -1825,12 +1825,12 @@ interactions: string: "{\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \ \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk\",\r\n - \ \"sourceUniqueId\": \"af7fcbdf-0fee-4903-bf3d-291c513412c4\"\r\n },\r\n + \ \"sourceUniqueId\": \"791abf49-d37d-4545-b30e-f08932aeafe2\"\r\n },\r\n \ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4a08e6cd-3827-4c8b-8521-00109dbd651a?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f0ad3f27-a3b5-4768-b1ef-d200a6956c76?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -1838,11 +1838,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:15 GMT + - Thu, 15 Apr 2021 06:10:42 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4a08e6cd-3827-4c8b-8521-00109dbd651a?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f0ad3f27-a3b5-4768-b1ef-d200a6956c76?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -1853,9 +1853,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;996,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7996 + - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7999 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 202 message: Accepted @@ -1875,24 +1875,24 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4a08e6cd-3827-4c8b-8521-00109dbd651a?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f0ad3f27-a3b5-4768-b1ef-d200a6956c76?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-13T07:26:15.4685198+00:00\",\r\n \"endTime\": - \"2021-04-13T07:26:16.0778924+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-15T06:10:42.9873721+00:00\",\r\n \"endTime\": + \"2021-04-15T06:10:43.7998424+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1\",\r\n \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk\",\r\n - \ \"sourceUniqueId\": \"af7fcbdf-0fee-4903-bf3d-291c513412c4\"\r\n },\r\n + \ \"sourceUniqueId\": \"791abf49-d37d-4545-b30e-f08932aeafe2\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:26:15.4685198+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-15T06:10:43.0186383+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"250287fa-7cf3-4ae2-b582-9f39b66b785b\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"5d243a27-a51d-45cc-a4cd-fe3469a10f28\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\": - \"4a08e6cd-3827-4c8b-8521-00109dbd651a\"\r\n}" + \"f0ad3f27-a3b5-4768-b1ef-d200a6956c76\"\r\n}" headers: cache-control: - no-cache @@ -1901,7 +1901,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:17 GMT + - Thu, 15 Apr 2021 06:10:44 GMT expires: - '-1' pragma: @@ -1918,7 +1918,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49972,Microsoft.Compute/GetOperation30Min;399966 + - Microsoft.Compute/GetOperation3Min;49984,Microsoft.Compute/GetOperation30Min;399967 status: code: 200 message: OK @@ -1946,11 +1946,11 @@ interactions: \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk\",\r\n - \ \"sourceUniqueId\": \"af7fcbdf-0fee-4903-bf3d-291c513412c4\"\r\n },\r\n + \ \"sourceUniqueId\": \"791abf49-d37d-4545-b30e-f08932aeafe2\"\r\n },\r\n \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n - \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:26:15.4685198+00:00\",\r\n + \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-15T06:10:43.0186383+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"250287fa-7cf3-4ae2-b582-9f39b66b785b\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"5d243a27-a51d-45cc-a4cd-fe3469a10f28\",\r\n \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -1960,7 +1960,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:18 GMT + - Thu, 15 Apr 2021 06:10:44 GMT expires: - '-1' pragma: @@ -1977,7 +1977,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4948,Microsoft.Compute/LowCostGet30Min;39927 + - Microsoft.Compute/LowCostGet3Min;4975,Microsoft.Compute/LowCostGet30Min;39949 status: code: 200 message: OK @@ -2003,7 +2003,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2012,7 +2012,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:18 GMT + - Thu, 15 Apr 2021 06:10:45 GMT expires: - '-1' pragma: @@ -2048,7 +2048,7 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0\",\r\n @@ -2057,7 +2057,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-13T07:26:24.2999036+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-15T06:10:50.8269555+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"hostCaching\": \"ReadWrite\",\r\n \ \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2065,7 +2065,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/825d10d6-f050-4a48-944f-601b3aed8e55?api-version=2019-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/81528a3f-34eb-4cfa-9706-75b5c226c37a?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -2073,7 +2073,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:26:25 GMT + - Thu, 15 Apr 2021 06:10:51 GMT expires: - '-1' pragma: @@ -2088,7 +2088,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1199 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 201 message: Created @@ -2108,20 +2108,20 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/825d10d6-f050-4a48-944f-601b3aed8e55?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/81528a3f-34eb-4cfa-9706-75b5c226c37a?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-13T07:26:24.284259+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"825d10d6-f050-4a48-944f-601b3aed8e55\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:10:50.8113322+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"81528a3f-34eb-4cfa-9706-75b5c226c37a\"\r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:27:25 GMT + - Thu, 15 Apr 2021 06:11:52 GMT expires: - '-1' pragma: @@ -2158,20 +2158,20 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/825d10d6-f050-4a48-944f-601b3aed8e55?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/81528a3f-34eb-4cfa-9706-75b5c226c37a?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-13T07:26:24.284259+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"825d10d6-f050-4a48-944f-601b3aed8e55\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:10:50.8113322+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"81528a3f-34eb-4cfa-9706-75b5c226c37a\"\r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:28:25 GMT + - Thu, 15 Apr 2021 06:12:52 GMT expires: - '-1' pragma: @@ -2188,7 +2188,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4187 + - Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4187 status: code: 200 message: OK @@ -2208,20 +2208,20 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/825d10d6-f050-4a48-944f-601b3aed8e55?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/81528a3f-34eb-4cfa-9706-75b5c226c37a?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-13T07:26:24.284259+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"825d10d6-f050-4a48-944f-601b3aed8e55\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:10:50.8113322+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"81528a3f-34eb-4cfa-9706-75b5c226c37a\"\r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:29:26 GMT + - Thu, 15 Apr 2021 06:13:53 GMT expires: - '-1' pragma: @@ -2258,20 +2258,20 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/825d10d6-f050-4a48-944f-601b3aed8e55?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/81528a3f-34eb-4cfa-9706-75b5c226c37a?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-13T07:26:24.284259+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"825d10d6-f050-4a48-944f-601b3aed8e55\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:10:50.8113322+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"81528a3f-34eb-4cfa-9706-75b5c226c37a\"\r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:30:27 GMT + - Thu, 15 Apr 2021 06:14:54 GMT expires: - '-1' pragma: @@ -2308,20 +2308,20 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/825d10d6-f050-4a48-944f-601b3aed8e55?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/81528a3f-34eb-4cfa-9706-75b5c226c37a?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-13T07:26:24.284259+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"825d10d6-f050-4a48-944f-601b3aed8e55\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:10:50.8113322+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"81528a3f-34eb-4cfa-9706-75b5c226c37a\"\r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:31:27 GMT + - Thu, 15 Apr 2021 06:15:54 GMT expires: - '-1' pragma: @@ -2358,21 +2358,20 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/825d10d6-f050-4a48-944f-601b3aed8e55?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/81528a3f-34eb-4cfa-9706-75b5c226c37a?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-04-13T07:26:24.284259+00:00\",\r\n \"endTime\": - \"2021-04-13T07:32:25.0198848+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"825d10d6-f050-4a48-944f-601b3aed8e55\"\r\n}" + string: "{\r\n \"startTime\": \"2021-04-15T06:10:50.8113322+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"81528a3f-34eb-4cfa-9706-75b5c226c37a\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:32:28 GMT + - Thu, 15 Apr 2021 06:16:55 GMT expires: - '-1' pragma: @@ -2409,7 +2408,58 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0?api-version=2019-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/81528a3f-34eb-4cfa-9706-75b5c226c37a?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-04-15T06:10:50.8113322+00:00\",\r\n \"endTime\": + \"2021-04-15T06:17:36.5146146+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"81528a3f-34eb-4cfa-9706-75b5c226c37a\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '184' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 15 Apr 2021 06:17:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4167 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version create + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot + User-Agent: + - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0?api-version=2020-09-30 response: body: string: "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0\",\r\n @@ -2418,7 +2468,7 @@ interactions: {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n - \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-13T07:26:24.2999036+00:00\",\r\n + \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-15T06:10:50.8269555+00:00\",\r\n \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 10,\r\n \"hostCaching\": \"ReadWrite\",\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n @@ -2432,7 +2482,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:32:28 GMT + - Thu, 15 Apr 2021 06:17:56 GMT expires: - '-1' pragma: @@ -2449,7 +2499,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9992 + - Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9995 status: code: 200 message: OK @@ -2475,7 +2525,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2484,7 +2534,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:32:29 GMT + - Thu, 15 Apr 2021 06:17:57 GMT expires: - '-1' pragma: @@ -2525,26 +2575,27 @@ interactions: body: string: "{\r\n \"name\": \"d4\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\"\r\n },\r\n \"properties\": - {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V2\",\r\n \"creationData\": + {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V2\",\r\n \"supportedCapabilities\": + {\r\n \"acceleratedNetwork\": true\r\n },\r\n \"creationData\": {\r\n \"createOption\": \"FromImage\",\r\n \"galleryImageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0\"\r\n \ }\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f45fc13e-397b-460f-865f-1f92be24cdd1?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/76826ce8-7ae9-4dd6-91c4-81094b4e8105?api-version=2020-12-01 cache-control: - no-cache content-length: - - '607' + - '681' content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:32:34 GMT + - Thu, 15 Apr 2021 06:18:00 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f45fc13e-397b-460f-865f-1f92be24cdd1?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/76826ce8-7ae9-4dd6-91c4-81094b4e8105?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -2555,9 +2606,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7987 + - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7990 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1196' status: code: 202 message: Accepted @@ -2577,35 +2628,37 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f45fc13e-397b-460f-865f-1f92be24cdd1?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/76826ce8-7ae9-4dd6-91c4-81094b4e8105?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-13T07:32:34.5836499+00:00\",\r\n \"endTime\": - \"2021-04-13T07:32:35.2398907+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-15T06:18:01.3061264+00:00\",\r\n \"endTime\": + \"2021-04-15T06:18:01.8842451+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d4\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n - \ \"hyperVGeneration\": \"V2\",\r\n \"creationData\": {\r\n \"createOption\": - \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0\"\r\n + \ \"hyperVGeneration\": \"V2\",\r\n \"supportedCapabilities\": {\r\n + \ \"acceleratedNetwork\": true\r\n },\r\n \"creationData\": {\r\n + \ \"createOption\": \"FromImage\",\r\n \"imageReference\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0\"\r\n \ },\r\n \"galleryImageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-13T07:32:34.6305109+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-15T06:18:01.3686204+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"a0e5e42a-fb11-4d85-b0fa-deeef184013f\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"168617c6-4602-4cbe-964f-562a3fb9f245\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"f45fc13e-397b-460f-865f-1f92be24cdd1\"\r\n}" + \ },\r\n \"name\": \"76826ce8-7ae9-4dd6-91c4-81094b4e8105\"\r\n}" headers: cache-control: - no-cache content-length: - - '1745' + - '1819' content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:32:36 GMT + - Thu, 15 Apr 2021 06:18:03 GMT expires: - '-1' pragma: @@ -2622,7 +2675,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49984,Microsoft.Compute/GetOperation30Min;399907 + - Microsoft.Compute/GetOperation3Min;49980,Microsoft.Compute/GetOperation30Min;399906 status: code: 200 message: OK @@ -2649,24 +2702,26 @@ interactions: \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n - \ \"hyperVGeneration\": \"V2\",\r\n \"creationData\": {\r\n \"createOption\": - \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0\"\r\n + \ \"hyperVGeneration\": \"V2\",\r\n \"supportedCapabilities\": {\r\n + \ \"acceleratedNetwork\": true\r\n },\r\n \"creationData\": {\r\n + \ \"createOption\": \"FromImage\",\r\n \"imageReference\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0\"\r\n \ },\r\n \"galleryImageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0\"\r\n \ }\r\n },\r\n \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\": - \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-13T07:32:34.6305109+00:00\",\r\n + \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-15T06:18:01.3686204+00:00\",\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n - \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"a0e5e42a-fb11-4d85-b0fa-deeef184013f\",\r\n + \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"168617c6-4602-4cbe-964f-562a3fb9f245\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1520' + - '1594' content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:32:36 GMT + - Thu, 15 Apr 2021 06:18:03 GMT expires: - '-1' pragma: @@ -2683,7 +2738,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4985,Microsoft.Compute/LowCostGet30Min;39864 + - Microsoft.Compute/LowCostGet3Min;4990,Microsoft.Compute/LowCostGet30Min;39909 status: code: 200 message: OK @@ -2720,7 +2775,7 @@ interactions: \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/f007126a-05ab-4d67-929e-79066c0bd91a?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/e8d5e079-067f-49a7-9d88-5088f452725f?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -2728,11 +2783,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:32:43 GMT + - Thu, 15 Apr 2021 06:18:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/f007126a-05ab-4d67-929e-79066c0bd91a?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/e8d5e079-067f-49a7-9d88-5088f452725f?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -2743,9 +2798,9 @@ 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: - - '1197' + - '1198' status: code: 202 message: Accepted @@ -2765,11 +2820,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/f007126a-05ab-4d67-929e-79066c0bd91a?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/e8d5e079-067f-49a7-9d88-5088f452725f?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-13T07:32:43.2846849+00:00\",\r\n \"endTime\": - \"2021-04-13T07:32:43.4546495+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-15T06:18:09.7525196+00:00\",\r\n \"endTime\": + \"2021-04-15T06:18:09.9347978+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"centraluseuap\",\r\n @@ -2778,11 +2833,11 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 256,\r\n \ \"diskIOPSReadWrite\": 1100,\r\n \"diskMBpsReadWrite\": 125,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"maxShares\": - 2,\r\n \"timeCreated\": \"2021-04-13T07:32:43.2896506+00:00\",\r\n \"provisioningState\": + 2,\r\n \"timeCreated\": \"2021-04-15T06:18:09.7725642+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 274877906944,\r\n \"uniqueId\": \"234094ae-aef2-482c-9151-67819d645827\",\r\n + 274877906944,\r\n \"uniqueId\": \"bea26756-adf5-4996-99ba-2d6676db485a\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"f007126a-05ab-4d67-929e-79066c0bd91a\"\r\n}" + \ },\r\n \"name\": \"e8d5e079-067f-49a7-9d88-5088f452725f\"\r\n}" headers: cache-control: - no-cache @@ -2791,7 +2846,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:32:45 GMT + - Thu, 15 Apr 2021 06:18:12 GMT expires: - '-1' pragma: @@ -2808,7 +2863,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49991,Microsoft.Compute/GetOperation30Min;399972 + - Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399999 status: code: 200 message: OK @@ -2838,9 +2893,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 256,\r\n \ \"diskIOPSReadWrite\": 1100,\r\n \"diskMBpsReadWrite\": 125,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"maxShares\": - 2,\r\n \"timeCreated\": \"2021-04-13T07:32:43.2896506+00:00\",\r\n \"provisioningState\": + 2,\r\n \"timeCreated\": \"2021-04-15T06:18:09.7725642+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 274877906944,\r\n \"uniqueId\": \"234094ae-aef2-482c-9151-67819d645827\",\r\n + 274877906944,\r\n \"uniqueId\": \"bea26756-adf5-4996-99ba-2d6676db485a\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}" headers: cache-control: @@ -2850,7 +2905,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:32:45 GMT + - Thu, 15 Apr 2021 06:18:12 GMT expires: - '-1' pragma: @@ -2867,7 +2922,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14988,Microsoft.Compute/LowCostGet30Min;119966 + - Microsoft.Compute/LowCostGet3Min;14999,Microsoft.Compute/LowCostGet30Min;119999 status: code: 200 message: OK @@ -2897,9 +2952,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 256,\r\n \ \"diskIOPSReadWrite\": 1100,\r\n \"diskMBpsReadWrite\": 125,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"maxShares\": - 2,\r\n \"timeCreated\": \"2021-04-13T07:32:43.2896506+00:00\",\r\n \"provisioningState\": + 2,\r\n \"timeCreated\": \"2021-04-15T06:18:09.7725642+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 274877906944,\r\n \"uniqueId\": \"234094ae-aef2-482c-9151-67819d645827\",\r\n + 274877906944,\r\n \"uniqueId\": \"bea26756-adf5-4996-99ba-2d6676db485a\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}" headers: cache-control: @@ -2909,7 +2964,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:32:46 GMT + - Thu, 15 Apr 2021 06:18:13 GMT expires: - '-1' pragma: @@ -2926,7 +2981,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14987,Microsoft.Compute/LowCostGet30Min;119965 + - Microsoft.Compute/LowCostGet3Min;14998,Microsoft.Compute/LowCostGet30Min;119998 status: code: 200 message: OK @@ -2935,7 +2990,7 @@ interactions: "properties": {"creationData": {"createOption": "Empty"}, "diskSizeGB": 256, "diskIOPSReadWrite": 1100, "diskMBpsReadWrite": 125, "encryption": {"type": "EncryptionAtRestWithPlatformKey"}, "maxShares": 1, "networkAccessPolicy": "AllowAll", - "tier": "P15", "burstingEnabled": false}}' + "tier": "P15"}}' headers: Accept: - application/json @@ -2946,7 +3001,7 @@ interactions: Connection: - keep-alive Content-Length: - - '355' + - '329' Content-Type: - application/json ParameterSetName: @@ -2966,7 +3021,7 @@ interactions: \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/20d44225-ec49-49e2-b091-e50ed385b20c?api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/5f41a19e-b96a-4d47-b3f9-46196a99c0b8?api-version=2020-12-01 cache-control: - no-cache content-length: @@ -2974,11 +3029,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:32:50 GMT + - Thu, 15 Apr 2021 06:18:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/20d44225-ec49-49e2-b091-e50ed385b20c?monitor=true&api-version=2020-12-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/5f41a19e-b96a-4d47-b3f9-46196a99c0b8?monitor=true&api-version=2020-12-01 pragma: - no-cache server: @@ -2989,9 +3044,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: - - '1199' + - '1197' status: code: 202 message: Accepted @@ -3011,11 +3066,11 @@ interactions: User-Agent: - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/20d44225-ec49-49e2-b091-e50ed385b20c?api-version=2020-12-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/5f41a19e-b96a-4d47-b3f9-46196a99c0b8?api-version=2020-12-01 response: body: - string: "{\r\n \"startTime\": \"2021-04-13T07:32:50.4561735+00:00\",\r\n \"endTime\": - \"2021-04-13T07:32:50.6461797+00:00\",\r\n \"status\": \"Succeeded\",\r\n + string: "{\r\n \"startTime\": \"2021-04-15T06:18:16.1706273+00:00\",\r\n \"endTime\": + \"2021-04-15T06:18:16.380632+00:00\",\r\n \"status\": \"Succeeded\",\r\n \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6\",\r\n \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"centraluseuap\",\r\n @@ -3024,20 +3079,20 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 256,\r\n \ \"diskIOPSReadWrite\": 1100,\r\n \"diskMBpsReadWrite\": 125,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"maxShares\": - 1,\r\n \"timeCreated\": \"2021-04-13T07:32:43.2896506+00:00\",\r\n \"provisioningState\": + 1,\r\n \"timeCreated\": \"2021-04-15T06:18:09.7725642+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 274877906944,\r\n \"uniqueId\": \"234094ae-aef2-482c-9151-67819d645827\",\r\n + 274877906944,\r\n \"uniqueId\": \"bea26756-adf5-4996-99ba-2d6676db485a\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}\r\n - \ },\r\n \"name\": \"20d44225-ec49-49e2-b091-e50ed385b20c\"\r\n}" + \ },\r\n \"name\": \"5f41a19e-b96a-4d47-b3f9-46196a99c0b8\"\r\n}" headers: cache-control: - no-cache content-length: - - '1144' + - '1143' content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:32:52 GMT + - Thu, 15 Apr 2021 06:18:18 GMT expires: - '-1' pragma: @@ -3054,7 +3109,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399970 + - Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399997 status: code: 200 message: OK @@ -3084,9 +3139,9 @@ interactions: \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 256,\r\n \ \"diskIOPSReadWrite\": 1100,\r\n \"diskMBpsReadWrite\": 125,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"maxShares\": - 1,\r\n \"timeCreated\": \"2021-04-13T07:32:43.2896506+00:00\",\r\n \"provisioningState\": + 1,\r\n \"timeCreated\": \"2021-04-15T06:18:09.7725642+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": - 274877906944,\r\n \"uniqueId\": \"234094ae-aef2-482c-9151-67819d645827\",\r\n + 274877906944,\r\n \"uniqueId\": \"bea26756-adf5-4996-99ba-2d6676db485a\",\r\n \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}" headers: cache-control: @@ -3096,7 +3151,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 13 Apr 2021 07:32:52 GMT + - Thu, 15 Apr 2021 06:18:18 GMT expires: - '-1' pragma: @@ -3113,7 +3168,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;14985,Microsoft.Compute/LowCostGet30Min;119963 + - Microsoft.Compute/LowCostGet3Min;14996,Microsoft.Compute/LowCostGet30Min;119996 status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py index 40e800d334f..26f8f3641f6 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 @@ -3821,6 +3821,25 @@ def test_gallery_e2e(self, resource_group, resource_group_location): self.cmd('sig image-definition delete -g {rg} --gallery-name {gallery} --gallery-image-definition {image}') self.cmd('sig delete -g {rg} --gallery-name {gallery}') + @ResourceGroupPreparer(name_prefix='cli_test_gallery_image_version_vhd') + def test_gallery_image_version_vhd(self, resource_group): + self.kwargs.update({ + 'gallery': self.create_random_name(prefix='gallery_', length=20), + }) + + self.cmd('vm create -g {rg} -n vm1 --image centos --use-unmanaged-disk --nsg-rule NONE --generate-ssh-key') + vhd_uri = self.cmd('vm show -g {rg} -n vm1').get_output_in_json()['storageProfile']['osDisk']['vhd']['uri'] + storage_account = vhd_uri.split('.')[0].split('/')[-1] + self.kwargs.update({ + 'vhd': vhd_uri, + 'stac': storage_account + }) + self.cmd('sig create -g {rg} --gallery-name {gallery}') + self.cmd('sig image-definition create -g {rg} --gallery-name {gallery} --gallery-image-definition image1 --os-type linux -p publisher1 -f offer1 -s sku1') + self.cmd('sig image-version create -g {rg} --gallery-name {gallery} --gallery-image-definition image1 --gallery-image-version 1.0.0 --os-vhd-uri {vhd} --os-vhd-storage-account {stac} --replica-count 1', checks=[ + self.check('storageProfile.osDiskImage.source.uri', vhd_uri) + ]) + @ResourceGroupPreparer(name_prefix='cli_test_gallery_specialized_', location='eastus2') def test_gallery_specialized(self, resource_group): self.kwargs.update({